gliDispatch.pas 76 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013
  1. {
  2. Copyright: (c) 1999-2008 Apple Inc. All rights reserved.
  3. }
  4. { Pascal Translation: Gorazd Krosl, <[email protected]>, October 2009 }
  5. {
  6. Modified for use with Free Pascal
  7. Version 308
  8. Please report any bugs to <[email protected]>
  9. }
  10. {$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
  11. {$mode macpas}
  12. {$modeswitch cblocks}
  13. {$packenum 1}
  14. {$macro on}
  15. {$inline on}
  16. {$calling mwpascal}
  17. unit gliDispatch;
  18. interface
  19. {$setc UNIVERSAL_INTERFACES_VERSION := $0400}
  20. {$setc GAP_INTERFACES_VERSION := $0308}
  21. {$ifc not defined USE_CFSTR_CONSTANT_MACROS}
  22. {$setc USE_CFSTR_CONSTANT_MACROS := TRUE}
  23. {$endc}
  24. {$ifc defined CPUPOWERPC and defined CPUI386}
  25. {$error Conflicting initial definitions for CPUPOWERPC and CPUI386}
  26. {$endc}
  27. {$ifc defined FPC_BIG_ENDIAN and defined FPC_LITTLE_ENDIAN}
  28. {$error Conflicting initial definitions for FPC_BIG_ENDIAN and FPC_LITTLE_ENDIAN}
  29. {$endc}
  30. {$ifc not defined __ppc__ and defined CPUPOWERPC32}
  31. {$setc __ppc__ := 1}
  32. {$elsec}
  33. {$setc __ppc__ := 0}
  34. {$endc}
  35. {$ifc not defined __ppc64__ and defined CPUPOWERPC64}
  36. {$setc __ppc64__ := 1}
  37. {$elsec}
  38. {$setc __ppc64__ := 0}
  39. {$endc}
  40. {$ifc not defined __i386__ and defined CPUI386}
  41. {$setc __i386__ := 1}
  42. {$elsec}
  43. {$setc __i386__ := 0}
  44. {$endc}
  45. {$ifc not defined __x86_64__ and defined CPUX86_64}
  46. {$setc __x86_64__ := 1}
  47. {$elsec}
  48. {$setc __x86_64__ := 0}
  49. {$endc}
  50. {$ifc not defined __arm__ and defined CPUARM}
  51. {$setc __arm__ := 1}
  52. {$elsec}
  53. {$setc __arm__ := 0}
  54. {$endc}
  55. {$ifc not defined __arm64__ and defined CPUAARCH64}
  56. {$setc __arm64__ := 1}
  57. {$elsec}
  58. {$setc __arm64__ := 0}
  59. {$endc}
  60. {$ifc defined cpu64}
  61. {$setc __LP64__ := 1}
  62. {$elsec}
  63. {$setc __LP64__ := 0}
  64. {$endc}
  65. {$ifc defined __ppc__ and __ppc__ and defined __i386__ and __i386__}
  66. {$error Conflicting definitions for __ppc__ and __i386__}
  67. {$endc}
  68. {$ifc defined __ppc__ and __ppc__}
  69. {$setc TARGET_CPU_PPC := TRUE}
  70. {$setc TARGET_CPU_PPC64 := FALSE}
  71. {$setc TARGET_CPU_X86 := FALSE}
  72. {$setc TARGET_CPU_X86_64 := FALSE}
  73. {$setc TARGET_CPU_ARM := FALSE}
  74. {$setc TARGET_CPU_ARM64 := FALSE}
  75. {$setc TARGET_OS_MAC := TRUE}
  76. {$setc TARGET_OS_IPHONE := FALSE}
  77. {$setc TARGET_IPHONE_SIMULATOR := FALSE}
  78. {$setc TARGET_OS_EMBEDDED := FALSE}
  79. {$elifc defined __ppc64__ and __ppc64__}
  80. {$setc TARGET_CPU_PPC := FALSE}
  81. {$setc TARGET_CPU_PPC64 := TRUE}
  82. {$setc TARGET_CPU_X86 := FALSE}
  83. {$setc TARGET_CPU_X86_64 := FALSE}
  84. {$setc TARGET_CPU_ARM := FALSE}
  85. {$setc TARGET_CPU_ARM64 := FALSE}
  86. {$setc TARGET_OS_MAC := TRUE}
  87. {$setc TARGET_OS_IPHONE := FALSE}
  88. {$setc TARGET_IPHONE_SIMULATOR := FALSE}
  89. {$setc TARGET_OS_EMBEDDED := FALSE}
  90. {$elifc defined __i386__ and __i386__}
  91. {$setc TARGET_CPU_PPC := FALSE}
  92. {$setc TARGET_CPU_PPC64 := FALSE}
  93. {$setc TARGET_CPU_X86 := TRUE}
  94. {$setc TARGET_CPU_X86_64 := FALSE}
  95. {$setc TARGET_CPU_ARM := FALSE}
  96. {$setc TARGET_CPU_ARM64 := FALSE}
  97. {$ifc defined iphonesim}
  98. {$setc TARGET_OS_MAC := FALSE}
  99. {$setc TARGET_OS_IPHONE := TRUE}
  100. {$setc TARGET_IPHONE_SIMULATOR := TRUE}
  101. {$elsec}
  102. {$setc TARGET_OS_MAC := TRUE}
  103. {$setc TARGET_OS_IPHONE := FALSE}
  104. {$setc TARGET_IPHONE_SIMULATOR := FALSE}
  105. {$endc}
  106. {$setc TARGET_OS_EMBEDDED := FALSE}
  107. {$elifc defined __x86_64__ and __x86_64__}
  108. {$setc TARGET_CPU_PPC := FALSE}
  109. {$setc TARGET_CPU_PPC64 := FALSE}
  110. {$setc TARGET_CPU_X86 := FALSE}
  111. {$setc TARGET_CPU_X86_64 := TRUE}
  112. {$setc TARGET_CPU_ARM := FALSE}
  113. {$setc TARGET_CPU_ARM64 := FALSE}
  114. {$ifc defined iphonesim}
  115. {$setc TARGET_OS_MAC := FALSE}
  116. {$setc TARGET_OS_IPHONE := TRUE}
  117. {$setc TARGET_IPHONE_SIMULATOR := TRUE}
  118. {$elsec}
  119. {$setc TARGET_OS_MAC := TRUE}
  120. {$setc TARGET_OS_IPHONE := FALSE}
  121. {$setc TARGET_IPHONE_SIMULATOR := FALSE}
  122. {$endc}
  123. {$setc TARGET_OS_EMBEDDED := FALSE}
  124. {$elifc defined __arm__ and __arm__}
  125. {$setc TARGET_CPU_PPC := FALSE}
  126. {$setc TARGET_CPU_PPC64 := FALSE}
  127. {$setc TARGET_CPU_X86 := FALSE}
  128. {$setc TARGET_CPU_X86_64 := FALSE}
  129. {$setc TARGET_CPU_ARM := TRUE}
  130. {$setc TARGET_CPU_ARM64 := FALSE}
  131. {$setc TARGET_OS_MAC := FALSE}
  132. {$setc TARGET_OS_IPHONE := TRUE}
  133. {$setc TARGET_IPHONE_SIMULATOR := FALSE}
  134. {$setc TARGET_OS_EMBEDDED := TRUE}
  135. {$elifc defined __arm64__ and __arm64__}
  136. {$setc TARGET_CPU_PPC := FALSE}
  137. {$setc TARGET_CPU_PPC64 := FALSE}
  138. {$setc TARGET_CPU_X86 := FALSE}
  139. {$setc TARGET_CPU_X86_64 := FALSE}
  140. {$setc TARGET_CPU_ARM := FALSE}
  141. {$setc TARGET_CPU_ARM64 := TRUE}
  142. {$ifc defined ios}
  143. {$setc TARGET_OS_MAC := FALSE}
  144. {$setc TARGET_OS_IPHONE := TRUE}
  145. {$setc TARGET_OS_EMBEDDED := TRUE}
  146. {$elsec}
  147. {$setc TARGET_OS_MAC := TRUE}
  148. {$setc TARGET_OS_IPHONE := FALSE}
  149. {$setc TARGET_OS_EMBEDDED := FALSE}
  150. {$endc}
  151. {$setc TARGET_IPHONE_SIMULATOR := FALSE}
  152. {$elsec}
  153. {$error __ppc__ nor __ppc64__ nor __i386__ nor __x86_64__ nor __arm__ nor __arm64__ is defined.}
  154. {$endc}
  155. {$ifc defined __LP64__ and __LP64__ }
  156. {$setc TARGET_CPU_64 := TRUE}
  157. {$elsec}
  158. {$setc TARGET_CPU_64 := FALSE}
  159. {$endc}
  160. {$ifc defined FPC_BIG_ENDIAN}
  161. {$setc TARGET_RT_BIG_ENDIAN := TRUE}
  162. {$setc TARGET_RT_LITTLE_ENDIAN := FALSE}
  163. {$elifc defined FPC_LITTLE_ENDIAN}
  164. {$setc TARGET_RT_BIG_ENDIAN := FALSE}
  165. {$setc TARGET_RT_LITTLE_ENDIAN := TRUE}
  166. {$elsec}
  167. {$error Neither FPC_BIG_ENDIAN nor FPC_LITTLE_ENDIAN are defined.}
  168. {$endc}
  169. {$setc ACCESSOR_CALLS_ARE_FUNCTIONS := TRUE}
  170. {$setc CALL_NOT_IN_CARBON := FALSE}
  171. {$setc OLDROUTINENAMES := FALSE}
  172. {$setc OPAQUE_TOOLBOX_STRUCTS := TRUE}
  173. {$setc OPAQUE_UPP_TYPES := TRUE}
  174. {$setc OTCARBONAPPLICATION := TRUE}
  175. {$setc OTKERNEL := FALSE}
  176. {$setc PM_USE_SESSION_APIS := TRUE}
  177. {$setc TARGET_API_MAC_CARBON := TRUE}
  178. {$setc TARGET_API_MAC_OS8 := FALSE}
  179. {$setc TARGET_API_MAC_OSX := TRUE}
  180. {$setc TARGET_CARBON := TRUE}
  181. {$setc TARGET_CPU_68K := FALSE}
  182. {$setc TARGET_CPU_MIPS := FALSE}
  183. {$setc TARGET_CPU_SPARC := FALSE}
  184. {$setc TARGET_OS_UNIX := FALSE}
  185. {$setc TARGET_OS_WIN32 := FALSE}
  186. {$setc TARGET_RT_MAC_68881 := FALSE}
  187. {$setc TARGET_RT_MAC_CFM := FALSE}
  188. {$setc TARGET_RT_MAC_MACHO := TRUE}
  189. {$setc TYPED_FUNCTION_POINTERS := TRUE}
  190. {$setc TYPE_BOOL := FALSE}
  191. {$setc TYPE_EXTENDED := FALSE}
  192. {$setc TYPE_LONGLONG := TRUE}
  193. uses MacTypes, macgl, macglext, gliContexts;
  194. {$endc} {not MACOSALLINCLUDE}
  195. {$ifc TARGET_OS_MAC}
  196. {$ALIGN POWER}
  197. {
  198. ** GL function dispatch table type
  199. }
  200. type
  201. PGLIFunctionDispatch = ^GLIFunctionDispatch;
  202. GLIFunctionDispatch = record
  203. accum : procedure( ctx: GLIContext; op: GLenum; value: GLfloat );
  204. alpha_func : procedure( ctx: GLIContext; func: GLenum; ref: GLclampf );
  205. are_textures_resident : function( ctx: GLIContext; n: GLsizei; const textures: PGLuint; residences: PGLboolean ): GLboolean;
  206. array_element : procedure( ctx: GLIContext; i: GLint );
  207. begin_ : procedure( ctx: GLIContext; mode: GLenum );
  208. bind_texture : procedure( ctx: GLIContext; target: GLenum; texture: GLuint );
  209. bitmap : procedure( ctx: GLIContext; width: GLsizei; height: GLsizei; xorig: GLfloat; yorig: GLfloat; xmove: GLfloat; ymove: GLfloat; const bitmap: PGLubyte );
  210. blend_func : procedure( ctx: GLIContext; sfactor: GLenum; dfactor: GLenum );
  211. call_list : procedure( ctx: GLIContext; list: GLuint );
  212. call_lists : procedure( ctx: GLIContext; n: GLsizei; typ: GLenum; const lists: UnivPtr );
  213. clear : procedure( ctx: GLIContext; mask: GLbitfield );
  214. clear_accum : procedure( ctx: GLIContext; red: GLfloat; green: GLfloat; blue: GLfloat; alpha: GLfloat );
  215. clear_color : procedure( ctx: GLIContext; red: GLclampf; green: GLclampf; blue: GLclampf; alpha: GLclampf );
  216. clear_depth : procedure( ctx: GLIContext; depth: GLclampd );
  217. clear_index : procedure( ctx: GLIContext; c: GLfloat );
  218. clear_stencil : procedure( ctx: GLIContext; s: GLint );
  219. clip_plane : procedure( ctx: GLIContext; plane: GLenum; const equation: PGLdouble );
  220. color3b : procedure( ctx: GLIContext; red: GLbyte; green: GLbyte; blue: GLbyte );
  221. color3bv : procedure( ctx: GLIContext; const v: PGLbyte );
  222. color3d : procedure( ctx: GLIContext; red: GLdouble; green: GLdouble; blue: GLdouble );
  223. color3dv : procedure( ctx: GLIContext; const v: PGLdouble );
  224. color3f : procedure( ctx: GLIContext; red: GLfloat; green: GLfloat; blue: GLfloat );
  225. color3fv : procedure( ctx: GLIContext; const v: PGLfloat );
  226. color3i : procedure( ctx: GLIContext; red: GLint; green: GLint; blue: GLint );
  227. color3iv : procedure( ctx: GLIContext; const v: PGLint );
  228. color3s : procedure( ctx: GLIContext; red: GLshort; green: GLshort; blue: GLshort );
  229. color3sv : procedure( ctx: GLIContext; const v: PGLshort );
  230. color3ub : procedure( ctx: GLIContext; red: GLubyte; green: GLubyte; blue: GLubyte );
  231. color3ubv : procedure( ctx: GLIContext; const v: PGLubyte );
  232. color3ui : procedure( ctx: GLIContext; red: GLuint; green: GLuint; blue: GLuint );
  233. color3uiv : procedure( ctx: GLIContext; const v: PGLuint );
  234. color3us : procedure( ctx: GLIContext; red: GLushort; green: GLushort; blue: GLushort );
  235. color3usv : procedure( ctx: GLIContext; const v: PGLushort );
  236. color4b : procedure( ctx: GLIContext; red: GLbyte; green: GLbyte; blue: GLbyte; alpha: GLbyte );
  237. color4bv : procedure( ctx: GLIContext; const v: PGLbyte );
  238. color4d : procedure( ctx: GLIContext; red: GLdouble; green: GLdouble; blue: GLdouble; alpha: GLdouble );
  239. color4dv : procedure( ctx: GLIContext; const v: PGLdouble );
  240. color4f : procedure( ctx: GLIContext; red: GLfloat; green: GLfloat; blue: GLfloat; alpha: GLfloat );
  241. color4fv : procedure( ctx: GLIContext; const v: PGLfloat );
  242. color4i : procedure( ctx: GLIContext; red: GLint; green: GLint; blue: GLint; alpha: GLint );
  243. color4iv : procedure( ctx: GLIContext; const v: PGLint );
  244. color4s : procedure( ctx: GLIContext; red: GLshort; green: GLshort; blue: GLshort; alpha: GLshort );
  245. color4sv : procedure( ctx: GLIContext; const v: PGLshort );
  246. color4ub : procedure( ctx: GLIContext; red: GLubyte; green: GLubyte; blue: GLubyte; alpha: GLubyte );
  247. color4ubv : procedure( ctx: GLIContext; const v: PGLubyte );
  248. color4ui : procedure( ctx: GLIContext; red: GLuint; green: GLuint; blue: GLuint; alpha: GLuint );
  249. color4uiv : procedure( ctx: GLIContext; const v: PGLuint );
  250. color4us : procedure( ctx: GLIContext; red: GLushort; green: GLushort; blue: GLushort; alpha: GLushort );
  251. color4usv : procedure( ctx: GLIContext; const v: PGLushort );
  252. color_mask : procedure( ctx: GLIContext; red: GLboolean; green: GLboolean; blue: GLboolean; alpha: GLboolean );
  253. color_material : procedure( ctx: GLIContext; face: GLenum; mode: GLenum );
  254. color_pointer : procedure( ctx: GLIContext; size: GLint; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  255. copy_pixels : procedure( ctx: GLIContext; x: GLint; y: GLint; width: GLsizei; height: GLsizei; typ: GLenum );
  256. copy_tex_image1D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalFormat: GLenum; x: GLint; y: GLint; width: GLsizei; border: GLint );
  257. copy_tex_image2D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalFormat: GLenum; x: GLint; y: GLint; width: GLsizei; height: GLsizei; border: GLint );
  258. copy_tex_sub_image1D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; x: GLint; y: GLint; width: GLsizei );
  259. copy_tex_sub_image2D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; yoffset: GLint; x: GLint; y: GLint; width: GLsizei; height: GLsizei );
  260. cull_face : procedure( ctx: GLIContext; mode: GLenum );
  261. delete_lists : procedure( ctx: GLIContext; list: GLuint; range: GLsizei );
  262. delete_textures : procedure( ctx: GLIContext; n: GLsizei; const textures: PGLuint );
  263. depth_func : procedure( ctx: GLIContext; func: GLenum );
  264. depth_mask : procedure( ctx: GLIContext; flag: GLboolean );
  265. depth_range : procedure( ctx: GLIContext; zNear: GLclampd; zFar: GLclampd );
  266. disable : procedure( ctx: GLIContext; cap: GLenum );
  267. disable_client_state : procedure( ctx: GLIContext; arry: GLenum );
  268. draw_arrays : procedure( ctx: GLIContext; mode: GLenum; first: GLint; count: GLsizei );
  269. draw_buffer : procedure( ctx: GLIContext; mode: GLenum );
  270. draw_elements : procedure( ctx: GLIContext; mode: GLenum; count: GLsizei; typ: GLenum; const indices: UnivPtr );
  271. draw_pixels : procedure( ctx: GLIContext; width: GLsizei; height: GLsizei; format: GLenum; typ: GLenum; const pixels: UnivPtr );
  272. edge_flag : procedure( ctx: GLIContext; flag: GLboolean );
  273. edge_flag_pointer : procedure( ctx: GLIContext; stride: GLsizei; const pointr: UnivPtr );
  274. edge_flagv : procedure( ctx: GLIContext; const flag: PGLboolean );
  275. enable : procedure( ctx: GLIContext; cap: GLenum );
  276. enable_client_state : procedure( ctx: GLIContext; arry: GLenum );
  277. end_ : procedure( ctx: GLIContext );
  278. end_list : procedure( ctx: GLIContext );
  279. eval_coord1d : procedure( ctx: GLIContext; u: GLdouble );
  280. eval_coord1dv : procedure( ctx: GLIContext; const u: PGLdouble );
  281. eval_coord1f : procedure( ctx: GLIContext; u: GLfloat );
  282. eval_coord1fv : procedure( ctx: GLIContext; const u: PGLfloat );
  283. eval_coord2d : procedure( ctx: GLIContext; u: GLdouble; v: GLdouble );
  284. eval_coord2dv : procedure( ctx: GLIContext; const u: PGLdouble );
  285. eval_coord2f : procedure( ctx: GLIContext; u: GLfloat; v: GLfloat );
  286. eval_coord2fv : procedure( ctx: GLIContext; const u: PGLfloat );
  287. eval_mesh1 : procedure( ctx: GLIContext; mode: GLenum; i1: GLint; i2: GLint );
  288. eval_mesh2 : procedure( ctx: GLIContext; mode: GLenum; i1: GLint; i2: GLint; j1: GLint; j2: GLint );
  289. eval_point1 : procedure( ctx: GLIContext; i: GLint );
  290. eval_point2 : procedure( ctx: GLIContext; i: GLint; j: GLint );
  291. feedback_buffer : procedure( ctx: GLIContext; size: GLsizei; typ: GLenum; buffer: PGLfloat );
  292. finish : procedure( ctx: GLIContext );
  293. flush : procedure( ctx: GLIContext );
  294. fogf : procedure( ctx: GLIContext; pname: GLenum; param: GLfloat );
  295. fogfv : procedure( ctx: GLIContext; pname: GLenum; const params: PGLfloat );
  296. fogi : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  297. fogiv : procedure( ctx: GLIContext; pname: GLenum; const params: PGLint );
  298. front_face : procedure( ctx: GLIContext; mode: GLenum );
  299. frustum : procedure( ctx: GLIContext; left: GLdouble; right: GLdouble; bottom: GLdouble; top: GLdouble; zNear: GLdouble; zFar: GLdouble );
  300. gen_lists : function( ctx: GLIContext; range: GLsizei ): GLuint;
  301. gen_textures : procedure( ctx: GLIContext; n: GLsizei; textures: PGLuint );
  302. get_booleanv : procedure( ctx: GLIContext; pname: GLenum; params: PGLboolean );
  303. get_clip_plane : procedure( ctx: GLIContext; plane: GLenum; equation: PGLdouble );
  304. get_doublev : procedure( ctx: GLIContext; pname: GLenum; params: PGLdouble );
  305. get_error : function( ctx: GLIContext ): GLenum;
  306. get_floatv : procedure( ctx: GLIContext; pname: GLenum; params: PGLfloat );
  307. get_integerv : procedure( ctx: GLIContext; pname: GLenum; params: PGLint );
  308. get_lightfv : procedure( ctx: GLIContext; light: GLenum; pname: GLenum; params: PGLfloat );
  309. get_lightiv : procedure( ctx: GLIContext; light: GLenum; pname: GLenum; params: PGLint );
  310. get_mapdv : procedure( ctx: GLIContext; target: GLenum; query: GLenum; v: PGLdouble );
  311. get_mapfv : procedure( ctx: GLIContext; target: GLenum; query: GLenum; v: PGLfloat );
  312. get_mapiv : procedure( ctx: GLIContext; target: GLenum; query: GLenum; v: PGLint );
  313. get_materialfv : procedure( ctx: GLIContext; face: GLenum; pname: GLenum; params: PGLfloat );
  314. get_materialiv : procedure( ctx: GLIContext; face: GLenum; pname: GLenum; params: PGLint );
  315. get_pixel_mapfv : procedure( ctx: GLIContext; map: GLenum; values: PGLfloat );
  316. get_pixel_mapuiv : procedure( ctx: GLIContext; map: GLenum; values: PGLuint );
  317. get_pixel_mapusv : procedure( ctx: GLIContext; map: GLenum; values: PGLushort );
  318. get_pointerv : procedure( ctx: GLIContext; pname: GLenum; params: UnivPtrPtr );
  319. get_polygon_stipple : procedure( ctx: GLIContext; mask: PGLubyte );
  320. get_string : function( ctx: GLIContext; name: GLenum ): PChar;
  321. get_tex_envfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLfloat );
  322. get_tex_enviv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  323. get_tex_gendv : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; params: PGLdouble );
  324. get_tex_genfv : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; params: PGLfloat );
  325. get_tex_geniv : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; params: PGLint );
  326. get_tex_image : procedure( ctx: GLIContext; target: GLenum; level: GLint; format: GLenum; typ: GLenum; pixels: UnivPtr );
  327. get_tex_level_parameterfv : procedure( ctx: GLIContext; target: GLenum; level: GLint; pname: GLenum; params: PGLfloat );
  328. get_tex_level_parameteriv : procedure( ctx: GLIContext; target: GLenum; level: GLint; pname: GLenum; params: PGLint );
  329. get_tex_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLfloat );
  330. get_tex_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  331. hint : procedure( ctx: GLIContext; target: GLenum; mode: GLenum );
  332. index_mask : procedure( ctx: GLIContext; mask: GLuint );
  333. index_pointer : procedure( ctx: GLIContext; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  334. indexd : procedure( ctx: GLIContext; c: GLdouble );
  335. indexdv : procedure( ctx: GLIContext; const c: PGLdouble );
  336. indexf : procedure( ctx: GLIContext; c: GLfloat );
  337. indexfv : procedure( ctx: GLIContext; const c: PGLfloat );
  338. indexi : procedure( ctx: GLIContext; c: GLint );
  339. indexiv : procedure( ctx: GLIContext; const c: PGLint );
  340. indexs : procedure( ctx: GLIContext; c: GLshort );
  341. indexsv : procedure( ctx: GLIContext; const c: PGLshort );
  342. indexub : procedure( ctx: GLIContext; c: GLubyte );
  343. indexubv : procedure( ctx: GLIContext; const c: PGLubyte );
  344. init_names : procedure( ctx: GLIContext );
  345. interleaved_arrays : procedure( ctx: GLIContext; format: GLenum; stride: GLsizei; const pointr: UnivPtr );
  346. is_enabled : function( ctx: GLIContext; cap: GLenum ): GLboolean;
  347. is_list : function( ctx: GLIContext; list: GLuint ): GLboolean;
  348. is_texture : function( ctx: GLIContext; texture: GLuint ): GLboolean;
  349. light_modelf : procedure( ctx: GLIContext; pname: GLenum; param: GLfloat );
  350. light_modelfv : procedure( ctx: GLIContext; pname: GLenum; const params: PGLfloat );
  351. light_modeli : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  352. light_modeliv : procedure( ctx: GLIContext; pname: GLenum; const params: PGLint );
  353. lightf : procedure( ctx: GLIContext; light: GLenum; pname: GLenum; param: GLfloat );
  354. lightfv : procedure( ctx: GLIContext; light: GLenum; pname: GLenum; const params: PGLfloat );
  355. lighti : procedure( ctx: GLIContext; light: GLenum; pname: GLenum; param: GLint );
  356. lightiv : procedure( ctx: GLIContext; light: GLenum; pname: GLenum; const params: PGLint );
  357. line_stipple : procedure( ctx: GLIContext; factor: GLint; pattern: GLushort );
  358. line_width : procedure( ctx: GLIContext; width: GLfloat );
  359. list_base : procedure( ctx: GLIContext; base: GLuint );
  360. load_identity : procedure( ctx: GLIContext );
  361. load_matrixd : procedure( ctx: GLIContext; const m: PGLdouble );
  362. load_matrixf : procedure( ctx: GLIContext; const m: PGLfloat );
  363. load_name : procedure( ctx: GLIContext; name: GLuint );
  364. logic_op : procedure( ctx: GLIContext; opcode: GLenum );
  365. map1d : procedure( ctx: GLIContext; target: GLenum; u1: GLdouble; u2: GLdouble; stride: GLint; order: GLint; const points: PGLdouble );
  366. map1f : procedure( ctx: GLIContext; target: GLenum; u1: GLfloat; u2: GLfloat; stride: GLint; order: GLint; const points: PGLfloat );
  367. map2d : procedure( ctx: GLIContext; target: GLenum; u1: GLdouble; u2: GLdouble; ustride: GLint; uorder: GLint; v1: GLdouble; v2: GLdouble; vstride: GLint; vorder: GLint; const points: PGLdouble );
  368. map2f : procedure( ctx: GLIContext; target: GLenum; u1: GLfloat; u2: GLfloat; ustride: GLint; uorder: GLint; v1: GLfloat; v2: GLfloat; vstride: GLint; vorder: GLint; const points: PGLfloat );
  369. map_grid1d : procedure( ctx: GLIContext; un: GLint; u1: GLdouble; u2: GLdouble );
  370. map_grid1f : procedure( ctx: GLIContext; un: GLint; u1: GLfloat; u2: GLfloat );
  371. map_grid2d : procedure( ctx: GLIContext; un: GLint; u1: GLdouble; u2: GLdouble; vn: GLint; v1: GLdouble; v2: GLdouble );
  372. map_grid2f : procedure( ctx: GLIContext; un: GLint; u1: GLfloat; u2: GLfloat; vn: GLint; v1: GLfloat; v2: GLfloat );
  373. materialf : procedure( ctx: GLIContext; face: GLenum; pname: GLenum; param: GLfloat );
  374. materialfv : procedure( ctx: GLIContext; face: GLenum; pname: GLenum; const params: PGLfloat );
  375. materiali : procedure( ctx: GLIContext; face: GLenum; pname: GLenum; param: GLint );
  376. materialiv : procedure( ctx: GLIContext; face: GLenum; pname: GLenum; const params: PGLint );
  377. matrix_mode : procedure( ctx: GLIContext; mode: GLenum );
  378. mult_matrixd : procedure( ctx: GLIContext; const m: PGLdouble );
  379. mult_matrixf : procedure( ctx: GLIContext; const m: PGLfloat );
  380. new_list : procedure( ctx: GLIContext; list: GLuint; mode: GLenum );
  381. normal3b : procedure( ctx: GLIContext; nx: GLbyte; ny: GLbyte; nz: GLbyte );
  382. normal3bv : procedure( ctx: GLIContext; const v: PGLbyte );
  383. normal3d : procedure( ctx: GLIContext; nx: GLdouble; ny: GLdouble; nz: GLdouble );
  384. normal3dv : procedure( ctx: GLIContext; const v: PGLdouble );
  385. normal3f : procedure( ctx: GLIContext; nx: GLfloat; ny: GLfloat; nz: GLfloat );
  386. normal3fv : procedure( ctx: GLIContext; const v: PGLfloat );
  387. normal3i : procedure( ctx: GLIContext; nx: GLint; ny: GLint; nz: GLint );
  388. normal3iv : procedure( ctx: GLIContext; const v: PGLint );
  389. normal3s : procedure( ctx: GLIContext; nx: GLshort; ny: GLshort; nz: GLshort );
  390. normal3sv : procedure( ctx: GLIContext; const v: PGLshort );
  391. normal_pointer : procedure( ctx: GLIContext; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  392. ortho : procedure( ctx: GLIContext; left: GLdouble; right: GLdouble; bottom: GLdouble; top: GLdouble; zNear: GLdouble; zFar: GLdouble );
  393. pass_through : procedure( ctx: GLIContext; token: GLfloat );
  394. pixel_mapfv : procedure( ctx: GLIContext; map: GLenum; mapsize: GLsizei; const values: PGLfloat );
  395. pixel_mapuiv : procedure( ctx: GLIContext; map: GLenum; mapsize: GLsizei; const values: PGLuint );
  396. pixel_mapusv : procedure( ctx: GLIContext; map: GLenum; mapsize: GLsizei; const values: PGLushort );
  397. pixel_storef : procedure( ctx: GLIContext; pname: GLenum; param: GLfloat );
  398. pixel_storei : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  399. pixel_transferf : procedure( ctx: GLIContext; pname: GLenum; param: GLfloat );
  400. pixel_transferi : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  401. pixel_zoom : procedure( ctx: GLIContext; xfactor: GLfloat; yfactor: GLfloat );
  402. point_size : procedure( ctx: GLIContext; size: GLfloat );
  403. polygon_mode : procedure( ctx: GLIContext; face: GLenum; mode: GLenum );
  404. polygon_offset : procedure( ctx: GLIContext; factor: GLfloat; units: GLfloat );
  405. polygon_stipple : procedure( ctx: GLIContext; const mask: PGLubyte );
  406. pop_attrib : procedure( ctx: GLIContext );
  407. pop_client_attrib : procedure( ctx: GLIContext );
  408. pop_matrix : procedure( ctx: GLIContext );
  409. pop_name : procedure( ctx: GLIContext );
  410. prioritize_textures : procedure( ctx: GLIContext; n: GLsizei; const textures: PGLuint; const priorities: PGLclampf );
  411. push_attrib : procedure( ctx: GLIContext; mask: GLbitfield );
  412. push_client_attrib : procedure( ctx: GLIContext; mask: GLbitfield );
  413. push_matrix : procedure( ctx: GLIContext );
  414. push_name : procedure( ctx: GLIContext; name: GLuint );
  415. raster_pos2d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble );
  416. raster_pos2dv : procedure( ctx: GLIContext; const v: PGLdouble );
  417. raster_pos2f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat );
  418. raster_pos2fv : procedure( ctx: GLIContext; const v: PGLfloat );
  419. raster_pos2i : procedure( ctx: GLIContext; x: GLint; y: GLint );
  420. raster_pos2iv : procedure( ctx: GLIContext; const v: PGLint );
  421. raster_pos2s : procedure( ctx: GLIContext; x: GLshort; y: GLshort );
  422. raster_pos2sv : procedure( ctx: GLIContext; const v: PGLshort );
  423. raster_pos3d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble; z: GLdouble );
  424. raster_pos3dv : procedure( ctx: GLIContext; const v: PGLdouble );
  425. raster_pos3f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat; z: GLfloat );
  426. raster_pos3fv : procedure( ctx: GLIContext; const v: PGLfloat );
  427. raster_pos3i : procedure( ctx: GLIContext; x: GLint; y: GLint; z: GLint );
  428. raster_pos3iv : procedure( ctx: GLIContext; const v: PGLint );
  429. raster_pos3s : procedure( ctx: GLIContext; x: GLshort; y: GLshort; z: GLshort );
  430. raster_pos3sv : procedure( ctx: GLIContext; const v: PGLshort );
  431. raster_pos4d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble; z: GLdouble; w: GLdouble );
  432. raster_pos4dv : procedure( ctx: GLIContext; const v: PGLdouble );
  433. raster_pos4f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat; z: GLfloat; w: GLfloat );
  434. raster_pos4fv : procedure( ctx: GLIContext; const v: PGLfloat );
  435. raster_pos4i : procedure( ctx: GLIContext; x: GLint; y: GLint; z: GLint; w: GLint );
  436. raster_pos4iv : procedure( ctx: GLIContext; const v: PGLint );
  437. raster_pos4s : procedure( ctx: GLIContext; x: GLshort; y: GLshort; z: GLshort; w: GLshort );
  438. raster_pos4sv : procedure( ctx: GLIContext; const v: PGLshort );
  439. read_buffer : procedure( ctx: GLIContext; mode: GLenum );
  440. read_pixels : procedure( ctx: GLIContext; x: GLint; y: GLint; width: GLsizei; height: GLsizei; format: GLenum; typ: GLenum; pixels: UnivPtr );
  441. rectd : procedure( ctx: GLIContext; x1: GLdouble; y1: GLdouble; x2: GLdouble; y2: GLdouble );
  442. rectdv : procedure( ctx: GLIContext; const v1: PGLdouble; const v2: PGLdouble );
  443. rectf : procedure( ctx: GLIContext; x1: GLfloat; y1: GLfloat; x2: GLfloat; y2: GLfloat );
  444. rectfv : procedure( ctx: GLIContext; const v1: PGLfloat; const v2: PGLfloat );
  445. recti : procedure( ctx: GLIContext; x1: GLint; y1: GLint; x2: GLint; y2: GLint );
  446. rectiv : procedure( ctx: GLIContext; const v1: PGLint; const v2: PGLint );
  447. rects : procedure( ctx: GLIContext; x1: GLshort; y1: GLshort; x2: GLshort; y2: GLshort );
  448. rectsv : procedure( ctx: GLIContext; const v1: PGLshort; const v2: PGLshort );
  449. render_mode : function( ctx: GLIContext; mode: GLenum ): GLint;
  450. rotated : procedure( ctx: GLIContext; angle: GLdouble; x: GLdouble; y: GLdouble; z: GLdouble );
  451. rotatef : procedure( ctx: GLIContext; angle: GLfloat; x: GLfloat; y: GLfloat; z: GLfloat );
  452. scaled : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble; z: GLdouble );
  453. scalef : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat; z: GLfloat );
  454. scissor : procedure( ctx: GLIContext; x: GLint; y: GLint; width: GLsizei; height: GLsizei );
  455. select_buffer : procedure( ctx: GLIContext; size: GLsizei; buffer: PGLuint );
  456. shade_model : procedure( ctx: GLIContext; mode: GLenum );
  457. stencil_func : procedure( ctx: GLIContext; func: GLenum; ref: GLint; mask: GLuint );
  458. stencil_mask : procedure( ctx: GLIContext; mask: GLuint );
  459. stencil_op : procedure( ctx: GLIContext; fail: GLenum; zfail: GLenum; zpass: GLenum );
  460. tex_coord1d : procedure( ctx: GLIContext; s: GLdouble );
  461. tex_coord1dv : procedure( ctx: GLIContext; const v: PGLdouble );
  462. tex_coord1f : procedure( ctx: GLIContext; s: GLfloat );
  463. tex_coord1fv : procedure( ctx: GLIContext; const v: PGLfloat );
  464. tex_coord1i : procedure( ctx: GLIContext; s: GLint );
  465. tex_coord1iv : procedure( ctx: GLIContext; const v: PGLint );
  466. tex_coord1s : procedure( ctx: GLIContext; s: GLshort );
  467. tex_coord1sv : procedure( ctx: GLIContext; const v: PGLshort );
  468. tex_coord2d : procedure( ctx: GLIContext; s: GLdouble; t: GLdouble );
  469. tex_coord2dv : procedure( ctx: GLIContext; const v: PGLdouble );
  470. tex_coord2f : procedure( ctx: GLIContext; s: GLfloat; t: GLfloat );
  471. tex_coord2fv : procedure( ctx: GLIContext; const v: PGLfloat );
  472. tex_coord2i : procedure( ctx: GLIContext; s: GLint; t: GLint );
  473. tex_coord2iv : procedure( ctx: GLIContext; const v: PGLint );
  474. tex_coord2s : procedure( ctx: GLIContext; s: GLshort; t: GLshort );
  475. tex_coord2sv : procedure( ctx: GLIContext; const v: PGLshort );
  476. tex_coord3d : procedure( ctx: GLIContext; s: GLdouble; t: GLdouble; r: GLdouble );
  477. tex_coord3dv : procedure( ctx: GLIContext; const v: PGLdouble );
  478. tex_coord3f : procedure( ctx: GLIContext; s: GLfloat; t: GLfloat; r: GLfloat );
  479. tex_coord3fv : procedure( ctx: GLIContext; const v: PGLfloat );
  480. tex_coord3i : procedure( ctx: GLIContext; s: GLint; t: GLint; r: GLint );
  481. tex_coord3iv : procedure( ctx: GLIContext; const v: PGLint );
  482. tex_coord3s : procedure( ctx: GLIContext; s: GLshort; t: GLshort; r: GLshort );
  483. tex_coord3sv : procedure( ctx: GLIContext; const v: PGLshort );
  484. tex_coord4d : procedure( ctx: GLIContext; s: GLdouble; t: GLdouble; r: GLdouble; q: GLdouble );
  485. tex_coord4dv : procedure( ctx: GLIContext; const v: PGLdouble );
  486. tex_coord4f : procedure( ctx: GLIContext; s: GLfloat; t: GLfloat; r: GLfloat; q: GLfloat );
  487. tex_coord4fv : procedure( ctx: GLIContext; const v: PGLfloat );
  488. tex_coord4i : procedure( ctx: GLIContext; s: GLint; t: GLint; r: GLint; q: GLint );
  489. tex_coord4iv : procedure( ctx: GLIContext; const v: PGLint );
  490. tex_coord4s : procedure( ctx: GLIContext; s: GLshort; t: GLshort; r: GLshort; q: GLshort );
  491. tex_coord4sv : procedure( ctx: GLIContext; const v: PGLshort );
  492. tex_coord_pointer : procedure( ctx: GLIContext; size: GLint; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  493. tex_envf : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; param: GLfloat );
  494. tex_envfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLfloat );
  495. tex_envi : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; param: GLint );
  496. tex_enviv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLint );
  497. tex_gend : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; param: GLdouble );
  498. tex_gendv : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; const params: PGLdouble );
  499. tex_genf : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; param: GLfloat );
  500. tex_genfv : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; const params: PGLfloat );
  501. tex_geni : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; param: GLint );
  502. tex_geniv : procedure( ctx: GLIContext; coord: GLenum; pname: GLenum; const params: PGLint );
  503. tex_image1D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalformat: GLenum; width: GLsizei; border: GLint; format: GLenum; typ: GLenum; const pixels: UnivPtr );
  504. tex_image2D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalformat: GLenum; width: GLsizei; height: GLsizei; border: GLint; format: GLenum; typ: GLenum; const pixels: UnivPtr );
  505. tex_parameterf : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; param: GLfloat );
  506. tex_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLfloat );
  507. tex_parameteri : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; param: GLint );
  508. tex_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLint );
  509. tex_sub_image1D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; width: GLsizei; format: GLenum; typ: GLenum; const pixels: UnivPtr );
  510. tex_sub_image2D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; yoffset: GLint; width: GLsizei; height: GLsizei; format: GLenum; typ: GLenum; const pixels: UnivPtr );
  511. translated : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble; z: GLdouble );
  512. translatef : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat; z: GLfloat );
  513. vertex2d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble );
  514. vertex2dv : procedure( ctx: GLIContext; const v: PGLdouble );
  515. vertex2f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat );
  516. vertex2fv : procedure( ctx: GLIContext; const v: PGLfloat );
  517. vertex2i : procedure( ctx: GLIContext; x: GLint; y: GLint );
  518. vertex2iv : procedure( ctx: GLIContext; const v: PGLint );
  519. vertex2s : procedure( ctx: GLIContext; x: GLshort; y: GLshort );
  520. vertex2sv : procedure( ctx: GLIContext; const v: PGLshort );
  521. vertex3d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble; z: GLdouble );
  522. vertex3dv : procedure( ctx: GLIContext; const v: PGLdouble );
  523. vertex3f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat; z: GLfloat );
  524. vertex3fv : procedure( ctx: GLIContext; const v: PGLfloat );
  525. vertex3i : procedure( ctx: GLIContext; x: GLint; y: GLint; z: GLint );
  526. vertex3iv : procedure( ctx: GLIContext; const v: PGLint );
  527. vertex3s : procedure( ctx: GLIContext; x: GLshort; y: GLshort; z: GLshort );
  528. vertex3sv : procedure( ctx: GLIContext; const v: PGLshort );
  529. vertex4d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble; z: GLdouble; w: GLdouble );
  530. vertex4dv : procedure( ctx: GLIContext; const v: PGLdouble );
  531. vertex4f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat; z: GLfloat; w: GLfloat );
  532. vertex4fv : procedure( ctx: GLIContext; const v: PGLfloat );
  533. vertex4i : procedure( ctx: GLIContext; x: GLint; y: GLint; z: GLint; w: GLint );
  534. vertex4iv : procedure( ctx: GLIContext; const v: PGLint );
  535. vertex4s : procedure( ctx: GLIContext; x: GLshort; y: GLshort; z: GLshort; w: GLshort );
  536. vertex4sv : procedure( ctx: GLIContext; const v: PGLshort );
  537. vertex_pointer : procedure( ctx: GLIContext; size: GLint; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  538. viewport : procedure( ctx: GLIContext; x: GLint; y: GLint; width: GLsizei; height: GLsizei );
  539. blend_func_separate : procedure( ctx: GLIContext; sfactorRGB: GLenum; dfactorRGB: GLenum; sfactorAlpha: GLenum; dfactorAlpha: GLenum );
  540. blend_color : procedure( ctx: GLIContext; red: GLclampf; green: GLclampf; blue: GLclampf; alpha: GLclampf );
  541. blend_equation : procedure( ctx: GLIContext; mode: GLenum );
  542. lock_arrays_EXT : procedure( ctx: GLIContext; first: GLint; count: GLsizei );
  543. unlock_arrays_EXT : procedure( ctx: GLIContext );
  544. client_active_texture : procedure( ctx: GLIContext; target: GLenum );
  545. active_texture : procedure( ctx: GLIContext; target: GLenum );
  546. multi_tex_coord1d : procedure( ctx: GLIContext; target: GLenum; s: GLdouble );
  547. multi_tex_coord1dv : procedure( ctx: GLIContext; target: GLenum; const v: PGLdouble );
  548. multi_tex_coord1f : procedure( ctx: GLIContext; target: GLenum; s: GLfloat );
  549. multi_tex_coord1fv : procedure( ctx: GLIContext; target: GLenum; const v: PGLfloat );
  550. multi_tex_coord1i : procedure( ctx: GLIContext; target: GLenum; s: GLint );
  551. multi_tex_coord1iv : procedure( ctx: GLIContext; target: GLenum; const v: PGLint );
  552. multi_tex_coord1s : procedure( ctx: GLIContext; target: GLenum; s: GLshort );
  553. multi_tex_coord1sv : procedure( ctx: GLIContext; target: GLenum; const v: PGLshort );
  554. multi_tex_coord2d : procedure( ctx: GLIContext; target: GLenum; s: GLdouble; t: GLdouble );
  555. multi_tex_coord2dv : procedure( ctx: GLIContext; target: GLenum; const v: PGLdouble );
  556. multi_tex_coord2f : procedure( ctx: GLIContext; target: GLenum; s: GLfloat; t: GLfloat );
  557. multi_tex_coord2fv : procedure( ctx: GLIContext; target: GLenum; const v: PGLfloat );
  558. multi_tex_coord2i : procedure( ctx: GLIContext; target: GLenum; s: GLint; t: GLint );
  559. multi_tex_coord2iv : procedure( ctx: GLIContext; target: GLenum; const v: PGLint );
  560. multi_tex_coord2s : procedure( ctx: GLIContext; target: GLenum; s: GLshort; t: GLshort );
  561. multi_tex_coord2sv : procedure( ctx: GLIContext; target: GLenum; const v: PGLshort );
  562. multi_tex_coord3d : procedure( ctx: GLIContext; target: GLenum; s: GLdouble; t: GLdouble; r: GLdouble );
  563. multi_tex_coord3dv : procedure( ctx: GLIContext; target: GLenum; const v: PGLdouble );
  564. multi_tex_coord3f : procedure( ctx: GLIContext; target: GLenum; s: GLfloat; t: GLfloat; r: GLfloat );
  565. multi_tex_coord3fv : procedure( ctx: GLIContext; target: GLenum; const v: PGLfloat );
  566. multi_tex_coord3i : procedure( ctx: GLIContext; target: GLenum; s: GLint; t: GLint; r: GLint );
  567. multi_tex_coord3iv : procedure( ctx: GLIContext; target: GLenum; const v: PGLint );
  568. multi_tex_coord3s : procedure( ctx: GLIContext; target: GLenum; s: GLshort; t: GLshort; r: GLshort );
  569. multi_tex_coord3sv : procedure( ctx: GLIContext; target: GLenum; const v: PGLshort );
  570. multi_tex_coord4d : procedure( ctx: GLIContext; target: GLenum; s: GLdouble; t: GLdouble; r: GLdouble; q: GLdouble );
  571. multi_tex_coord4dv : procedure( ctx: GLIContext; target: GLenum; const v: PGLdouble );
  572. multi_tex_coord4f : procedure( ctx: GLIContext; target: GLenum; s: GLfloat; t: GLfloat; r: GLfloat; q: GLfloat );
  573. multi_tex_coord4fv : procedure( ctx: GLIContext; target: GLenum; const v: PGLfloat );
  574. multi_tex_coord4i : procedure( ctx: GLIContext; target: GLenum; s: GLint; t: GLint; r: GLint; q: GLint );
  575. multi_tex_coord4iv : procedure( ctx: GLIContext; target: GLenum; const v: PGLint );
  576. multi_tex_coord4s : procedure( ctx: GLIContext; target: GLenum; s: GLshort; t: GLshort; r: GLshort; q: GLshort );
  577. multi_tex_coord4sv : procedure( ctx: GLIContext; target: GLenum; const v: PGLshort );
  578. load_transpose_matrixd : procedure( ctx: GLIContext; const m: PGLdouble );
  579. load_transpose_matrixf : procedure( ctx: GLIContext; const m: PGLfloat );
  580. mult_transpose_matrixd : procedure( ctx: GLIContext; const m: PGLdouble );
  581. mult_transpose_matrixf : procedure( ctx: GLIContext; const m: PGLfloat );
  582. compressed_tex_image3D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalformat: GLenum; width: GLsizei; height: GLsizei; depth: GLsizei; border: GLint; imageSize: GLsizei; const data: UnivPtr );
  583. compressed_tex_image2D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalformat: GLenum; width: GLsizei; height: GLsizei; border: GLint; imageSize: GLsizei; const data: UnivPtr );
  584. compressed_tex_image1D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalformat: GLenum; width: GLsizei; border: GLint; imageSize: GLsizei; const data: UnivPtr );
  585. compressed_tex_sub_image3D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; yoffset: GLint; zoffset: GLint; width: GLsizei; height: GLsizei; depth: GLsizei; format: GLenum; imageSize: GLsizei; const data: UnivPtr );
  586. compressed_tex_sub_image2D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; yoffset: GLint; width: GLsizei; height: GLsizei; format: GLenum; imageSize: GLsizei; const data: UnivPtr );
  587. compressed_tex_sub_image1D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; width: GLsizei; format: GLenum; imageSize: GLsizei; const data: UnivPtr );
  588. get_compressed_tex_image : procedure( ctx: GLIContext; target: GLenum; level: GLint; img: UnivPtr );
  589. secondary_color3b : procedure( ctx: GLIContext; red: GLbyte; green: GLbyte; blue: GLbyte );
  590. secondary_color3bv : procedure( ctx: GLIContext; const v: PGLbyte );
  591. secondary_color3d : procedure( ctx: GLIContext; red: GLdouble; green: GLdouble; blue: GLdouble );
  592. secondary_color3dv : procedure( ctx: GLIContext; const v: PGLdouble );
  593. secondary_color3f : procedure( ctx: GLIContext; red: GLfloat; green: GLfloat; blue: GLfloat );
  594. secondary_color3fv : procedure( ctx: GLIContext; const v: PGLfloat );
  595. secondary_color3i : procedure( ctx: GLIContext; red: GLint; green: GLint; blue: GLint );
  596. secondary_color3iv : procedure( ctx: GLIContext; const v: PGLint );
  597. secondary_color3s : procedure( ctx: GLIContext; red: GLshort; green: GLshort; blue: GLshort );
  598. secondary_color3sv : procedure( ctx: GLIContext; const v: PGLshort );
  599. secondary_color3ub : procedure( ctx: GLIContext; red: GLubyte; green: GLubyte; blue: GLubyte );
  600. secondary_color3ubv : procedure( ctx: GLIContext; const v: PGLubyte );
  601. secondary_color3ui : procedure( ctx: GLIContext; red: GLuint; green: GLuint; blue: GLuint );
  602. secondary_color3uiv : procedure( ctx: GLIContext; const v: PGLuint );
  603. secondary_color3us : procedure( ctx: GLIContext; red: GLushort; green: GLushort; blue: GLushort );
  604. secondary_color3usv : procedure( ctx: GLIContext; const v: PGLushort );
  605. secondary_color_pointer : procedure( ctx: GLIContext; size: GLint; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  606. vertex_array_range_EXT : procedure( ctx: GLIContext; count: GLsizei; const pointr: UnivPtr );
  607. flush_vertex_array_range_EXT : procedure( ctx: GLIContext; count: GLsizei; const pointr: UnivPtr );
  608. draw_range_elements : procedure( ctx: GLIContext; mode: GLenum; start: GLuint; finish: GLuint; count: GLsizei; typ: GLenum; const indices: UnivPtr );
  609. color_table : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; width: GLsizei; format: GLenum; typ: GLenum; const table: UnivPtr );
  610. color_table_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLfloat );
  611. color_table_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLint );
  612. copy_color_table : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; x: GLint; y: GLint; width: GLsizei );
  613. get_color_table : procedure( ctx: GLIContext; target: GLenum; format: GLenum; typ: GLenum; table: UnivPtr );
  614. get_color_table_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLfloat );
  615. get_color_table_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  616. color_sub_table : procedure( ctx: GLIContext; target: GLenum; start: GLsizei; count: GLsizei; format: GLenum; typ: GLenum; const data: UnivPtr );
  617. copy_color_sub_table : procedure( ctx: GLIContext; target: GLenum; start: GLsizei; x: GLint; y: GLint; width: GLsizei );
  618. convolution_filter1D : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; width: GLsizei; format: GLenum; typ: GLenum; const image: UnivPtr );
  619. convolution_filter2D : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; width: GLsizei; height: GLsizei; format: GLenum; typ: GLenum; const image: UnivPtr );
  620. convolution_parameterf : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: GLfloat );
  621. convolution_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLfloat );
  622. convolution_parameteri : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: GLint );
  623. convolution_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; const params: PGLint );
  624. copy_convolution_filter1D : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; x: GLint; y: GLint; width: GLsizei );
  625. copy_convolution_filter2D : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; x: GLint; y: GLint; width: GLsizei; height: GLsizei );
  626. get_convolution_filter : procedure( ctx: GLIContext; target: GLenum; format: GLenum; typ: GLenum; image: UnivPtr );
  627. get_convolution_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLfloat );
  628. get_convolution_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  629. get_separable_filter : procedure( ctx: GLIContext; target: GLenum; format: GLenum; typ: GLenum; row: UnivPtr; column: UnivPtr; span: UnivPtr );
  630. separable_filter2D : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; width: GLsizei; height: GLsizei; format: GLenum; typ: GLenum; const row: UnivPtr; const column: UnivPtr );
  631. get_histogram : procedure( ctx: GLIContext; target: GLenum; reset: GLboolean; format: GLenum; typ: GLenum; values: UnivPtr );
  632. get_histogram_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLfloat );
  633. get_histogram_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  634. get_minmax : procedure( ctx: GLIContext; target: GLenum; reset: GLboolean; format: GLenum; typ: GLenum; values: UnivPtr );
  635. get_minmax_parameterfv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLfloat );
  636. get_minmax_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  637. histogram : procedure( ctx: GLIContext; target: GLenum; width: GLsizei; internalformat: GLenum; sink: GLboolean );
  638. minmax : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; sink: GLboolean );
  639. reset_histogram : procedure( ctx: GLIContext; target: GLenum );
  640. reset_minmax : procedure( ctx: GLIContext; target: GLenum );
  641. tex_image3D : procedure( ctx: GLIContext; target: GLenum; level: GLint; internalFormat: GLenum; width: GLsizei; height: GLsizei; depth: GLsizei; border: GLint; format: GLenum; typ: GLenum; const pixels: UnivPtr );
  642. tex_sub_image3D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; yoffset: GLint; zoffset: GLint; width: GLsizei; height: GLsizei; depth: GLsizei; format: GLenum; typ: GLenum; const pixels: UnivPtr );
  643. copy_tex_sub_image3D : procedure( ctx: GLIContext; target: GLenum; level: GLint; xoffset: GLint; yoffset: GLint; zoffset: GLint; x: GLint; y: GLint; width: GLsizei; height: GLsizei );
  644. combiner_parameterfv_NV : procedure( ctx: GLIContext; pname: GLenum; const params: PGLfloat );
  645. combiner_parameterf_NV : procedure( ctx: GLIContext; pname: GLenum; param: GLfloat );
  646. combiner_parameteriv_NV : procedure( ctx: GLIContext; pname: GLenum; const params: PGLint );
  647. combiner_parameteri_NV : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  648. combiner_input_NV : procedure( ctx: GLIContext; stage: GLenum; portion: GLenum; variable: GLenum; input: GLenum; mapping: GLenum; componentUsage: GLenum );
  649. combiner_output_NV : procedure( ctx: GLIContext; stage: GLenum; portion: GLenum; abOutput: GLenum; cdOutput: GLenum; sumOutput: GLenum; scale: GLenum; bias: GLenum; abDotProduct: GLboolean; cdDotProduct: GLboolean; muxSum: GLboolean );
  650. final_combiner_input_NV : procedure( ctx: GLIContext; variable: GLenum; input: GLenum; mapping: GLenum; componentUsage: GLenum );
  651. get_combiner_input_parameterfv_NV : procedure( ctx: GLIContext; stage: GLenum; portion: GLenum; variable: GLenum; pname: GLenum; params: PGLfloat );
  652. get_combiner_input_parameteriv_NV : procedure( ctx: GLIContext; stage: GLenum; portion: GLenum; variable: GLenum; pname: GLenum; params: PGLint );
  653. get_combiner_output_parameterfv_NV : procedure( ctx: GLIContext; stage: GLenum; portion: GLenum; pname: GLenum; params: PGLfloat );
  654. get_combiner_output_parameteriv_NV : procedure( ctx: GLIContext; stage: GLenum; portion: GLenum; pname: GLenum; params: PGLint );
  655. get_final_combiner_input_parameterfv_NV : procedure( ctx: GLIContext; variable: GLenum; pname: GLenum; params: PGLfloat );
  656. get_final_combiner_input_parameteriv_NV : procedure( ctx: GLIContext; variable: GLenum; pname: GLenum; params: PGLint );
  657. combiner_stage_parameterfv_NV : procedure( ctx: GLIContext; stage: GLenum; pname: GLenum; const params: PGLfloat );
  658. get_combiner_stage_parameterfv_NV : procedure( ctx: GLIContext; stage: GLenum; pname: GLenum; params: PGLfloat );
  659. texture_range_APPLE : procedure( ctx: GLIContext; target: GLenum; length: GLsizei; const pointr: UnivPtr );
  660. get_tex_parameter_pointerv_APPLE : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: UnivPtrPtr );
  661. blend_equation_separate_EXT : procedure( ctx: GLIContext; equationRGB: GLenum; equationAlpha: GLenum );
  662. sample_coverage : procedure( ctx: GLIContext; value: GLclampf; invert: GLboolean );
  663. sample_pass : procedure( ctx: GLIContext; mode: GLenum );
  664. pn_trianglesi_ATI : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  665. pn_trianglesf_ATI : procedure( ctx: GLIContext; pname: GLenum; param: GLfloat );
  666. gen_fences_APPLE : procedure( ctx: GLIContext; n: GLsizei; fences: PGLuint );
  667. delete_fences_APPLE : procedure( ctx: GLIContext; n: GLsizei; const fences: PGLuint );
  668. set_fence_APPLE : procedure( ctx: GLIContext; fence: GLuint );
  669. is_fence_APPLE : function( ctx: GLIContext; fence: GLuint ): GLboolean;
  670. test_fence_APPLE : function( ctx: GLIContext; fence: GLuint ): GLboolean;
  671. finish_fence_APPLE : procedure( ctx: GLIContext; fence: GLuint );
  672. test_object_APPLE : function( ctx: GLIContext; objct: GLenum; name: GLuint ): GLboolean;
  673. finish_object_APPLE : procedure( ctx: GLIContext; objct: GLenum; name: GLuint );
  674. bind_program_ARB : procedure( ctx: GLIContext; target: GLenum; program_: GLuint );
  675. delete_programs_ARB : procedure( ctx: GLIContext; n: GLsizei; const programs: PGLuint );
  676. gen_programs_ARB : procedure( ctx: GLIContext; n: GLsizei; programs: PGLuint );
  677. is_program_ARB : function( ctx: GLIContext; program_: GLuint ): GLboolean;
  678. vertex_attrib1s_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLshort );
  679. vertex_attrib1f_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLfloat );
  680. vertex_attrib1d_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLdouble );
  681. vertex_attrib2s_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLshort; y: GLshort );
  682. vertex_attrib2f_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLfloat; y: GLfloat );
  683. vertex_attrib2d_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLdouble; y: GLdouble );
  684. vertex_attrib3s_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLshort; y: GLshort; z: GLshort );
  685. vertex_attrib3f_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLfloat; y: GLfloat; z: GLfloat );
  686. vertex_attrib3d_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLdouble; y: GLdouble; z: GLdouble );
  687. vertex_attrib4s_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLshort; y: GLshort; z: GLshort; w: GLshort );
  688. vertex_attrib4f_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLfloat; y: GLfloat; z: GLfloat; w: GLfloat );
  689. vertex_attrib4d_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLdouble; y: GLdouble; z: GLdouble; w: GLdouble );
  690. vertex_attrib4Nub_ARB : procedure( ctx: GLIContext; index: GLuint; x: GLubyte; y: GLubyte; z: GLubyte; w: GLubyte );
  691. vertex_attrib1sv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLshort );
  692. vertex_attrib1fv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLfloat );
  693. vertex_attrib1dv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLdouble );
  694. vertex_attrib2sv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLshort );
  695. vertex_attrib2fv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLfloat );
  696. vertex_attrib2dv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLdouble );
  697. vertex_attrib3sv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLshort );
  698. vertex_attrib3fv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLfloat );
  699. vertex_attrib3dv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLdouble );
  700. vertex_attrib4bv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLbyte );
  701. vertex_attrib4sv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLshort );
  702. vertex_attrib4iv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLint );
  703. vertex_attrib4ubv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLubyte );
  704. vertex_attrib4usv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLushort );
  705. vertex_attrib4uiv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLuint );
  706. vertex_attrib4fv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLfloat );
  707. vertex_attrib4dv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLdouble );
  708. vertex_attrib4Nbv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLbyte );
  709. vertex_attrib4Nsv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLshort );
  710. vertex_attrib4Niv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLint );
  711. vertex_attrib4Nubv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLubyte );
  712. vertex_attrib4Nusv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLushort );
  713. vertex_attrib4Nuiv_ARB : procedure( ctx: GLIContext; index: GLuint; const v: PGLuint );
  714. vertex_attrib_pointer_ARB : procedure( ctx: GLIContext; index: GLuint; size: GLint; typ: GLenum; normalized: GLboolean; stride: GLsizei; const pointr: UnivPtr );
  715. enable_vertex_attrib_array_ARB : procedure( ctx: GLIContext; index: GLuint );
  716. disable_vertex_attrib_array_ARB : procedure( ctx: GLIContext; index: GLuint );
  717. get_vertex_attribdv_ARB : procedure( ctx: GLIContext; index: GLuint; pname: GLenum; params: PGLdouble );
  718. get_vertex_attribfv_ARB : procedure( ctx: GLIContext; index: GLuint; pname: GLenum; params: PGLfloat );
  719. get_vertex_attribiv_ARB : procedure( ctx: GLIContext; index: GLuint; pname: GLenum; params: PGLint );
  720. get_vertex_attrib_pointerv_ARB : procedure( ctx: GLIContext; index: GLuint; pname: GLenum; pointr: UnivPtrPtr );
  721. program_env_parameter4d_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; x: GLdouble; y: GLdouble; z: GLdouble; w: GLdouble );
  722. program_env_parameter4dv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; const params: PGLdouble );
  723. program_env_parameter4f_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; x: GLfloat; y: GLfloat; z: GLfloat; w: GLfloat );
  724. program_env_parameter4fv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; const params: PGLfloat );
  725. program_local_parameter4d_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; x: GLdouble; y: GLdouble; z: GLdouble; w: GLdouble );
  726. program_local_parameter4dv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; const params: PGLdouble );
  727. program_local_parameter4f_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; x: GLfloat; y: GLfloat; z: GLfloat; w: GLfloat );
  728. program_local_parameter4fv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; const params: PGLfloat );
  729. get_program_env_parameterdv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; params: PGLdouble );
  730. get_program_env_parameterfv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; params: PGLfloat );
  731. get_program_local_parameterdv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; params: PGLdouble );
  732. get_program_local_parameterfv_ARB : procedure( ctx: GLIContext; target: GLenum; index: GLuint; params: PGLfloat );
  733. program_string_ARB : procedure( ctx: GLIContext; target: GLenum; format: GLenum; len: GLsizei; const strng: UnivPtr );
  734. get_program_string_ARB : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; strng: UnivPtr );
  735. get_programiv_ARB : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  736. enable_vertex_attrib_ARB : procedure( ctx: GLIContext; index: GLuint; pname: GLenum );
  737. disable_vertex_attrib_ARB : procedure( ctx: GLIContext; index: GLuint; pname: GLenum );
  738. is_vertex_attrib_enabled_ARB : function( ctx: GLIContext; index: GLuint; pname: GLenum ): GLboolean;
  739. map_vertex_attrib1d_ARB : procedure( ctx: GLIContext; index: GLuint; size: GLuint; u1: GLdouble; u2: GLdouble; stride: GLint; order: GLint; const points: PGLdouble );
  740. map_vertex_attrib1f_ARB : procedure( ctx: GLIContext; index: GLuint; size: GLuint; u1: GLfloat; u2: GLfloat; stride: GLint; order: GLint; const points: PGLfloat );
  741. map_vertex_attrib2d_ARB : procedure( ctx: GLIContext; index: GLuint; size: GLuint; u1: GLdouble; u2: GLdouble; ustride: GLint; uorder: GLint; v1: GLdouble; v2: GLdouble; vstride: GLint; vorder: GLint; const points: PGLdouble );
  742. map_vertex_attrib2f_ARB : procedure( ctx: GLIContext; index: GLuint; size: GLuint; u1: GLfloat; u2: GLfloat; ustride: GLint; uorder: GLint; v1: GLfloat; v2: GLfloat; vstride: GLint; vorder: GLint; const points: PGLfloat );
  743. point_parameterf : procedure( ctx: GLIContext; pname: GLenum; param: GLfloat );
  744. point_parameterfv : procedure( ctx: GLIContext; pname: GLenum; const params: PGLfloat );
  745. point_parameteri : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  746. point_parameteriv : procedure( ctx: GLIContext; pname: GLenum; const params: PGLint );
  747. fog_coordf : procedure( ctx: GLIContext; coord: GLfloat );
  748. fog_coordfv : procedure( ctx: GLIContext; const coord: PGLfloat );
  749. fog_coordd : procedure( ctx: GLIContext; coord: GLdouble );
  750. fog_coorddv : procedure( ctx: GLIContext; const coord: PGLdouble );
  751. fog_coord_pointer : procedure( ctx: GLIContext; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  752. vertex_array_parameteri_EXT : procedure( ctx: GLIContext; pname: GLenum; param: GLint );
  753. bind_vertex_array_EXT : procedure( ctx: GLIContext; id: GLuint );
  754. delete_vertex_arrays_EXT : procedure( ctx: GLIContext; n: GLsizei; const ids: PGLuint );
  755. gen_vertex_arrays_EXT : procedure( ctx: GLIContext; n: GLsizei; ids: PGLuint );
  756. is_vertex_array_EXT : function( ctx: GLIContext; id: GLuint ): GLboolean;
  757. element_pointer_APPLE : procedure( ctx: GLIContext; typ: GLenum; const pointr: UnivPtr );
  758. draw_element_array_APPLE : procedure( ctx: GLIContext; mode: GLenum; first: GLint; count: GLsizei );
  759. draw_range_element_array_APPLE : procedure( ctx: GLIContext; mode: GLenum; start: GLuint; finish: GLuint; first: GLint; count: GLsizei );
  760. weightbv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLbyte );
  761. weightsv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLshort );
  762. weightiv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLint );
  763. weightfv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLfloat );
  764. weightdv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLdouble );
  765. weightubv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLubyte );
  766. weightusv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLushort );
  767. weightuiv_ARB : procedure( ctx: GLIContext; size: GLint; const weights: PGLuint );
  768. weight_pointer_ARB : procedure( ctx: GLIContext; size: GLint; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  769. vertex_blend_ARB : procedure( ctx: GLIContext; count: GLint );
  770. multi_draw_arrays : procedure( ctx: GLIContext; mode: GLenum; const first: PGLint; const count: PGLsizei; primcount: GLsizei );
  771. multi_draw_elements : procedure( ctx: GLIContext; mode: GLenum; const count: PGLsizei; typ: GLenum; {const} indices: UnivPtrPtr; primcount: GLsizei );
  772. window_pos2d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble );
  773. window_pos2dv : procedure( ctx: GLIContext; const v: PGLdouble );
  774. window_pos2f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat );
  775. window_pos2fv : procedure( ctx: GLIContext; const v: PGLfloat );
  776. window_pos2i : procedure( ctx: GLIContext; x: GLint; y: GLint );
  777. window_pos2iv : procedure( ctx: GLIContext; const v: PGLint );
  778. window_pos2s : procedure( ctx: GLIContext; x: GLshort; y: GLshort );
  779. window_pos2sv : procedure( ctx: GLIContext; const v: PGLshort );
  780. window_pos3d : procedure( ctx: GLIContext; x: GLdouble; y: GLdouble; z: GLdouble );
  781. window_pos3dv : procedure( ctx: GLIContext; const v: PGLdouble );
  782. window_pos3f : procedure( ctx: GLIContext; x: GLfloat; y: GLfloat; z: GLfloat );
  783. window_pos3fv : procedure( ctx: GLIContext; const v: PGLfloat );
  784. window_pos3i : procedure( ctx: GLIContext; x: GLint; y: GLint; z: GLint );
  785. window_pos3iv : procedure( ctx: GLIContext; const v: PGLint );
  786. window_pos3s : procedure( ctx: GLIContext; x: GLshort; y: GLshort; z: GLshort );
  787. window_pos3sv : procedure( ctx: GLIContext; const v: PGLshort );
  788. active_stencil_face_EXT : procedure( ctx: GLIContext; face: GLenum );
  789. stencil_op_separate_ATI : procedure( ctx: GLIContext; face: GLenum; sfail: GLenum; dpfail: GLenum; dppass: GLenum );
  790. stencil_func_separate_ATI : procedure( ctx: GLIContext; frontfunc: GLenum; backfunc: GLenum; ref: GLint; mask: GLuint );
  791. flush_render_APPLE : procedure( ctx: GLIContext );
  792. finish_render_APPLE : procedure( ctx: GLIContext );
  793. swap_APPLE : procedure( ctx: GLIContext );
  794. delete_object_ARB : procedure( ctx: GLIContext; obj: GLhandleARB );
  795. get_handle_ARB : function( ctx: GLIContext; pname: GLenum ): GLhandleARB;
  796. detach_object_ARB : procedure( ctx: GLIContext; containerObj: GLhandleARB; attachedObj: GLhandleARB );
  797. create_shader_object_ARB : function( ctx: GLIContext; shaderType: GLenum ): GLhandleARB;
  798. shader_source_ARB : procedure( ctx: GLIContext; shaderObj: GLhandleARB; count: GLsizei; {const} strng: PPChar; const length: PGLint );
  799. compile_shader_ARB : procedure( ctx: GLIContext; shaderObj: GLhandleARB );
  800. create_program_object_ARB : function( ctx: GLIContext ): GLhandleARB;
  801. attach_object_ARB : procedure( ctx: GLIContext; containerObj: GLhandleARB; obj: GLhandleARB );
  802. link_program_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB );
  803. use_program_object_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB );
  804. validate_program_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB );
  805. uniform1f_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLfloat );
  806. uniform2f_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLfloat; v1: GLfloat );
  807. uniform3f_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLfloat; v1: GLfloat; v2: GLfloat );
  808. uniform4f_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLfloat; v1: GLfloat; v2: GLfloat; v3: GLfloat );
  809. uniform1i_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLint );
  810. uniform2i_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLint; v1: GLint );
  811. uniform3i_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLint; v1: GLint; v2: GLint );
  812. uniform4i_ARB : procedure( ctx: GLIContext; location: GLint; v0: GLint; v1: GLint; v2: GLint; v3: GLint );
  813. uniform1fv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLfloat );
  814. uniform2fv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLfloat );
  815. uniform3fv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLfloat );
  816. uniform4fv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLfloat );
  817. uniform1iv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLint );
  818. uniform2iv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLint );
  819. uniform3iv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLint );
  820. uniform4iv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLint );
  821. uniform_matrix2fv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  822. uniform_matrix3fv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  823. uniform_matrix4fv_ARB : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  824. get_object_parameterfv_ARB : procedure( ctx: GLIContext; obj: GLhandleARB; pname: GLenum; params: PGLfloat );
  825. get_object_parameteriv_ARB : procedure( ctx: GLIContext; obj: GLhandleARB; pname: GLenum; params: PGLint );
  826. get_info_log_ARB : procedure( ctx: GLIContext; obj: GLhandleARB; maxLength: GLsizei; length: PGLsizei; infoLog: PGLcharARB );
  827. get_attached_objects_ARB : procedure( ctx: GLIContext; containerObj: GLhandleARB; maxCount: GLsizei; count: PGLsizei; obj: PGLhandleARB );
  828. get_uniform_location_ARB : function( ctx: GLIContext; programObj: GLhandleARB; const name: PGLcharARB ): GLint;
  829. get_active_uniform_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB; index: GLuint; maxLength: GLsizei; length: PGLsizei; size: PGLint; typ: PGLenum; name: PGLcharARB );
  830. get_uniformfv_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB; location: GLint; params: PGLfloat );
  831. get_uniformiv_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB; location: GLint; params: PGLint );
  832. get_shader_source_ARB : procedure( ctx: GLIContext; obj: GLhandleARB; maxLength: GLsizei; length: PGLsizei; source: PGLcharARB );
  833. bind_attrib_location_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB; index: GLuint; const name: PGLcharARB );
  834. get_active_attrib_ARB : procedure( ctx: GLIContext; programObj: GLhandleARB; index: GLuint; maxLength: GLsizei; length: PGLsizei; size: PGLint; typ: PGLenum; name: PGLcharARB );
  835. get_attrib_location_ARB : function( ctx: GLIContext; programObj: GLhandleARB; const name: PGLcharARB ): GLint;
  836. clamp_color_ARB : procedure( ctx: GLIContext; target: GLenum; clamp: GLenum );
  837. gen_queries : procedure( ctx: GLIContext; n: GLsizei; ids: PGLuint );
  838. delete_queries : procedure( ctx: GLIContext; n: GLsizei; const ids: PGLuint );
  839. is_query : function( ctx: GLIContext; id: GLuint ): GLboolean;
  840. begin_query : procedure( ctx: GLIContext; target: GLenum; id: GLuint );
  841. end_query : procedure( ctx: GLIContext; target: GLenum );
  842. get_queryiv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  843. get_query_objectiv : procedure( ctx: GLIContext; id: GLuint; pname: GLenum; params: PGLint );
  844. get_query_objectuiv : procedure( ctx: GLIContext; id: GLuint; pname: GLenum; params: PGLuint );
  845. bind_buffer : procedure( ctx: GLIContext; target: GLenum; buffer: GLuint );
  846. delete_buffers : procedure( ctx: GLIContext; n: GLsizei; const buffers: PGLuint );
  847. gen_buffers : procedure( ctx: GLIContext; n: GLsizei; buffers: PGLuint );
  848. is_buffer : function( ctx: GLIContext; buffer: GLuint ): GLboolean;
  849. buffer_data : procedure( ctx: GLIContext; target: GLenum; size: GLsizeiptrARB; const data: UnivPtr; usage: GLenum );
  850. buffer_sub_data : procedure( ctx: GLIContext; target: GLenum; offset: GLintptrARB; size: GLsizeiptrARB; const data: UnivPtr );
  851. get_buffer_sub_data : procedure( ctx: GLIContext; target: GLenum; offset: GLintptrARB; size: GLsizeiptrARB; data: UnivPtr );
  852. map_buffer : function( ctx: GLIContext; target: GLenum; access: GLenum ): UnivPtr;
  853. unmap_buffer : function( ctx: GLIContext; target: GLenum ): GLboolean;
  854. get_buffer_parameteriv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  855. get_buffer_pointerv : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: UnivPtrPtr );
  856. depth_bounds_EXT : procedure( ctx: GLIContext; zmin: GLclampd; zmax: GLclampd );
  857. draw_buffers_ARB : procedure( ctx: GLIContext; n: GLsizei; const bufs: PGLenum );
  858. is_shader : function( ctx: GLIContext; shader: GLuint ): GLboolean;
  859. is_program : function( ctx: GLIContext; program_: GLuint ): GLboolean;
  860. get_shaderiv : procedure( ctx: GLIContext; shader: GLuint; pname: GLenum; params: PGLint );
  861. get_programiv : procedure( ctx: GLIContext; program_: GLuint; pname: GLenum; params: PGLint );
  862. get_shader_info_log : procedure( ctx: GLIContext; shader: GLuint; bufSize: GLsizei; length: PGLsizei; infoLog: PChar );
  863. get_program_info_log : procedure( ctx: GLIContext; program_: GLuint; bufSize: GLsizei; length: PGLsizei; infoLog: PChar );
  864. stencil_func_separate : procedure( ctx: GLIContext; face: GLenum; func: GLenum; ref: GLint; mask: GLuint );
  865. stencil_mask_separate : procedure( ctx: GLIContext; face: GLenum; mask: GLuint );
  866. multi_draw_element_array_APPLE : procedure( ctx: GLIContext; mode: GLenum; const first: PGLint; const count: PGLsizei; primcount: GLsizei );
  867. multi_draw_range_element_array_APPLE : procedure( ctx: GLIContext; mode: GLenum; start: GLuint; finish: GLuint; const first: PGLint; const count: PGLsizei; primcount: GLsizei );
  868. { frame buffer object }
  869. is_renderbuffer_EXT : function( ctx: GLIContext; renderbuffer: GLuint ): GLboolean;
  870. bind_renderbuffer_EXT : procedure( ctx: GLIContext; target: GLenum; renderbuffer: GLuint );
  871. delete_renderbuffers_EXT : procedure( ctx: GLIContext; n: GLsizei; const renderbuffers: PGLuint );
  872. gen_renderbuffers_EXT : procedure( ctx: GLIContext; n: GLsizei; renderbuffers: PGLuint );
  873. renderbuffer_storage_EXT : procedure( ctx: GLIContext; target: GLenum; internalformat: GLenum; width: GLsizei; height: GLsizei );
  874. get_renderbuffer_parameteriv_EXT : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  875. is_framebuffer_EXT : function( ctx: GLIContext; framebuffer: GLuint ): GLboolean;
  876. bind_framebuffer_EXT : procedure( ctx: GLIContext; target: GLenum; framebuffer: GLuint );
  877. delete_framebuffers_EXT : procedure( ctx: GLIContext; n: GLsizei; const framebuffers: PGLuint );
  878. gen_framebuffers_EXT : procedure( ctx: GLIContext; n: GLsizei; framebuffers: PGLuint );
  879. check_framebuffer_status_EXT : function( ctx: GLIContext; target: GLenum ): GLenum;
  880. framebuffer_texture1D_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; textarget: GLenum; texture: GLuint; level: GLint );
  881. framebuffer_texture2D_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; textarget: GLenum; texture: GLuint; level: GLint );
  882. framebuffer_texture3D_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; textarget: GLenum; texture: GLuint; level: GLint; zoffset: GLint );
  883. framebuffer_renderbuffer_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; renderbuffertarget: GLenum; renderbuffer: GLuint );
  884. get_framebuffer_attachment_parameteriv_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; pname: GLenum; params: PGLint );
  885. generate_mipmap_EXT : procedure( ctx: GLIContext; target: GLenum );
  886. buffer_parameteri_APPLE : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; param: GLint );
  887. flush_mapped_buffer_range_APPLE : procedure( ctx: GLIContext; target: GLenum; offset: GLintptrARB; size: GLsizeiptrARB );
  888. program_env_parameters4fv_EXT : procedure( ctx: GLIContext; target: GLenum; index: GLuint; count: GLsizei; const params: PGLfloat );
  889. program_local_parameters4fv_EXT : procedure( ctx: GLIContext; target: GLenum; index: GLuint; count: GLsizei; const params: PGLfloat );
  890. object_purgeable_APPLE : function( ctx: GLIContext; objectType: GLenum; name: GLuint; option: GLenum ): GLenum;
  891. object_unpurgeable_APPLE : function( ctx: GLIContext; objectType: GLenum; name: GLuint; option: GLenum ): GLenum;
  892. get_object_parameteriv_APPLE : procedure( ctx: GLIContext; objectType: GLenum; name: GLuint; pname: GLenum; params: PGLint );
  893. { geometry shader4 }
  894. program_parameteri_EXT : procedure( ctx: GLIContext; program_name: GLuint; pname: GLenum; value: GLint );
  895. framebuffer_texture_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; texture: GLuint; level: GLint );
  896. framebuffer_texture_layer_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; texture: GLuint; level: GLint; layer: GLint );
  897. framebuffer_texture_face_EXT : procedure( ctx: GLIContext; target: GLenum; attachment: GLenum; texture: GLuint; level: GLint; face: GLenum );
  898. { transform feedback }
  899. bind_buffer_range_EXT : procedure( ctx: GLIContext; target: GLenum; index: GLuint; buffer: GLuint; offset: GLintptr; size: GLsizeiptr );
  900. bind_buffer_offset_EXT : procedure( ctx: GLIContext; target: GLenum; index: GLuint; buffer: GLuint; offset: GLintptr );
  901. bind_buffer_base_EXT : procedure( ctx: GLIContext; target: GLenum; index: GLuint; buffer: GLuint );
  902. begin_transform_feedback_EXT : procedure( ctx: GLIContext; primitiveMode: GLenum );
  903. end_transform_feedback_EXT : procedure( ctx: GLIContext );
  904. transform_feedback_varyings_EXT : procedure( ctx: GLIContext; program_: GLuint; count: GLsizei; {const} varyings: PPChar; bufferMode: GLenum );
  905. get_transform_feedback_varying_EXT : procedure( ctx: GLIContext; program_: GLuint; index: GLuint; bufSize: GLsizei; length: PGLsizei; size: PGLsizei; typ: PGLenum; name: PChar );
  906. get_integer_indexedv_EXT : procedure( ctx: GLIContext; param: GLenum; index: GLuint; values: PGLint );
  907. get_boolean_indexedv_EXT : procedure( ctx: GLIContext; param: GLenum; index: GLuint; values: PGLboolean );
  908. { bindable uniform }
  909. uniform_buffer_EXT : procedure( ctx: GLIContext; program_: GLuint; location: GLint; buffer: GLuint );
  910. get_uniform_buffer_size_EXT : function( ctx: GLIContext; program_: GLuint; location: GLint ): GLint;
  911. get_uniform_buffer_offset_EXT : function( ctx: GLIContext; program_: GLuint; location: GLint ): GLintptr;
  912. { texture integer }
  913. clear_colorIi_EXT : procedure( ctx: GLIContext; r: GLint; g: GLint; b: GLint; a: GLint );
  914. clear_colorIui_EXT : procedure( ctx: GLIContext; r: GLuint; g: GLuint; b: GLuint; a: GLuint );
  915. tex_parameterIiv_EXT : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  916. tex_parameterIuiv_EXT : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLuint );
  917. get_tex_parameterIiv_EXT : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLint );
  918. get_tex_parameterIuiv_EXT : procedure( ctx: GLIContext; target: GLenum; pname: GLenum; params: PGLuint );
  919. { gpu_shader4 }
  920. vertex_attribI1i_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLint );
  921. vertex_attribI2i_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLint; y: GLint );
  922. vertex_attribI3i_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLint; y: GLint; z: GLint );
  923. vertex_attribI4i_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLint; y: GLint; z: GLint; w: GLint );
  924. vertex_attribI1ui_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLuint );
  925. vertex_attribI2ui_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLuint; y: GLuint );
  926. vertex_attribI3ui_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLuint; y: GLuint; z: GLuint );
  927. vertex_attribI4ui_EXT : procedure( ctx: GLIContext; index: GLuint; x: GLuint; y: GLuint; z: GLuint; w: GLuint );
  928. vertex_attribI1iv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLint );
  929. vertex_attribI2iv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLint );
  930. vertex_attribI3iv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLint );
  931. vertex_attribI4iv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLint );
  932. vertex_attribI1uiv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLuint );
  933. vertex_attribI2uiv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLuint );
  934. vertex_attribI3uiv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLuint );
  935. vertex_attribI4uiv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLuint );
  936. vertex_attribI4bv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLbyte );
  937. vertex_attribI4sv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLshort );
  938. vertex_attribI4ubv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLubyte );
  939. vertex_attribI4usv_EXT : procedure( ctx: GLIContext; index: GLuint; const v: PGLushort );
  940. vertex_attribI_pointer_EXT : procedure( ctx: GLIContext; index: GLuint; size: GLint; typ: GLenum; stride: GLsizei; const pointr: UnivPtr );
  941. get_vertex_attribIiv_EXT : procedure( ctx: GLIContext; index: GLuint; pname: GLenum; params: PGLint );
  942. get_vertex_attribIuiv_EXT : procedure( ctx: GLIContext; index: GLuint; pname: GLenum; params: PGLuint );
  943. uniform1ui_EXT : procedure( ctx: GLIContext; location: GLint; v0: GLuint );
  944. uniform2ui_EXT : procedure( ctx: GLIContext; location: GLint; v0: GLuint; v1: GLuint );
  945. uniform3ui_EXT : procedure( ctx: GLIContext; location: GLint; v0: GLuint; v1: GLuint; v2: GLuint );
  946. uniform4ui_EXT : procedure( ctx: GLIContext; location: GLint; v0: GLuint; v1: GLuint; v2: GLuint; v3: GLuint );
  947. uniform1uiv_EXT : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLuint );
  948. uniform2uiv_EXT : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLuint );
  949. uniform3uiv_EXT : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLuint );
  950. uniform4uiv_EXT : procedure( ctx: GLIContext; location: GLint; count: GLsizei; const value: PGLuint );
  951. get_uniformuiv_EXT : procedure( ctx: GLIContext; program_: GLuint; location: GLint; params: PGLuint );
  952. bind_frag_data_location_EXT : procedure( ctx: GLIContext; program_: GLuint; colorNumber: GLuint; const name: PChar );
  953. get_frag_data_location_EXT : function( ctx: GLIContext; program_: GLuint; const name: PChar ): GLint;
  954. { EXT_draw_buffers2 }
  955. color_mask_indexed_EXT : procedure( ctx: GLIContext; index: GLuint; r: GLboolean; g: GLboolean; b: GLboolean; a: GLboolean );
  956. enable_indexed_EXT : procedure( ctx: GLIContext; target: GLenum; index: GLuint );
  957. disable_indexed_EXT : procedure( ctx: GLIContext; target: GLenum; index: GLuint );
  958. is_enabled_indexed_EXT : function( ctx: GLIContext; target: GLenum; index: GLuint ): GLboolean;
  959. { OpenGL 2.1 }
  960. uniform_matrix2x3fv : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  961. uniform_matrix3x2fv : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  962. uniform_matrix2x4fv : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  963. uniform_matrix4x2fv : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  964. uniform_matrix3x4fv : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  965. uniform_matrix4x3fv : procedure( ctx: GLIContext; location: GLint; count: GLsizei; transpose: GLboolean; const value: PGLfloat );
  966. { EXT_framebuffer_blit and EXT_framebuffer_multisample }
  967. blit_framebuffer_EXT : procedure( ctx: GLIContext; srcX0: GLint; srcY0: GLint; srcX1: GLint; srcY1: GLint; dstX0: GLint; dstY0: GLint; dstX1: GLint; dstY1: GLint; mask: GLbitfield; filter: GLenum );
  968. renderbuffer_storage_multisample_EXT : procedure( ctx: GLIContext; target: GLenum; samples: GLsizei; internalformat: GLenum; width: GLsizei; height: GLsizei );
  969. { NV_conditional_render }
  970. begin_conditional_render_NV : procedure( ctx: GLIContext; id: GLuint; mode: GLenum );
  971. end_conditional_render_NV : procedure( ctx: GLIContext );
  972. get_attached_shaders : procedure( ctx: GLIContext; program_: GLuint; maxCount: GLsizei; count: PGLsizei; shaders: PGLuint );
  973. end;
  974. {$endc} {TARGET_OS_MAC}
  975. {$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
  976. end.
  977. {$endc} {not MACOSALLINCLUDE}