gliDispatch.pas 77 KB

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