PageRenderTime 107ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 4ms

/src/regal/RegalDispatchMissing.cpp

https://bitbucket.org/nigels_com/regal
C++ | 16464 lines | 14099 code | 2138 blank | 227 comment | 0 complexity | 55d3d1693dcd2849466d960496607a25 MD5 | raw file
Possible License(s): BSD-3-Clause, JSON, LGPL-3.0
  1. /* NOTE: Do not edit this file, it is generated by a script:
  2. Export.py --api gl 4.4 --api wgl 4.4 --api glx 4.4 --api cgl 1.4 --api egl 1.0 --outdir .
  3. */
  4. /*
  5. Copyright (c) 2011-2013 NVIDIA Corporation
  6. Copyright (c) 2011-2013 Cass Everitt
  7. Copyright (c) 2012-2013 Scott Nations
  8. Copyright (c) 2012 Mathias Schott
  9. Copyright (c) 2012-2013 Nigel Stewart
  10. Copyright (c) 2012-2013 Google Inc.
  11. All rights reserved.
  12. Redistribution and use in source and binary forms, with or without modification,
  13. are permitted provided that the following conditions are met:
  14. Redistributions of source code must retain the above copyright notice, this
  15. list of conditions and the following disclaimer.
  16. Redistributions in binary form must reproduce the above copyright notice,
  17. this list of conditions and the following disclaimer in the documentation
  18. and/or other materials provided with the distribution.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  20. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  21. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  22. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  23. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  24. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  26. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  27. OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  28. OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. /*
  31. Intended formatting conventions:
  32. $ astyle --style=allman --indent=spaces=2 --indent-switches
  33. */
  34. #include "pch.h" /* For MS precompiled header support */
  35. #include "RegalUtil.h"
  36. #if REGAL_MISSING
  37. REGAL_GLOBAL_BEGIN
  38. #include <string>
  39. using namespace std;
  40. #include "RegalLog.h"
  41. #include "RegalBreak.h"
  42. #include "RegalPush.h"
  43. #include "RegalToken.h"
  44. #include "RegalHelper.h"
  45. #include "RegalPrivate.h"
  46. #include "RegalContext.h"
  47. #include "RegalDispatcherGL.h"
  48. #include "RegalDispatcherGlobal.h"
  49. REGAL_GLOBAL_END
  50. REGAL_NAMESPACE_BEGIN
  51. using namespace ::REGAL_NAMESPACE_INTERNAL::Logging;
  52. using namespace ::REGAL_NAMESPACE_INTERNAL::Token;
  53. namespace Missing
  54. {
  55. // GL_VERSION_1_0
  56. static void REGAL_CALL glAccum(GLenum op, GLfloat value)
  57. {
  58. UNUSED_PARAMETER(op);
  59. UNUSED_PARAMETER(value);
  60. Warning( "glAccum", " not available." );
  61. }
  62. static void REGAL_CALL glAlphaFunc(GLenum func, GLclampf ref)
  63. {
  64. UNUSED_PARAMETER(func);
  65. UNUSED_PARAMETER(ref);
  66. Warning( "glAlphaFunc", " not available." );
  67. }
  68. static void REGAL_CALL glBegin(GLenum mode)
  69. {
  70. UNUSED_PARAMETER(mode);
  71. Warning( "glBegin", " not available." );
  72. }
  73. static void REGAL_CALL glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap)
  74. {
  75. UNUSED_PARAMETER(width);
  76. UNUSED_PARAMETER(height);
  77. UNUSED_PARAMETER(xorig);
  78. UNUSED_PARAMETER(yorig);
  79. UNUSED_PARAMETER(xmove);
  80. UNUSED_PARAMETER(ymove);
  81. UNUSED_PARAMETER(bitmap);
  82. Warning( "glBitmap", " not available." );
  83. }
  84. static void REGAL_CALL glBlendFunc(GLenum sfactor, GLenum dfactor)
  85. {
  86. UNUSED_PARAMETER(sfactor);
  87. UNUSED_PARAMETER(dfactor);
  88. Warning( "glBlendFunc", " not available." );
  89. }
  90. static void REGAL_CALL glCallList(GLuint list)
  91. {
  92. UNUSED_PARAMETER(list);
  93. Warning( "glCallList", " not available." );
  94. }
  95. static void REGAL_CALL glCallLists(GLsizei n, GLenum type, const GLvoid *lists)
  96. {
  97. UNUSED_PARAMETER(n);
  98. UNUSED_PARAMETER(type);
  99. UNUSED_PARAMETER(lists);
  100. Warning( "glCallLists", " not available." );
  101. }
  102. static void REGAL_CALL glClear(GLbitfield mask)
  103. {
  104. UNUSED_PARAMETER(mask);
  105. Warning( "glClear", " not available." );
  106. }
  107. static void REGAL_CALL glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
  108. {
  109. UNUSED_PARAMETER(red);
  110. UNUSED_PARAMETER(green);
  111. UNUSED_PARAMETER(blue);
  112. UNUSED_PARAMETER(alpha);
  113. Warning( "glClearAccum", " not available." );
  114. }
  115. static void REGAL_CALL glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
  116. {
  117. UNUSED_PARAMETER(red);
  118. UNUSED_PARAMETER(green);
  119. UNUSED_PARAMETER(blue);
  120. UNUSED_PARAMETER(alpha);
  121. Warning( "glClearColor", " not available." );
  122. }
  123. static void REGAL_CALL glClearDepth(GLclampd depth)
  124. {
  125. UNUSED_PARAMETER(depth);
  126. Warning( "glClearDepth", " not available." );
  127. }
  128. static void REGAL_CALL glClearIndex(GLfloat c)
  129. {
  130. UNUSED_PARAMETER(c);
  131. Warning( "glClearIndex", " not available." );
  132. }
  133. static void REGAL_CALL glClearStencil(GLint s)
  134. {
  135. UNUSED_PARAMETER(s);
  136. Warning( "glClearStencil", " not available." );
  137. }
  138. static void REGAL_CALL glClipPlane(GLenum plane, const GLdouble *equation)
  139. {
  140. UNUSED_PARAMETER(plane);
  141. UNUSED_PARAMETER(equation);
  142. Warning( "glClipPlane", " not available." );
  143. }
  144. static void REGAL_CALL glColor3b(GLbyte red, GLbyte green, GLbyte blue)
  145. {
  146. UNUSED_PARAMETER(red);
  147. UNUSED_PARAMETER(green);
  148. UNUSED_PARAMETER(blue);
  149. Warning( "glColor3b", " not available." );
  150. }
  151. static void REGAL_CALL glColor3bv(const GLbyte *v)
  152. {
  153. UNUSED_PARAMETER(v);
  154. Warning( "glColor3bv", " not available." );
  155. }
  156. static void REGAL_CALL glColor3d(GLdouble red, GLdouble green, GLdouble blue)
  157. {
  158. UNUSED_PARAMETER(red);
  159. UNUSED_PARAMETER(green);
  160. UNUSED_PARAMETER(blue);
  161. Warning( "glColor3d", " not available." );
  162. }
  163. static void REGAL_CALL glColor3dv(const GLdouble *v)
  164. {
  165. UNUSED_PARAMETER(v);
  166. Warning( "glColor3dv", " not available." );
  167. }
  168. static void REGAL_CALL glColor3f(GLfloat red, GLfloat green, GLfloat blue)
  169. {
  170. UNUSED_PARAMETER(red);
  171. UNUSED_PARAMETER(green);
  172. UNUSED_PARAMETER(blue);
  173. Warning( "glColor3f", " not available." );
  174. }
  175. static void REGAL_CALL glColor3fv(const GLfloat *v)
  176. {
  177. UNUSED_PARAMETER(v);
  178. Warning( "glColor3fv", " not available." );
  179. }
  180. static void REGAL_CALL glColor3i(GLint red, GLint green, GLint blue)
  181. {
  182. UNUSED_PARAMETER(red);
  183. UNUSED_PARAMETER(green);
  184. UNUSED_PARAMETER(blue);
  185. Warning( "glColor3i", " not available." );
  186. }
  187. static void REGAL_CALL glColor3iv(const GLint *v)
  188. {
  189. UNUSED_PARAMETER(v);
  190. Warning( "glColor3iv", " not available." );
  191. }
  192. static void REGAL_CALL glColor3s(GLshort red, GLshort green, GLshort blue)
  193. {
  194. UNUSED_PARAMETER(red);
  195. UNUSED_PARAMETER(green);
  196. UNUSED_PARAMETER(blue);
  197. Warning( "glColor3s", " not available." );
  198. }
  199. static void REGAL_CALL glColor3sv(const GLshort *v)
  200. {
  201. UNUSED_PARAMETER(v);
  202. Warning( "glColor3sv", " not available." );
  203. }
  204. static void REGAL_CALL glColor3ub(GLubyte red, GLubyte green, GLubyte blue)
  205. {
  206. UNUSED_PARAMETER(red);
  207. UNUSED_PARAMETER(green);
  208. UNUSED_PARAMETER(blue);
  209. Warning( "glColor3ub", " not available." );
  210. }
  211. static void REGAL_CALL glColor3ubv(const GLubyte *v)
  212. {
  213. UNUSED_PARAMETER(v);
  214. Warning( "glColor3ubv", " not available." );
  215. }
  216. static void REGAL_CALL glColor3ui(GLuint red, GLuint green, GLuint blue)
  217. {
  218. UNUSED_PARAMETER(red);
  219. UNUSED_PARAMETER(green);
  220. UNUSED_PARAMETER(blue);
  221. Warning( "glColor3ui", " not available." );
  222. }
  223. static void REGAL_CALL glColor3uiv(const GLuint *v)
  224. {
  225. UNUSED_PARAMETER(v);
  226. Warning( "glColor3uiv", " not available." );
  227. }
  228. static void REGAL_CALL glColor3us(GLushort red, GLushort green, GLushort blue)
  229. {
  230. UNUSED_PARAMETER(red);
  231. UNUSED_PARAMETER(green);
  232. UNUSED_PARAMETER(blue);
  233. Warning( "glColor3us", " not available." );
  234. }
  235. static void REGAL_CALL glColor3usv(const GLushort *v)
  236. {
  237. UNUSED_PARAMETER(v);
  238. Warning( "glColor3usv", " not available." );
  239. }
  240. static void REGAL_CALL glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha)
  241. {
  242. UNUSED_PARAMETER(red);
  243. UNUSED_PARAMETER(green);
  244. UNUSED_PARAMETER(blue);
  245. UNUSED_PARAMETER(alpha);
  246. Warning( "glColor4b", " not available." );
  247. }
  248. static void REGAL_CALL glColor4bv(const GLbyte *v)
  249. {
  250. UNUSED_PARAMETER(v);
  251. Warning( "glColor4bv", " not available." );
  252. }
  253. static void REGAL_CALL glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha)
  254. {
  255. UNUSED_PARAMETER(red);
  256. UNUSED_PARAMETER(green);
  257. UNUSED_PARAMETER(blue);
  258. UNUSED_PARAMETER(alpha);
  259. Warning( "glColor4d", " not available." );
  260. }
  261. static void REGAL_CALL glColor4dv(const GLdouble *v)
  262. {
  263. UNUSED_PARAMETER(v);
  264. Warning( "glColor4dv", " not available." );
  265. }
  266. static void REGAL_CALL glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
  267. {
  268. UNUSED_PARAMETER(red);
  269. UNUSED_PARAMETER(green);
  270. UNUSED_PARAMETER(blue);
  271. UNUSED_PARAMETER(alpha);
  272. Warning( "glColor4f", " not available." );
  273. }
  274. static void REGAL_CALL glColor4fv(const GLfloat *v)
  275. {
  276. UNUSED_PARAMETER(v);
  277. Warning( "glColor4fv", " not available." );
  278. }
  279. static void REGAL_CALL glColor4i(GLint red, GLint green, GLint blue, GLint alpha)
  280. {
  281. UNUSED_PARAMETER(red);
  282. UNUSED_PARAMETER(green);
  283. UNUSED_PARAMETER(blue);
  284. UNUSED_PARAMETER(alpha);
  285. Warning( "glColor4i", " not available." );
  286. }
  287. static void REGAL_CALL glColor4iv(const GLint *v)
  288. {
  289. UNUSED_PARAMETER(v);
  290. Warning( "glColor4iv", " not available." );
  291. }
  292. static void REGAL_CALL glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha)
  293. {
  294. UNUSED_PARAMETER(red);
  295. UNUSED_PARAMETER(green);
  296. UNUSED_PARAMETER(blue);
  297. UNUSED_PARAMETER(alpha);
  298. Warning( "glColor4s", " not available." );
  299. }
  300. static void REGAL_CALL glColor4sv(const GLshort *v)
  301. {
  302. UNUSED_PARAMETER(v);
  303. Warning( "glColor4sv", " not available." );
  304. }
  305. static void REGAL_CALL glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha)
  306. {
  307. UNUSED_PARAMETER(red);
  308. UNUSED_PARAMETER(green);
  309. UNUSED_PARAMETER(blue);
  310. UNUSED_PARAMETER(alpha);
  311. Warning( "glColor4ub", " not available." );
  312. }
  313. static void REGAL_CALL glColor4ubv(const GLubyte *v)
  314. {
  315. UNUSED_PARAMETER(v);
  316. Warning( "glColor4ubv", " not available." );
  317. }
  318. static void REGAL_CALL glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha)
  319. {
  320. UNUSED_PARAMETER(red);
  321. UNUSED_PARAMETER(green);
  322. UNUSED_PARAMETER(blue);
  323. UNUSED_PARAMETER(alpha);
  324. Warning( "glColor4ui", " not available." );
  325. }
  326. static void REGAL_CALL glColor4uiv(const GLuint *v)
  327. {
  328. UNUSED_PARAMETER(v);
  329. Warning( "glColor4uiv", " not available." );
  330. }
  331. static void REGAL_CALL glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha)
  332. {
  333. UNUSED_PARAMETER(red);
  334. UNUSED_PARAMETER(green);
  335. UNUSED_PARAMETER(blue);
  336. UNUSED_PARAMETER(alpha);
  337. Warning( "glColor4us", " not available." );
  338. }
  339. static void REGAL_CALL glColor4usv(const GLushort *v)
  340. {
  341. UNUSED_PARAMETER(v);
  342. Warning( "glColor4usv", " not available." );
  343. }
  344. static void REGAL_CALL glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
  345. {
  346. UNUSED_PARAMETER(red);
  347. UNUSED_PARAMETER(green);
  348. UNUSED_PARAMETER(blue);
  349. UNUSED_PARAMETER(alpha);
  350. Warning( "glColorMask", " not available." );
  351. }
  352. static void REGAL_CALL glColorMaterial(GLenum face, GLenum mode)
  353. {
  354. UNUSED_PARAMETER(face);
  355. UNUSED_PARAMETER(mode);
  356. Warning( "glColorMaterial", " not available." );
  357. }
  358. static void REGAL_CALL glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type)
  359. {
  360. UNUSED_PARAMETER(x);
  361. UNUSED_PARAMETER(y);
  362. UNUSED_PARAMETER(width);
  363. UNUSED_PARAMETER(height);
  364. UNUSED_PARAMETER(type);
  365. Warning( "glCopyPixels", " not available." );
  366. }
  367. static void REGAL_CALL glCullFace(GLenum mode)
  368. {
  369. UNUSED_PARAMETER(mode);
  370. Warning( "glCullFace", " not available." );
  371. }
  372. static void REGAL_CALL glDeleteLists(GLuint list, GLsizei range)
  373. {
  374. UNUSED_PARAMETER(list);
  375. UNUSED_PARAMETER(range);
  376. Warning( "glDeleteLists", " not available." );
  377. }
  378. static void REGAL_CALL glDepthFunc(GLenum func)
  379. {
  380. UNUSED_PARAMETER(func);
  381. Warning( "glDepthFunc", " not available." );
  382. }
  383. static void REGAL_CALL glDepthMask(GLboolean flag)
  384. {
  385. UNUSED_PARAMETER(flag);
  386. Warning( "glDepthMask", " not available." );
  387. }
  388. static void REGAL_CALL glDepthRange(GLclampd zNear, GLclampd zFar)
  389. {
  390. UNUSED_PARAMETER(zNear);
  391. UNUSED_PARAMETER(zFar);
  392. Warning( "glDepthRange", " not available." );
  393. }
  394. static void REGAL_CALL glDisable(GLenum cap)
  395. {
  396. UNUSED_PARAMETER(cap);
  397. Warning( "glDisable", " not available." );
  398. }
  399. static void REGAL_CALL glDrawBuffer(GLenum mode)
  400. {
  401. UNUSED_PARAMETER(mode);
  402. Warning( "glDrawBuffer", " not available." );
  403. }
  404. static void REGAL_CALL glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
  405. {
  406. UNUSED_PARAMETER(width);
  407. UNUSED_PARAMETER(height);
  408. UNUSED_PARAMETER(format);
  409. UNUSED_PARAMETER(type);
  410. UNUSED_PARAMETER(pixels);
  411. Warning( "glDrawPixels", " not available." );
  412. }
  413. static void REGAL_CALL glEdgeFlag(GLboolean flag)
  414. {
  415. UNUSED_PARAMETER(flag);
  416. Warning( "glEdgeFlag", " not available." );
  417. }
  418. static void REGAL_CALL glEdgeFlagv(const GLboolean *flag)
  419. {
  420. UNUSED_PARAMETER(flag);
  421. Warning( "glEdgeFlagv", " not available." );
  422. }
  423. static void REGAL_CALL glEnable(GLenum cap)
  424. {
  425. UNUSED_PARAMETER(cap);
  426. Warning( "glEnable", " not available." );
  427. }
  428. static void REGAL_CALL glEnd(void)
  429. {
  430. Warning( "glEnd", " not available." );
  431. }
  432. static void REGAL_CALL glEndList(void)
  433. {
  434. Warning( "glEndList", " not available." );
  435. }
  436. static void REGAL_CALL glEvalCoord1d(GLdouble u)
  437. {
  438. UNUSED_PARAMETER(u);
  439. Warning( "glEvalCoord1d", " not available." );
  440. }
  441. static void REGAL_CALL glEvalCoord1dv(const GLdouble *u)
  442. {
  443. UNUSED_PARAMETER(u);
  444. Warning( "glEvalCoord1dv", " not available." );
  445. }
  446. static void REGAL_CALL glEvalCoord1f(GLfloat u)
  447. {
  448. UNUSED_PARAMETER(u);
  449. Warning( "glEvalCoord1f", " not available." );
  450. }
  451. static void REGAL_CALL glEvalCoord1fv(const GLfloat *u)
  452. {
  453. UNUSED_PARAMETER(u);
  454. Warning( "glEvalCoord1fv", " not available." );
  455. }
  456. static void REGAL_CALL glEvalCoord2d(GLdouble u, GLdouble v)
  457. {
  458. UNUSED_PARAMETER(u);
  459. UNUSED_PARAMETER(v);
  460. Warning( "glEvalCoord2d", " not available." );
  461. }
  462. static void REGAL_CALL glEvalCoord2dv(const GLdouble *u)
  463. {
  464. UNUSED_PARAMETER(u);
  465. Warning( "glEvalCoord2dv", " not available." );
  466. }
  467. static void REGAL_CALL glEvalCoord2f(GLfloat u, GLfloat v)
  468. {
  469. UNUSED_PARAMETER(u);
  470. UNUSED_PARAMETER(v);
  471. Warning( "glEvalCoord2f", " not available." );
  472. }
  473. static void REGAL_CALL glEvalCoord2fv(const GLfloat *u)
  474. {
  475. UNUSED_PARAMETER(u);
  476. Warning( "glEvalCoord2fv", " not available." );
  477. }
  478. static void REGAL_CALL glEvalMesh1(GLenum mode, GLint i1, GLint i2)
  479. {
  480. UNUSED_PARAMETER(mode);
  481. UNUSED_PARAMETER(i1);
  482. UNUSED_PARAMETER(i2);
  483. Warning( "glEvalMesh1", " not available." );
  484. }
  485. static void REGAL_CALL glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)
  486. {
  487. UNUSED_PARAMETER(mode);
  488. UNUSED_PARAMETER(i1);
  489. UNUSED_PARAMETER(i2);
  490. UNUSED_PARAMETER(j1);
  491. UNUSED_PARAMETER(j2);
  492. Warning( "glEvalMesh2", " not available." );
  493. }
  494. static void REGAL_CALL glEvalPoint1(GLint i)
  495. {
  496. UNUSED_PARAMETER(i);
  497. Warning( "glEvalPoint1", " not available." );
  498. }
  499. static void REGAL_CALL glEvalPoint2(GLint i, GLint j)
  500. {
  501. UNUSED_PARAMETER(i);
  502. UNUSED_PARAMETER(j);
  503. Warning( "glEvalPoint2", " not available." );
  504. }
  505. static void REGAL_CALL glFeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer)
  506. {
  507. UNUSED_PARAMETER(size);
  508. UNUSED_PARAMETER(type);
  509. UNUSED_PARAMETER(buffer);
  510. Warning( "glFeedbackBuffer", " not available." );
  511. }
  512. static void REGAL_CALL glFinish(void)
  513. {
  514. Warning( "glFinish", " not available." );
  515. }
  516. static void REGAL_CALL glFlush(void)
  517. {
  518. Warning( "glFlush", " not available." );
  519. }
  520. static void REGAL_CALL glFogf(GLenum pname, GLfloat param)
  521. {
  522. UNUSED_PARAMETER(pname);
  523. UNUSED_PARAMETER(param);
  524. Warning( "glFogf", " not available." );
  525. }
  526. static void REGAL_CALL glFogfv(GLenum pname, const GLfloat *params)
  527. {
  528. UNUSED_PARAMETER(pname);
  529. UNUSED_PARAMETER(params);
  530. Warning( "glFogfv", " not available." );
  531. }
  532. static void REGAL_CALL glFogi(GLenum pname, GLint param)
  533. {
  534. UNUSED_PARAMETER(pname);
  535. UNUSED_PARAMETER(param);
  536. Warning( "glFogi", " not available." );
  537. }
  538. static void REGAL_CALL glFogiv(GLenum pname, const GLint *params)
  539. {
  540. UNUSED_PARAMETER(pname);
  541. UNUSED_PARAMETER(params);
  542. Warning( "glFogiv", " not available." );
  543. }
  544. static void REGAL_CALL glFrontFace(GLenum mode)
  545. {
  546. UNUSED_PARAMETER(mode);
  547. Warning( "glFrontFace", " not available." );
  548. }
  549. static void REGAL_CALL glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
  550. {
  551. UNUSED_PARAMETER(left);
  552. UNUSED_PARAMETER(right);
  553. UNUSED_PARAMETER(bottom);
  554. UNUSED_PARAMETER(top);
  555. UNUSED_PARAMETER(zNear);
  556. UNUSED_PARAMETER(zFar);
  557. Warning( "glFrustum", " not available." );
  558. }
  559. static GLuint REGAL_CALL glGenLists(GLsizei range)
  560. {
  561. UNUSED_PARAMETER(range);
  562. Warning( "glGenLists", " not available." );
  563. return 0;
  564. }
  565. static void REGAL_CALL glGetBooleanv(GLenum pname, GLboolean *params)
  566. {
  567. UNUSED_PARAMETER(pname);
  568. UNUSED_PARAMETER(params);
  569. Warning( "glGetBooleanv", " not available." );
  570. }
  571. static void REGAL_CALL glGetClipPlane(GLenum plane, GLdouble *equation)
  572. {
  573. UNUSED_PARAMETER(plane);
  574. UNUSED_PARAMETER(equation);
  575. Warning( "glGetClipPlane", " not available." );
  576. }
  577. static void REGAL_CALL glGetDoublev(GLenum pname, GLdouble *params)
  578. {
  579. UNUSED_PARAMETER(pname);
  580. UNUSED_PARAMETER(params);
  581. Warning( "glGetDoublev", " not available." );
  582. }
  583. static GLenum REGAL_CALL glGetError(void)
  584. {
  585. Warning( "glGetError", " not available." );
  586. return 0;
  587. }
  588. static void REGAL_CALL glGetFloatv(GLenum pname, GLfloat *params)
  589. {
  590. UNUSED_PARAMETER(pname);
  591. UNUSED_PARAMETER(params);
  592. Warning( "glGetFloatv", " not available." );
  593. }
  594. static void REGAL_CALL glGetIntegerv(GLenum pname, GLint *params)
  595. {
  596. UNUSED_PARAMETER(pname);
  597. UNUSED_PARAMETER(params);
  598. Warning( "glGetIntegerv", " not available." );
  599. }
  600. static void REGAL_CALL glGetLightfv(GLenum light, GLenum pname, GLfloat *params)
  601. {
  602. UNUSED_PARAMETER(light);
  603. UNUSED_PARAMETER(pname);
  604. UNUSED_PARAMETER(params);
  605. Warning( "glGetLightfv", " not available." );
  606. }
  607. static void REGAL_CALL glGetLightiv(GLenum light, GLenum pname, GLint *params)
  608. {
  609. UNUSED_PARAMETER(light);
  610. UNUSED_PARAMETER(pname);
  611. UNUSED_PARAMETER(params);
  612. Warning( "glGetLightiv", " not available." );
  613. }
  614. static void REGAL_CALL glGetMapdv(GLenum target, GLenum query, GLdouble *v)
  615. {
  616. UNUSED_PARAMETER(target);
  617. UNUSED_PARAMETER(query);
  618. UNUSED_PARAMETER(v);
  619. Warning( "glGetMapdv", " not available." );
  620. }
  621. static void REGAL_CALL glGetMapfv(GLenum target, GLenum query, GLfloat *v)
  622. {
  623. UNUSED_PARAMETER(target);
  624. UNUSED_PARAMETER(query);
  625. UNUSED_PARAMETER(v);
  626. Warning( "glGetMapfv", " not available." );
  627. }
  628. static void REGAL_CALL glGetMapiv(GLenum target, GLenum query, GLint *v)
  629. {
  630. UNUSED_PARAMETER(target);
  631. UNUSED_PARAMETER(query);
  632. UNUSED_PARAMETER(v);
  633. Warning( "glGetMapiv", " not available." );
  634. }
  635. static void REGAL_CALL glGetMaterialfv(GLenum face, GLenum pname, GLfloat *params)
  636. {
  637. UNUSED_PARAMETER(face);
  638. UNUSED_PARAMETER(pname);
  639. UNUSED_PARAMETER(params);
  640. Warning( "glGetMaterialfv", " not available." );
  641. }
  642. static void REGAL_CALL glGetMaterialiv(GLenum face, GLenum pname, GLint *params)
  643. {
  644. UNUSED_PARAMETER(face);
  645. UNUSED_PARAMETER(pname);
  646. UNUSED_PARAMETER(params);
  647. Warning( "glGetMaterialiv", " not available." );
  648. }
  649. static void REGAL_CALL glGetPixelMapfv(GLenum map, GLfloat *values)
  650. {
  651. UNUSED_PARAMETER(map);
  652. UNUSED_PARAMETER(values);
  653. Warning( "glGetPixelMapfv", " not available." );
  654. }
  655. static void REGAL_CALL glGetPixelMapuiv(GLenum map, GLuint *values)
  656. {
  657. UNUSED_PARAMETER(map);
  658. UNUSED_PARAMETER(values);
  659. Warning( "glGetPixelMapuiv", " not available." );
  660. }
  661. static void REGAL_CALL glGetPixelMapusv(GLenum map, GLushort *values)
  662. {
  663. UNUSED_PARAMETER(map);
  664. UNUSED_PARAMETER(values);
  665. Warning( "glGetPixelMapusv", " not available." );
  666. }
  667. static void REGAL_CALL glGetPolygonStipple(GLubyte *mask)
  668. {
  669. UNUSED_PARAMETER(mask);
  670. Warning( "glGetPolygonStipple", " not available." );
  671. }
  672. static const GLubyte *REGAL_CALL glGetString(GLenum name)
  673. {
  674. UNUSED_PARAMETER(name);
  675. Warning( "glGetString", " not available." );
  676. return NULL;
  677. }
  678. static void REGAL_CALL glGetTexEnvfv(GLenum target, GLenum pname, GLfloat *params)
  679. {
  680. UNUSED_PARAMETER(target);
  681. UNUSED_PARAMETER(pname);
  682. UNUSED_PARAMETER(params);
  683. Warning( "glGetTexEnvfv", " not available." );
  684. }
  685. static void REGAL_CALL glGetTexEnviv(GLenum target, GLenum pname, GLint *params)
  686. {
  687. UNUSED_PARAMETER(target);
  688. UNUSED_PARAMETER(pname);
  689. UNUSED_PARAMETER(params);
  690. Warning( "glGetTexEnviv", " not available." );
  691. }
  692. static void REGAL_CALL glGetTexGendv(GLenum coord, GLenum pname, GLdouble *params)
  693. {
  694. UNUSED_PARAMETER(coord);
  695. UNUSED_PARAMETER(pname);
  696. UNUSED_PARAMETER(params);
  697. Warning( "glGetTexGendv", " not available." );
  698. }
  699. static void REGAL_CALL glGetTexGenfv(GLenum coord, GLenum pname, GLfloat *params)
  700. {
  701. UNUSED_PARAMETER(coord);
  702. UNUSED_PARAMETER(pname);
  703. UNUSED_PARAMETER(params);
  704. Warning( "glGetTexGenfv", " not available." );
  705. }
  706. static void REGAL_CALL glGetTexGeniv(GLenum coord, GLenum pname, GLint *params)
  707. {
  708. UNUSED_PARAMETER(coord);
  709. UNUSED_PARAMETER(pname);
  710. UNUSED_PARAMETER(params);
  711. Warning( "glGetTexGeniv", " not available." );
  712. }
  713. static void REGAL_CALL glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels)
  714. {
  715. UNUSED_PARAMETER(target);
  716. UNUSED_PARAMETER(level);
  717. UNUSED_PARAMETER(format);
  718. UNUSED_PARAMETER(type);
  719. UNUSED_PARAMETER(pixels);
  720. Warning( "glGetTexImage", " not available." );
  721. }
  722. static void REGAL_CALL glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params)
  723. {
  724. UNUSED_PARAMETER(target);
  725. UNUSED_PARAMETER(level);
  726. UNUSED_PARAMETER(pname);
  727. UNUSED_PARAMETER(params);
  728. Warning( "glGetTexLevelParameterfv", " not available." );
  729. }
  730. static void REGAL_CALL glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params)
  731. {
  732. UNUSED_PARAMETER(target);
  733. UNUSED_PARAMETER(level);
  734. UNUSED_PARAMETER(pname);
  735. UNUSED_PARAMETER(params);
  736. Warning( "glGetTexLevelParameteriv", " not available." );
  737. }
  738. static void REGAL_CALL glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params)
  739. {
  740. UNUSED_PARAMETER(target);
  741. UNUSED_PARAMETER(pname);
  742. UNUSED_PARAMETER(params);
  743. Warning( "glGetTexParameterfv", " not available." );
  744. }
  745. static void REGAL_CALL glGetTexParameteriv(GLenum target, GLenum pname, GLint *params)
  746. {
  747. UNUSED_PARAMETER(target);
  748. UNUSED_PARAMETER(pname);
  749. UNUSED_PARAMETER(params);
  750. Warning( "glGetTexParameteriv", " not available." );
  751. }
  752. static void REGAL_CALL glHint(GLenum target, GLenum mode)
  753. {
  754. UNUSED_PARAMETER(target);
  755. UNUSED_PARAMETER(mode);
  756. Warning( "glHint", " not available." );
  757. }
  758. static void REGAL_CALL glIndexMask(GLuint mask)
  759. {
  760. UNUSED_PARAMETER(mask);
  761. Warning( "glIndexMask", " not available." );
  762. }
  763. static void REGAL_CALL glIndexd(GLdouble c)
  764. {
  765. UNUSED_PARAMETER(c);
  766. Warning( "glIndexd", " not available." );
  767. }
  768. static void REGAL_CALL glIndexdv(const GLdouble *c)
  769. {
  770. UNUSED_PARAMETER(c);
  771. Warning( "glIndexdv", " not available." );
  772. }
  773. static void REGAL_CALL glIndexf(GLfloat c)
  774. {
  775. UNUSED_PARAMETER(c);
  776. Warning( "glIndexf", " not available." );
  777. }
  778. static void REGAL_CALL glIndexfv(const GLfloat *c)
  779. {
  780. UNUSED_PARAMETER(c);
  781. Warning( "glIndexfv", " not available." );
  782. }
  783. static void REGAL_CALL glIndexi(GLint c)
  784. {
  785. UNUSED_PARAMETER(c);
  786. Warning( "glIndexi", " not available." );
  787. }
  788. static void REGAL_CALL glIndexiv(const GLint *c)
  789. {
  790. UNUSED_PARAMETER(c);
  791. Warning( "glIndexiv", " not available." );
  792. }
  793. static void REGAL_CALL glIndexs(GLshort c)
  794. {
  795. UNUSED_PARAMETER(c);
  796. Warning( "glIndexs", " not available." );
  797. }
  798. static void REGAL_CALL glIndexsv(const GLshort *c)
  799. {
  800. UNUSED_PARAMETER(c);
  801. Warning( "glIndexsv", " not available." );
  802. }
  803. static void REGAL_CALL glInitNames(void)
  804. {
  805. Warning( "glInitNames", " not available." );
  806. }
  807. static GLboolean REGAL_CALL glIsEnabled(GLenum cap)
  808. {
  809. UNUSED_PARAMETER(cap);
  810. Warning( "glIsEnabled", " not available." );
  811. return GL_FALSE;
  812. }
  813. static GLboolean REGAL_CALL glIsList(GLuint list)
  814. {
  815. UNUSED_PARAMETER(list);
  816. Warning( "glIsList", " not available." );
  817. return GL_FALSE;
  818. }
  819. static void REGAL_CALL glLightModelf(GLenum pname, GLfloat param)
  820. {
  821. UNUSED_PARAMETER(pname);
  822. UNUSED_PARAMETER(param);
  823. Warning( "glLightModelf", " not available." );
  824. }
  825. static void REGAL_CALL glLightModelfv(GLenum pname, const GLfloat *params)
  826. {
  827. UNUSED_PARAMETER(pname);
  828. UNUSED_PARAMETER(params);
  829. Warning( "glLightModelfv", " not available." );
  830. }
  831. static void REGAL_CALL glLightModeli(GLenum pname, GLint param)
  832. {
  833. UNUSED_PARAMETER(pname);
  834. UNUSED_PARAMETER(param);
  835. Warning( "glLightModeli", " not available." );
  836. }
  837. static void REGAL_CALL glLightModeliv(GLenum pname, const GLint *params)
  838. {
  839. UNUSED_PARAMETER(pname);
  840. UNUSED_PARAMETER(params);
  841. Warning( "glLightModeliv", " not available." );
  842. }
  843. static void REGAL_CALL glLightf(GLenum light, GLenum pname, GLfloat param)
  844. {
  845. UNUSED_PARAMETER(light);
  846. UNUSED_PARAMETER(pname);
  847. UNUSED_PARAMETER(param);
  848. Warning( "glLightf", " not available." );
  849. }
  850. static void REGAL_CALL glLightfv(GLenum light, GLenum pname, const GLfloat *params)
  851. {
  852. UNUSED_PARAMETER(light);
  853. UNUSED_PARAMETER(pname);
  854. UNUSED_PARAMETER(params);
  855. Warning( "glLightfv", " not available." );
  856. }
  857. static void REGAL_CALL glLighti(GLenum light, GLenum pname, GLint param)
  858. {
  859. UNUSED_PARAMETER(light);
  860. UNUSED_PARAMETER(pname);
  861. UNUSED_PARAMETER(param);
  862. Warning( "glLighti", " not available." );
  863. }
  864. static void REGAL_CALL glLightiv(GLenum light, GLenum pname, const GLint *params)
  865. {
  866. UNUSED_PARAMETER(light);
  867. UNUSED_PARAMETER(pname);
  868. UNUSED_PARAMETER(params);
  869. Warning( "glLightiv", " not available." );
  870. }
  871. static void REGAL_CALL glLineStipple(GLint factor, GLushort pattern)
  872. {
  873. UNUSED_PARAMETER(factor);
  874. UNUSED_PARAMETER(pattern);
  875. Warning( "glLineStipple", " not available." );
  876. }
  877. static void REGAL_CALL glLineWidth(GLfloat width)
  878. {
  879. UNUSED_PARAMETER(width);
  880. Warning( "glLineWidth", " not available." );
  881. }
  882. static void REGAL_CALL glListBase(GLuint base)
  883. {
  884. UNUSED_PARAMETER(base);
  885. Warning( "glListBase", " not available." );
  886. }
  887. static void REGAL_CALL glLoadIdentity(void)
  888. {
  889. Warning( "glLoadIdentity", " not available." );
  890. }
  891. static void REGAL_CALL glLoadMatrixd(const GLdouble *m)
  892. {
  893. UNUSED_PARAMETER(m);
  894. Warning( "glLoadMatrixd", " not available." );
  895. }
  896. static void REGAL_CALL glLoadMatrixf(const GLfloat *m)
  897. {
  898. UNUSED_PARAMETER(m);
  899. Warning( "glLoadMatrixf", " not available." );
  900. }
  901. static void REGAL_CALL glLoadName(GLuint name)
  902. {
  903. UNUSED_PARAMETER(name);
  904. Warning( "glLoadName", " not available." );
  905. }
  906. static void REGAL_CALL glLogicOp(GLenum opcode)
  907. {
  908. UNUSED_PARAMETER(opcode);
  909. Warning( "glLogicOp", " not available." );
  910. }
  911. static void REGAL_CALL glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points)
  912. {
  913. UNUSED_PARAMETER(target);
  914. UNUSED_PARAMETER(u1);
  915. UNUSED_PARAMETER(u2);
  916. UNUSED_PARAMETER(stride);
  917. UNUSED_PARAMETER(order);
  918. UNUSED_PARAMETER(points);
  919. Warning( "glMap1d", " not available." );
  920. }
  921. static void REGAL_CALL glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points)
  922. {
  923. UNUSED_PARAMETER(target);
  924. UNUSED_PARAMETER(u1);
  925. UNUSED_PARAMETER(u2);
  926. UNUSED_PARAMETER(stride);
  927. UNUSED_PARAMETER(order);
  928. UNUSED_PARAMETER(points);
  929. Warning( "glMap1f", " not available." );
  930. }
  931. static void REGAL_CALL glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points)
  932. {
  933. UNUSED_PARAMETER(target);
  934. UNUSED_PARAMETER(u1);
  935. UNUSED_PARAMETER(u2);
  936. UNUSED_PARAMETER(ustride);
  937. UNUSED_PARAMETER(uorder);
  938. UNUSED_PARAMETER(v1);
  939. UNUSED_PARAMETER(v2);
  940. UNUSED_PARAMETER(vstride);
  941. UNUSED_PARAMETER(vorder);
  942. UNUSED_PARAMETER(points);
  943. Warning( "glMap2d", " not available." );
  944. }
  945. static void REGAL_CALL glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points)
  946. {
  947. UNUSED_PARAMETER(target);
  948. UNUSED_PARAMETER(u1);
  949. UNUSED_PARAMETER(u2);
  950. UNUSED_PARAMETER(ustride);
  951. UNUSED_PARAMETER(uorder);
  952. UNUSED_PARAMETER(v1);
  953. UNUSED_PARAMETER(v2);
  954. UNUSED_PARAMETER(vstride);
  955. UNUSED_PARAMETER(vorder);
  956. UNUSED_PARAMETER(points);
  957. Warning( "glMap2f", " not available." );
  958. }
  959. static void REGAL_CALL glMapGrid1d(GLint un, GLdouble u1, GLdouble u2)
  960. {
  961. UNUSED_PARAMETER(un);
  962. UNUSED_PARAMETER(u1);
  963. UNUSED_PARAMETER(u2);
  964. Warning( "glMapGrid1d", " not available." );
  965. }
  966. static void REGAL_CALL glMapGrid1f(GLint un, GLfloat u1, GLfloat u2)
  967. {
  968. UNUSED_PARAMETER(un);
  969. UNUSED_PARAMETER(u1);
  970. UNUSED_PARAMETER(u2);
  971. Warning( "glMapGrid1f", " not available." );
  972. }
  973. static void REGAL_CALL glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2)
  974. {
  975. UNUSED_PARAMETER(un);
  976. UNUSED_PARAMETER(u1);
  977. UNUSED_PARAMETER(u2);
  978. UNUSED_PARAMETER(vn);
  979. UNUSED_PARAMETER(v1);
  980. UNUSED_PARAMETER(v2);
  981. Warning( "glMapGrid2d", " not available." );
  982. }
  983. static void REGAL_CALL glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2)
  984. {
  985. UNUSED_PARAMETER(un);
  986. UNUSED_PARAMETER(u1);
  987. UNUSED_PARAMETER(u2);
  988. UNUSED_PARAMETER(vn);
  989. UNUSED_PARAMETER(v1);
  990. UNUSED_PARAMETER(v2);
  991. Warning( "glMapGrid2f", " not available." );
  992. }
  993. static void REGAL_CALL glMaterialf(GLenum face, GLenum pname, GLfloat param)
  994. {
  995. UNUSED_PARAMETER(face);
  996. UNUSED_PARAMETER(pname);
  997. UNUSED_PARAMETER(param);
  998. Warning( "glMaterialf", " not available." );
  999. }
  1000. static void REGAL_CALL glMaterialfv(GLenum face, GLenum pname, const GLfloat *params)
  1001. {
  1002. UNUSED_PARAMETER(face);
  1003. UNUSED_PARAMETER(pname);
  1004. UNUSED_PARAMETER(params);
  1005. Warning( "glMaterialfv", " not available." );
  1006. }
  1007. static void REGAL_CALL glMateriali(GLenum face, GLenum pname, GLint param)
  1008. {
  1009. UNUSED_PARAMETER(face);
  1010. UNUSED_PARAMETER(pname);
  1011. UNUSED_PARAMETER(param);
  1012. Warning( "glMateriali", " not available." );
  1013. }
  1014. static void REGAL_CALL glMaterialiv(GLenum face, GLenum pname, const GLint *params)
  1015. {
  1016. UNUSED_PARAMETER(face);
  1017. UNUSED_PARAMETER(pname);
  1018. UNUSED_PARAMETER(params);
  1019. Warning( "glMaterialiv", " not available." );
  1020. }
  1021. static void REGAL_CALL glMatrixMode(GLenum mode)
  1022. {
  1023. UNUSED_PARAMETER(mode);
  1024. Warning( "glMatrixMode", " not available." );
  1025. }
  1026. static void REGAL_CALL glMultMatrixd(const GLdouble *m)
  1027. {
  1028. UNUSED_PARAMETER(m);
  1029. Warning( "glMultMatrixd", " not available." );
  1030. }
  1031. static void REGAL_CALL glMultMatrixf(const GLfloat *m)
  1032. {
  1033. UNUSED_PARAMETER(m);
  1034. Warning( "glMultMatrixf", " not available." );
  1035. }
  1036. static void REGAL_CALL glNewList(GLuint list, GLenum mode)
  1037. {
  1038. UNUSED_PARAMETER(list);
  1039. UNUSED_PARAMETER(mode);
  1040. Warning( "glNewList", " not available." );
  1041. }
  1042. static void REGAL_CALL glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz)
  1043. {
  1044. UNUSED_PARAMETER(nx);
  1045. UNUSED_PARAMETER(ny);
  1046. UNUSED_PARAMETER(nz);
  1047. Warning( "glNormal3b", " not available." );
  1048. }
  1049. static void REGAL_CALL glNormal3bv(const GLbyte *v)
  1050. {
  1051. UNUSED_PARAMETER(v);
  1052. Warning( "glNormal3bv", " not available." );
  1053. }
  1054. static void REGAL_CALL glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz)
  1055. {
  1056. UNUSED_PARAMETER(nx);
  1057. UNUSED_PARAMETER(ny);
  1058. UNUSED_PARAMETER(nz);
  1059. Warning( "glNormal3d", " not available." );
  1060. }
  1061. static void REGAL_CALL glNormal3dv(const GLdouble *v)
  1062. {
  1063. UNUSED_PARAMETER(v);
  1064. Warning( "glNormal3dv", " not available." );
  1065. }
  1066. static void REGAL_CALL glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz)
  1067. {
  1068. UNUSED_PARAMETER(nx);
  1069. UNUSED_PARAMETER(ny);
  1070. UNUSED_PARAMETER(nz);
  1071. Warning( "glNormal3f", " not available." );
  1072. }
  1073. static void REGAL_CALL glNormal3fv(const GLfloat *v)
  1074. {
  1075. UNUSED_PARAMETER(v);
  1076. Warning( "glNormal3fv", " not available." );
  1077. }
  1078. static void REGAL_CALL glNormal3i(GLint nx, GLint ny, GLint nz)
  1079. {
  1080. UNUSED_PARAMETER(nx);
  1081. UNUSED_PARAMETER(ny);
  1082. UNUSED_PARAMETER(nz);
  1083. Warning( "glNormal3i", " not available." );
  1084. }
  1085. static void REGAL_CALL glNormal3iv(const GLint *v)
  1086. {
  1087. UNUSED_PARAMETER(v);
  1088. Warning( "glNormal3iv", " not available." );
  1089. }
  1090. static void REGAL_CALL glNormal3s(GLshort nx, GLshort ny, GLshort nz)
  1091. {
  1092. UNUSED_PARAMETER(nx);
  1093. UNUSED_PARAMETER(ny);
  1094. UNUSED_PARAMETER(nz);
  1095. Warning( "glNormal3s", " not available." );
  1096. }
  1097. static void REGAL_CALL glNormal3sv(const GLshort *v)
  1098. {
  1099. UNUSED_PARAMETER(v);
  1100. Warning( "glNormal3sv", " not available." );
  1101. }
  1102. static void REGAL_CALL glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
  1103. {
  1104. UNUSED_PARAMETER(left);
  1105. UNUSED_PARAMETER(right);
  1106. UNUSED_PARAMETER(bottom);
  1107. UNUSED_PARAMETER(top);
  1108. UNUSED_PARAMETER(zNear);
  1109. UNUSED_PARAMETER(zFar);
  1110. Warning( "glOrtho", " not available." );
  1111. }
  1112. static void REGAL_CALL glPassThrough(GLfloat token)
  1113. {
  1114. UNUSED_PARAMETER(token);
  1115. Warning( "glPassThrough", " not available." );
  1116. }
  1117. static void REGAL_CALL glPixelMapfv(GLenum map, GLsizei mapsize, const GLfloat *values)
  1118. {
  1119. UNUSED_PARAMETER(map);
  1120. UNUSED_PARAMETER(mapsize);
  1121. UNUSED_PARAMETER(values);
  1122. Warning( "glPixelMapfv", " not available." );
  1123. }
  1124. static void REGAL_CALL glPixelMapuiv(GLenum map, GLsizei mapsize, const GLuint *values)
  1125. {
  1126. UNUSED_PARAMETER(map);
  1127. UNUSED_PARAMETER(mapsize);
  1128. UNUSED_PARAMETER(values);
  1129. Warning( "glPixelMapuiv", " not available." );
  1130. }
  1131. static void REGAL_CALL glPixelMapusv(GLenum map, GLsizei mapsize, const GLushort *values)
  1132. {
  1133. UNUSED_PARAMETER(map);
  1134. UNUSED_PARAMETER(mapsize);
  1135. UNUSED_PARAMETER(values);
  1136. Warning( "glPixelMapusv", " not available." );
  1137. }
  1138. static void REGAL_CALL glPixelStoref(GLenum pname, GLfloat param)
  1139. {
  1140. UNUSED_PARAMETER(pname);
  1141. UNUSED_PARAMETER(param);
  1142. Warning( "glPixelStoref", " not available." );
  1143. }
  1144. static void REGAL_CALL glPixelStorei(GLenum pname, GLint param)
  1145. {
  1146. UNUSED_PARAMETER(pname);
  1147. UNUSED_PARAMETER(param);
  1148. Warning( "glPixelStorei", " not available." );
  1149. }
  1150. static void REGAL_CALL glPixelTransferf(GLenum pname, GLfloat param)
  1151. {
  1152. UNUSED_PARAMETER(pname);
  1153. UNUSED_PARAMETER(param);
  1154. Warning( "glPixelTransferf", " not available." );
  1155. }
  1156. static void REGAL_CALL glPixelTransferi(GLenum pname, GLint param)
  1157. {
  1158. UNUSED_PARAMETER(pname);
  1159. UNUSED_PARAMETER(param);
  1160. Warning( "glPixelTransferi", " not available." );
  1161. }
  1162. static void REGAL_CALL glPixelZoom(GLfloat xfactor, GLfloat yfactor)
  1163. {
  1164. UNUSED_PARAMETER(xfactor);
  1165. UNUSED_PARAMETER(yfactor);
  1166. Warning( "glPixelZoom", " not available." );
  1167. }
  1168. static void REGAL_CALL glPointSize(GLfloat size)
  1169. {
  1170. UNUSED_PARAMETER(size);
  1171. Warning( "glPointSize", " not available." );
  1172. }
  1173. static void REGAL_CALL glPolygonMode(GLenum face, GLenum mode)
  1174. {
  1175. UNUSED_PARAMETER(face);
  1176. UNUSED_PARAMETER(mode);
  1177. Warning( "glPolygonMode", " not available." );
  1178. }
  1179. static void REGAL_CALL glPolygonStipple(const GLubyte *mask)
  1180. {
  1181. UNUSED_PARAMETER(mask);
  1182. Warning( "glPolygonStipple", " not available." );
  1183. }
  1184. static void REGAL_CALL glPopAttrib(void)
  1185. {
  1186. Warning( "glPopAttrib", " not available." );
  1187. }
  1188. static void REGAL_CALL glPopMatrix(void)
  1189. {
  1190. Warning( "glPopMatrix", " not available." );
  1191. }
  1192. static void REGAL_CALL glPopName(void)
  1193. {
  1194. Warning( "glPopName", " not available." );
  1195. }
  1196. static void REGAL_CALL glPushAttrib(GLbitfield mask)
  1197. {
  1198. UNUSED_PARAMETER(mask);
  1199. Warning( "glPushAttrib", " not available." );
  1200. }
  1201. static void REGAL_CALL glPushMatrix(void)
  1202. {
  1203. Warning( "glPushMatrix", " not available." );
  1204. }
  1205. static void REGAL_CALL glPushName(GLuint name)
  1206. {
  1207. UNUSED_PARAMETER(name);
  1208. Warning( "glPushName", " not available." );
  1209. }
  1210. static void REGAL_CALL glRasterPos2d(GLdouble x, GLdouble y)
  1211. {
  1212. UNUSED_PARAMETER(x);
  1213. UNUSED_PARAMETER(y);
  1214. Warning( "glRasterPos2d", " not available." );
  1215. }
  1216. static void REGAL_CALL glRasterPos2dv(const GLdouble *v)
  1217. {
  1218. UNUSED_PARAMETER(v);
  1219. Warning( "glRasterPos2dv", " not available." );
  1220. }
  1221. static void REGAL_CALL glRasterPos2f(GLfloat x, GLfloat y)
  1222. {
  1223. UNUSED_PARAMETER(x);
  1224. UNUSED_PARAMETER(y);
  1225. Warning( "glRasterPos2f", " not available." );
  1226. }
  1227. static void REGAL_CALL glRasterPos2fv(const GLfloat *v)
  1228. {
  1229. UNUSED_PARAMETER(v);
  1230. Warning( "glRasterPos2fv", " not available." );
  1231. }
  1232. static void REGAL_CALL glRasterPos2i(GLint x, GLint y)
  1233. {
  1234. UNUSED_PARAMETER(x);
  1235. UNUSED_PARAMETER(y);
  1236. Warning( "glRasterPos2i", " not available." );
  1237. }
  1238. static void REGAL_CALL glRasterPos2iv(const GLint *v)
  1239. {
  1240. UNUSED_PARAMETER(v);
  1241. Warning( "glRasterPos2iv", " not available." );
  1242. }
  1243. static void REGAL_CALL glRasterPos2s(GLshort x, GLshort y)
  1244. {
  1245. UNUSED_PARAMETER(x);
  1246. UNUSED_PARAMETER(y);
  1247. Warning( "glRasterPos2s", " not available." );
  1248. }
  1249. static void REGAL_CALL glRasterPos2sv(const GLshort *v)
  1250. {
  1251. UNUSED_PARAMETER(v);
  1252. Warning( "glRasterPos2sv", " not available." );
  1253. }
  1254. static void REGAL_CALL glRasterPos3d(GLdouble x, GLdouble y, GLdouble z)
  1255. {
  1256. UNUSED_PARAMETER(x);
  1257. UNUSED_PARAMETER(y);
  1258. UNUSED_PARAMETER(z);
  1259. Warning( "glRasterPos3d", " not available." );
  1260. }
  1261. static void REGAL_CALL glRasterPos3dv(const GLdouble *v)
  1262. {
  1263. UNUSED_PARAMETER(v);
  1264. Warning( "glRasterPos3dv", " not available." );
  1265. }
  1266. static void REGAL_CALL glRasterPos3f(GLfloat x, GLfloat y, GLfloat z)
  1267. {
  1268. UNUSED_PARAMETER(x);
  1269. UNUSED_PARAMETER(y);
  1270. UNUSED_PARAMETER(z);
  1271. Warning( "glRasterPos3f", " not available." );
  1272. }
  1273. static void REGAL_CALL glRasterPos3fv(const GLfloat *v)
  1274. {
  1275. UNUSED_PARAMETER(v);
  1276. Warning( "glRasterPos3fv", " not available." );
  1277. }
  1278. static void REGAL_CALL glRasterPos3i(GLint x, GLint y, GLint z)
  1279. {
  1280. UNUSED_PARAMETER(x);
  1281. UNUSED_PARAMETER(y);
  1282. UNUSED_PARAMETER(z);
  1283. Warning( "glRasterPos3i", " not available." );
  1284. }
  1285. static void REGAL_CALL glRasterPos3iv(const GLint *v)
  1286. {
  1287. UNUSED_PARAMETER(v);
  1288. Warning( "glRasterPos3iv", " not available." );
  1289. }
  1290. static void REGAL_CALL glRasterPos3s(GLshort x, GLshort y, GLshort z)
  1291. {
  1292. UNUSED_PARAMETER(x);
  1293. UNUSED_PARAMETER(y);
  1294. UNUSED_PARAMETER(z);
  1295. Warning( "glRasterPos3s", " not available." );
  1296. }
  1297. static void REGAL_CALL glRasterPos3sv(const GLshort *v)
  1298. {
  1299. UNUSED_PARAMETER(v);
  1300. Warning( "glRasterPos3sv", " not available." );
  1301. }
  1302. static void REGAL_CALL glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  1303. {
  1304. UNUSED_PARAMETER(x);
  1305. UNUSED_PARAMETER(y);
  1306. UNUSED_PARAMETER(z);
  1307. UNUSED_PARAMETER(w);
  1308. Warning( "glRasterPos4d", " not available." );
  1309. }
  1310. static void REGAL_CALL glRasterPos4dv(const GLdouble *v)
  1311. {
  1312. UNUSED_PARAMETER(v);
  1313. Warning( "glRasterPos4dv", " not available." );
  1314. }
  1315. static void REGAL_CALL glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  1316. {
  1317. UNUSED_PARAMETER(x);
  1318. UNUSED_PARAMETER(y);
  1319. UNUSED_PARAMETER(z);
  1320. UNUSED_PARAMETER(w);
  1321. Warning( "glRasterPos4f", " not available." );
  1322. }
  1323. static void REGAL_CALL glRasterPos4fv(const GLfloat *v)
  1324. {
  1325. UNUSED_PARAMETER(v);
  1326. Warning( "glRasterPos4fv", " not available." );
  1327. }
  1328. static void REGAL_CALL glRasterPos4i(GLint x, GLint y, GLint z, GLint w)
  1329. {
  1330. UNUSED_PARAMETER(x);
  1331. UNUSED_PARAMETER(y);
  1332. UNUSED_PARAMETER(z);
  1333. UNUSED_PARAMETER(w);
  1334. Warning( "glRasterPos4i", " not available." );
  1335. }
  1336. static void REGAL_CALL glRasterPos4iv(const GLint *v)
  1337. {
  1338. UNUSED_PARAMETER(v);
  1339. Warning( "glRasterPos4iv", " not available." );
  1340. }
  1341. static void REGAL_CALL glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w)
  1342. {
  1343. UNUSED_PARAMETER(x);
  1344. UNUSED_PARAMETER(y);
  1345. UNUSED_PARAMETER(z);
  1346. UNUSED_PARAMETER(w);
  1347. Warning( "glRasterPos4s", " not available." );
  1348. }
  1349. static void REGAL_CALL glRasterPos4sv(const GLshort *v)
  1350. {
  1351. UNUSED_PARAMETER(v);
  1352. Warning( "glRasterPos4sv", " not available." );
  1353. }
  1354. static void REGAL_CALL glReadBuffer(GLenum mode)
  1355. {
  1356. UNUSED_PARAMETER(mode);
  1357. Warning( "glReadBuffer", " not available." );
  1358. }
  1359. static void REGAL_CALL glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels)
  1360. {
  1361. UNUSED_PARAMETER(x);
  1362. UNUSED_PARAMETER(y);
  1363. UNUSED_PARAMETER(width);
  1364. UNUSED_PARAMETER(height);
  1365. UNUSED_PARAMETER(format);
  1366. UNUSED_PARAMETER(type);
  1367. UNUSED_PARAMETER(pixels);
  1368. Warning( "glReadPixels", " not available." );
  1369. }
  1370. static void REGAL_CALL glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2)
  1371. {
  1372. UNUSED_PARAMETER(x1);
  1373. UNUSED_PARAMETER(y1);
  1374. UNUSED_PARAMETER(x2);
  1375. UNUSED_PARAMETER(y2);
  1376. Warning( "glRectd", " not available." );
  1377. }
  1378. static void REGAL_CALL glRectdv(const GLdouble *v1, const GLdouble *v2)
  1379. {
  1380. UNUSED_PARAMETER(v1);
  1381. UNUSED_PARAMETER(v2);
  1382. Warning( "glRectdv", " not available." );
  1383. }
  1384. static void REGAL_CALL glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
  1385. {
  1386. UNUSED_PARAMETER(x1);
  1387. UNUSED_PARAMETER(y1);
  1388. UNUSED_PARAMETER(x2);
  1389. UNUSED_PARAMETER(y2);
  1390. Warning( "glRectf", " not available." );
  1391. }
  1392. static void REGAL_CALL glRectfv(const GLfloat *v1, const GLfloat *v2)
  1393. {
  1394. UNUSED_PARAMETER(v1);
  1395. UNUSED_PARAMETER(v2);
  1396. Warning( "glRectfv", " not available." );
  1397. }
  1398. static void REGAL_CALL glRecti(GLint x1, GLint y1, GLint x2, GLint y2)
  1399. {
  1400. UNUSED_PARAMETER(x1);
  1401. UNUSED_PARAMETER(y1);
  1402. UNUSED_PARAMETER(x2);
  1403. UNUSED_PARAMETER(y2);
  1404. Warning( "glRecti", " not available." );
  1405. }
  1406. static void REGAL_CALL glRectiv(const GLint *v1, const GLint *v2)
  1407. {
  1408. UNUSED_PARAMETER(v1);
  1409. UNUSED_PARAMETER(v2);
  1410. Warning( "glRectiv", " not available." );
  1411. }
  1412. static void REGAL_CALL glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2)
  1413. {
  1414. UNUSED_PARAMETER(x1);
  1415. UNUSED_PARAMETER(y1);
  1416. UNUSED_PARAMETER(x2);
  1417. UNUSED_PARAMETER(y2);
  1418. Warning( "glRects", " not available." );
  1419. }
  1420. static void REGAL_CALL glRectsv(const GLshort *v1, const GLshort *v2)
  1421. {
  1422. UNUSED_PARAMETER(v1);
  1423. UNUSED_PARAMETER(v2);
  1424. Warning( "glRectsv", " not available." );
  1425. }
  1426. static GLint REGAL_CALL glRenderMode(GLenum mode)
  1427. {
  1428. UNUSED_PARAMETER(mode);
  1429. Warning( "glRenderMode", " not available." );
  1430. return 0;
  1431. }
  1432. static void REGAL_CALL glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z)
  1433. {
  1434. UNUSED_PARAMETER(angle);
  1435. UNUSED_PARAMETER(x);
  1436. UNUSED_PARAMETER(y);
  1437. UNUSED_PARAMETER(z);
  1438. Warning( "glRotated", " not available." );
  1439. }
  1440. static void REGAL_CALL glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
  1441. {
  1442. UNUSED_PARAMETER(angle);
  1443. UNUSED_PARAMETER(x);
  1444. UNUSED_PARAMETER(y);
  1445. UNUSED_PARAMETER(z);
  1446. Warning( "glRotatef", " not available." );
  1447. }
  1448. static void REGAL_CALL glScaled(GLdouble x, GLdouble y, GLdouble z)
  1449. {
  1450. UNUSED_PARAMETER(x);
  1451. UNUSED_PARAMETER(y);
  1452. UNUSED_PARAMETER(z);
  1453. Warning( "glScaled", " not available." );
  1454. }
  1455. static void REGAL_CALL glScalef(GLfloat x, GLfloat y, GLfloat z)
  1456. {
  1457. UNUSED_PARAMETER(x);
  1458. UNUSED_PARAMETER(y);
  1459. UNUSED_PARAMETER(z);
  1460. Warning( "glScalef", " not available." );
  1461. }
  1462. static void REGAL_CALL glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
  1463. {
  1464. UNUSED_PARAMETER(x);
  1465. UNUSED_PARAMETER(y);
  1466. UNUSED_PARAMETER(width);
  1467. UNUSED_PARAMETER(height);
  1468. Warning( "glScissor", " not available." );
  1469. }
  1470. static void REGAL_CALL glSelectBuffer(GLsizei size, GLuint *buffer)
  1471. {
  1472. UNUSED_PARAMETER(size);
  1473. UNUSED_PARAMETER(buffer);
  1474. Warning( "glSelectBuffer", " not available." );
  1475. }
  1476. static void REGAL_CALL glShadeModel(GLenum mode)
  1477. {
  1478. UNUSED_PARAMETER(mode);
  1479. Warning( "glShadeModel", " not available." );
  1480. }
  1481. static void REGAL_CALL glStencilFunc(GLenum func, GLint ref, GLuint mask)
  1482. {
  1483. UNUSED_PARAMETER(func);
  1484. UNUSED_PARAMETER(ref);
  1485. UNUSED_PARAMETER(mask);
  1486. Warning( "glStencilFunc", " not available." );
  1487. }
  1488. static void REGAL_CALL glStencilMask(GLuint mask)
  1489. {
  1490. UNUSED_PARAMETER(mask);
  1491. Warning( "glStencilMask", " not available." );
  1492. }
  1493. static void REGAL_CALL glStencilOp(GLenum fail, GLenum zfail, GLenum zpass)
  1494. {
  1495. UNUSED_PARAMETER(fail);
  1496. UNUSED_PARAMETER(zfail);
  1497. UNUSED_PARAMETER(zpass);
  1498. Warning( "glStencilOp", " not available." );
  1499. }
  1500. static void REGAL_CALL glTexCoord1d(GLdouble s)
  1501. {
  1502. UNUSED_PARAMETER(s);
  1503. Warning( "glTexCoord1d", " not available." );
  1504. }
  1505. static void REGAL_CALL glTexCoord1dv(const GLdouble *v)
  1506. {
  1507. UNUSED_PARAMETER(v);
  1508. Warning( "glTexCoord1dv", " not available." );
  1509. }
  1510. static void REGAL_CALL glTexCoord1f(GLfloat s)
  1511. {
  1512. UNUSED_PARAMETER(s);
  1513. Warning( "glTexCoord1f", " not available." );
  1514. }
  1515. static void REGAL_CALL glTexCoord1fv(const GLfloat *v)
  1516. {
  1517. UNUSED_PARAMETER(v);
  1518. Warning( "glTexCoord1fv", " not available." );
  1519. }
  1520. static void REGAL_CALL glTexCoord1i(GLint s)
  1521. {
  1522. UNUSED_PARAMETER(s);
  1523. Warning( "glTexCoord1i", " not available." );
  1524. }
  1525. static void REGAL_CALL glTexCoord1iv(const GLint *v)
  1526. {
  1527. UNUSED_PARAMETER(v);
  1528. Warning( "glTexCoord1iv", " not available." );
  1529. }
  1530. static void REGAL_CALL glTexCoord1s(GLshort s)
  1531. {
  1532. UNUSED_PARAMETER(s);
  1533. Warning( "glTexCoord1s", " not available." );
  1534. }
  1535. static void REGAL_CALL glTexCoord1sv(const GLshort *v)
  1536. {
  1537. UNUSED_PARAMETER(v);
  1538. Warning( "glTexCoord1sv", " not available." );
  1539. }
  1540. static void REGAL_CALL glTexCoord2d(GLdouble s, GLdouble t)
  1541. {
  1542. UNUSED_PARAMETER(s);
  1543. UNUSED_PARAMETER(t);
  1544. Warning( "glTexCoord2d", " not available." );
  1545. }
  1546. static void REGAL_CALL glTexCoord2dv(const GLdouble *v)
  1547. {
  1548. UNUSED_PARAMETER(v);
  1549. Warning( "glTexCoord2dv", " not available." );
  1550. }
  1551. static void REGAL_CALL glTexCoord2f(GLfloat s, GLfloat t)
  1552. {
  1553. UNUSED_PARAMETER(s);
  1554. UNUSED_PARAMETER(t);
  1555. Warning( "glTexCoord2f", " not available." );
  1556. }
  1557. static void REGAL_CALL glTexCoord2fv(const GLfloat *v)
  1558. {
  1559. UNUSED_PARAMETER(v);
  1560. Warning( "glTexCoord2fv", " not available." );
  1561. }
  1562. static void REGAL_CALL glTexCoord2i(GLint s, GLint t)
  1563. {
  1564. UNUSED_PARAMETER(s);
  1565. UNUSED_PARAMETER(t);
  1566. Warning( "glTexCoord2i", " not available." );
  1567. }
  1568. static void REGAL_CALL glTexCoord2iv(const GLint *v)
  1569. {
  1570. UNUSED_PARAMETER(v);
  1571. Warning( "glTexCoord2iv", " not available." );
  1572. }
  1573. static void REGAL_CALL glTexCoord2s(GLshort s, GLshort t)
  1574. {
  1575. UNUSED_PARAMETER(s);
  1576. UNUSED_PARAMETER(t);
  1577. Warning( "glTexCoord2s", " not available." );
  1578. }
  1579. static void REGAL_CALL glTexCoord2sv(const GLshort *v)
  1580. {
  1581. UNUSED_PARAMETER(v);
  1582. Warning( "glTexCoord2sv", " not available." );
  1583. }
  1584. static void REGAL_CALL glTexCoord3d(GLdouble s, GLdouble t, GLdouble r)
  1585. {
  1586. UNUSED_PARAMETER(s);
  1587. UNUSED_PARAMETER(t);
  1588. UNUSED_PARAMETER(r);
  1589. Warning( "glTexCoord3d", " not available." );
  1590. }
  1591. static void REGAL_CALL glTexCoord3dv(const GLdouble *v)
  1592. {
  1593. UNUSED_PARAMETER(v);
  1594. Warning( "glTexCoord3dv", " not available." );
  1595. }
  1596. static void REGAL_CALL glTexCoord3f(GLfloat s, GLfloat t, GLfloat r)
  1597. {
  1598. UNUSED_PARAMETER(s);
  1599. UNUSED_PARAMETER(t);
  1600. UNUSED_PARAMETER(r);
  1601. Warning( "glTexCoord3f", " not available." );
  1602. }
  1603. static void REGAL_CALL glTexCoord3fv(const GLfloat *v)
  1604. {
  1605. UNUSED_PARAMETER(v);
  1606. Warning( "glTexCoord3fv", " not available." );
  1607. }
  1608. static void REGAL_CALL glTexCoord3i(GLint s, GLint t, GLint r)
  1609. {
  1610. UNUSED_PARAMETER(s);
  1611. UNUSED_PARAMETER(t);
  1612. UNUSED_PARAMETER(r);
  1613. Warning( "glTexCoord3i", " not available." );
  1614. }
  1615. static void REGAL_CALL glTexCoord3iv(const GLint *v)
  1616. {
  1617. UNUSED_PARAMETER(v);
  1618. Warning( "glTexCoord3iv", " not available." );
  1619. }
  1620. static void REGAL_CALL glTexCoord3s(GLshort s, GLshort t, GLshort r)
  1621. {
  1622. UNUSED_PARAMETER(s);
  1623. UNUSED_PARAMETER(t);
  1624. UNUSED_PARAMETER(r);
  1625. Warning( "glTexCoord3s", " not available." );
  1626. }
  1627. static void REGAL_CALL glTexCoord3sv(const GLshort *v)
  1628. {
  1629. UNUSED_PARAMETER(v);
  1630. Warning( "glTexCoord3sv", " not available." );
  1631. }
  1632. static void REGAL_CALL glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q)
  1633. {
  1634. UNUSED_PARAMETER(s);
  1635. UNUSED_PARAMETER(t);
  1636. UNUSED_PARAMETER(r);
  1637. UNUSED_PARAMETER(q);
  1638. Warning( "glTexCoord4d", " not available." );
  1639. }
  1640. static void REGAL_CALL glTexCoord4dv(const GLdouble *v)
  1641. {
  1642. UNUSED_PARAMETER(v);
  1643. Warning( "glTexCoord4dv", " not available." );
  1644. }
  1645. static void REGAL_CALL glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q)
  1646. {
  1647. UNUSED_PARAMETER(s);
  1648. UNUSED_PARAMETER(t);
  1649. UNUSED_PARAMETER(r);
  1650. UNUSED_PARAMETER(q);
  1651. Warning( "glTexCoord4f", " not available." );
  1652. }
  1653. static void REGAL_CALL glTexCoord4fv(const GLfloat *v)
  1654. {
  1655. UNUSED_PARAMETER(v);
  1656. Warning( "glTexCoord4fv", " not available." );
  1657. }
  1658. static void REGAL_CALL glTexCoord4i(GLint s, GLint t, GLint r, GLint q)
  1659. {
  1660. UNUSED_PARAMETER(s);
  1661. UNUSED_PARAMETER(t);
  1662. UNUSED_PARAMETER(r);
  1663. UNUSED_PARAMETER(q);
  1664. Warning( "glTexCoord4i", " not available." );
  1665. }
  1666. static void REGAL_CALL glTexCoord4iv(const GLint *v)
  1667. {
  1668. UNUSED_PARAMETER(v);
  1669. Warning( "glTexCoord4iv", " not available." );
  1670. }
  1671. static void REGAL_CALL glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q)
  1672. {
  1673. UNUSED_PARAMETER(s);
  1674. UNUSED_PARAMETER(t);
  1675. UNUSED_PARAMETER(r);
  1676. UNUSED_PARAMETER(q);
  1677. Warning( "glTexCoord4s", " not available." );
  1678. }
  1679. static void REGAL_CALL glTexCoord4sv(const GLshort *v)
  1680. {
  1681. UNUSED_PARAMETER(v);
  1682. Warning( "glTexCoord4sv", " not available." );
  1683. }
  1684. static void REGAL_CALL glTexEnvf(GLenum target, GLenum pname, GLfloat param)
  1685. {
  1686. UNUSED_PARAMETER(target);
  1687. UNUSED_PARAMETER(pname);
  1688. UNUSED_PARAMETER(param);
  1689. Warning( "glTexEnvf", " not available." );
  1690. }
  1691. static void REGAL_CALL glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params)
  1692. {
  1693. UNUSED_PARAMETER(target);
  1694. UNUSED_PARAMETER(pname);
  1695. UNUSED_PARAMETER(params);
  1696. Warning( "glTexEnvfv", " not available." );
  1697. }
  1698. static void REGAL_CALL glTexEnvi(GLenum target, GLenum pname, GLint param)
  1699. {
  1700. UNUSED_PARAMETER(target);
  1701. UNUSED_PARAMETER(pname);
  1702. UNUSED_PARAMETER(param);
  1703. Warning( "glTexEnvi", " not available." );
  1704. }
  1705. static void REGAL_CALL glTexEnviv(GLenum target, GLenum pname, const GLint *params)
  1706. {
  1707. UNUSED_PARAMETER(target);
  1708. UNUSED_PARAMETER(pname);
  1709. UNUSED_PARAMETER(params);
  1710. Warning( "glTexEnviv", " not available." );
  1711. }
  1712. static void REGAL_CALL glTexGend(GLenum coord, GLenum pname, GLdouble param)
  1713. {
  1714. UNUSED_PARAMETER(coord);
  1715. UNUSED_PARAMETER(pname);
  1716. UNUSED_PARAMETER(param);
  1717. Warning( "glTexGend", " not available." );
  1718. }
  1719. static void REGAL_CALL glTexGendv(GLenum coord, GLenum pname, const GLdouble *params)
  1720. {
  1721. UNUSED_PARAMETER(coord);
  1722. UNUSED_PARAMETER(pname);
  1723. UNUSED_PARAMETER(params);
  1724. Warning( "glTexGendv", " not available." );
  1725. }
  1726. static void REGAL_CALL glTexGenf(GLenum coord, GLenum pname, GLfloat param)
  1727. {
  1728. UNUSED_PARAMETER(coord);
  1729. UNUSED_PARAMETER(pname);
  1730. UNUSED_PARAMETER(param);
  1731. Warning( "glTexGenf", " not available." );
  1732. }
  1733. static void REGAL_CALL glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params)
  1734. {
  1735. UNUSED_PARAMETER(coord);
  1736. UNUSED_PARAMETER(pname);
  1737. UNUSED_PARAMETER(params);
  1738. Warning( "glTexGenfv", " not available." );
  1739. }
  1740. static void REGAL_CALL glTexGeni(GLenum coord, GLenum pname, GLint param)
  1741. {
  1742. UNUSED_PARAMETER(coord);
  1743. UNUSED_PARAMETER(pname);
  1744. UNUSED_PARAMETER(param);
  1745. Warning( "glTexGeni", " not available." );
  1746. }
  1747. static void REGAL_CALL glTexGeniv(GLenum coord, GLenum pname, const GLint *params)
  1748. {
  1749. UNUSED_PARAMETER(coord);
  1750. UNUSED_PARAMETER(pname);
  1751. UNUSED_PARAMETER(params);
  1752. Warning( "glTexGeniv", " not available." );
  1753. }
  1754. static void REGAL_CALL glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  1755. {
  1756. UNUSED_PARAMETER(target);
  1757. UNUSED_PARAMETER(level);
  1758. UNUSED_PARAMETER(internalformat);
  1759. UNUSED_PARAMETER(width);
  1760. UNUSED_PARAMETER(border);
  1761. UNUSED_PARAMETER(format);
  1762. UNUSED_PARAMETER(type);
  1763. UNUSED_PARAMETER(pixels);
  1764. Warning( "glTexImage1D", " not available." );
  1765. }
  1766. static void REGAL_CALL glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  1767. {
  1768. UNUSED_PARAMETER(target);
  1769. UNUSED_PARAMETER(level);
  1770. UNUSED_PARAMETER(internalformat);
  1771. UNUSED_PARAMETER(width);
  1772. UNUSED_PARAMETER(height);
  1773. UNUSED_PARAMETER(border);
  1774. UNUSED_PARAMETER(format);
  1775. UNUSED_PARAMETER(type);
  1776. UNUSED_PARAMETER(pixels);
  1777. Warning( "glTexImage2D", " not available." );
  1778. }
  1779. static void REGAL_CALL glTexParameterf(GLenum target, GLenum pname, GLfloat param)
  1780. {
  1781. UNUSED_PARAMETER(target);
  1782. UNUSED_PARAMETER(pname);
  1783. UNUSED_PARAMETER(param);
  1784. Warning( "glTexParameterf", " not available." );
  1785. }
  1786. static void REGAL_CALL glTexParameterfv(GLenum target, GLenum pname, const GLfloat *params)
  1787. {
  1788. UNUSED_PARAMETER(target);
  1789. UNUSED_PARAMETER(pname);
  1790. UNUSED_PARAMETER(params);
  1791. Warning( "glTexParameterfv", " not available." );
  1792. }
  1793. static void REGAL_CALL glTexParameteri(GLenum target, GLenum pname, GLint param)
  1794. {
  1795. UNUSED_PARAMETER(target);
  1796. UNUSED_PARAMETER(pname);
  1797. UNUSED_PARAMETER(param);
  1798. Warning( "glTexParameteri", " not available." );
  1799. }
  1800. static void REGAL_CALL glTexParameteriv(GLenum target, GLenum pname, const GLint *params)
  1801. {
  1802. UNUSED_PARAMETER(target);
  1803. UNUSED_PARAMETER(pname);
  1804. UNUSED_PARAMETER(params);
  1805. Warning( "glTexParameteriv", " not available." );
  1806. }
  1807. static void REGAL_CALL glTranslated(GLdouble x, GLdouble y, GLdouble z)
  1808. {
  1809. UNUSED_PARAMETER(x);
  1810. UNUSED_PARAMETER(y);
  1811. UNUSED_PARAMETER(z);
  1812. Warning( "glTranslated", " not available." );
  1813. }
  1814. static void REGAL_CALL glTranslatef(GLfloat x, GLfloat y, GLfloat z)
  1815. {
  1816. UNUSED_PARAMETER(x);
  1817. UNUSED_PARAMETER(y);
  1818. UNUSED_PARAMETER(z);
  1819. Warning( "glTranslatef", " not available." );
  1820. }
  1821. static void REGAL_CALL glVertex2d(GLdouble x, GLdouble y)
  1822. {
  1823. UNUSED_PARAMETER(x);
  1824. UNUSED_PARAMETER(y);
  1825. Warning( "glVertex2d", " not available." );
  1826. }
  1827. static void REGAL_CALL glVertex2dv(const GLdouble *v)
  1828. {
  1829. UNUSED_PARAMETER(v);
  1830. Warning( "glVertex2dv", " not available." );
  1831. }
  1832. static void REGAL_CALL glVertex2f(GLfloat x, GLfloat y)
  1833. {
  1834. UNUSED_PARAMETER(x);
  1835. UNUSED_PARAMETER(y);
  1836. Warning( "glVertex2f", " not available." );
  1837. }
  1838. static void REGAL_CALL glVertex2fv(const GLfloat *v)
  1839. {
  1840. UNUSED_PARAMETER(v);
  1841. Warning( "glVertex2fv", " not available." );
  1842. }
  1843. static void REGAL_CALL glVertex2i(GLint x, GLint y)
  1844. {
  1845. UNUSED_PARAMETER(x);
  1846. UNUSED_PARAMETER(y);
  1847. Warning( "glVertex2i", " not available." );
  1848. }
  1849. static void REGAL_CALL glVertex2iv(const GLint *v)
  1850. {
  1851. UNUSED_PARAMETER(v);
  1852. Warning( "glVertex2iv", " not available." );
  1853. }
  1854. static void REGAL_CALL glVertex2s(GLshort x, GLshort y)
  1855. {
  1856. UNUSED_PARAMETER(x);
  1857. UNUSED_PARAMETER(y);
  1858. Warning( "glVertex2s", " not available." );
  1859. }
  1860. static void REGAL_CALL glVertex2sv(const GLshort *v)
  1861. {
  1862. UNUSED_PARAMETER(v);
  1863. Warning( "glVertex2sv", " not available." );
  1864. }
  1865. static void REGAL_CALL glVertex3d(GLdouble x, GLdouble y, GLdouble z)
  1866. {
  1867. UNUSED_PARAMETER(x);
  1868. UNUSED_PARAMETER(y);
  1869. UNUSED_PARAMETER(z);
  1870. Warning( "glVertex3d", " not available." );
  1871. }
  1872. static void REGAL_CALL glVertex3dv(const GLdouble *v)
  1873. {
  1874. UNUSED_PARAMETER(v);
  1875. Warning( "glVertex3dv", " not available." );
  1876. }
  1877. static void REGAL_CALL glVertex3f(GLfloat x, GLfloat y, GLfloat z)
  1878. {
  1879. UNUSED_PARAMETER(x);
  1880. UNUSED_PARAMETER(y);
  1881. UNUSED_PARAMETER(z);
  1882. Warning( "glVertex3f", " not available." );
  1883. }
  1884. static void REGAL_CALL glVertex3fv(const GLfloat *v)
  1885. {
  1886. UNUSED_PARAMETER(v);
  1887. Warning( "glVertex3fv", " not available." );
  1888. }
  1889. static void REGAL_CALL glVertex3i(GLint x, GLint y, GLint z)
  1890. {
  1891. UNUSED_PARAMETER(x);
  1892. UNUSED_PARAMETER(y);
  1893. UNUSED_PARAMETER(z);
  1894. Warning( "glVertex3i", " not available." );
  1895. }
  1896. static void REGAL_CALL glVertex3iv(const GLint *v)
  1897. {
  1898. UNUSED_PARAMETER(v);
  1899. Warning( "glVertex3iv", " not available." );
  1900. }
  1901. static void REGAL_CALL glVertex3s(GLshort x, GLshort y, GLshort z)
  1902. {
  1903. UNUSED_PARAMETER(x);
  1904. UNUSED_PARAMETER(y);
  1905. UNUSED_PARAMETER(z);
  1906. Warning( "glVertex3s", " not available." );
  1907. }
  1908. static void REGAL_CALL glVertex3sv(const GLshort *v)
  1909. {
  1910. UNUSED_PARAMETER(v);
  1911. Warning( "glVertex3sv", " not available." );
  1912. }
  1913. static void REGAL_CALL glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  1914. {
  1915. UNUSED_PARAMETER(x);
  1916. UNUSED_PARAMETER(y);
  1917. UNUSED_PARAMETER(z);
  1918. UNUSED_PARAMETER(w);
  1919. Warning( "glVertex4d", " not available." );
  1920. }
  1921. static void REGAL_CALL glVertex4dv(const GLdouble *v)
  1922. {
  1923. UNUSED_PARAMETER(v);
  1924. Warning( "glVertex4dv", " not available." );
  1925. }
  1926. static void REGAL_CALL glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  1927. {
  1928. UNUSED_PARAMETER(x);
  1929. UNUSED_PARAMETER(y);
  1930. UNUSED_PARAMETER(z);
  1931. UNUSED_PARAMETER(w);
  1932. Warning( "glVertex4f", " not available." );
  1933. }
  1934. static void REGAL_CALL glVertex4fv(const GLfloat *v)
  1935. {
  1936. UNUSED_PARAMETER(v);
  1937. Warning( "glVertex4fv", " not available." );
  1938. }
  1939. static void REGAL_CALL glVertex4i(GLint x, GLint y, GLint z, GLint w)
  1940. {
  1941. UNUSED_PARAMETER(x);
  1942. UNUSED_PARAMETER(y);
  1943. UNUSED_PARAMETER(z);
  1944. UNUSED_PARAMETER(w);
  1945. Warning( "glVertex4i", " not available." );
  1946. }
  1947. static void REGAL_CALL glVertex4iv(const GLint *v)
  1948. {
  1949. UNUSED_PARAMETER(v);
  1950. Warning( "glVertex4iv", " not available." );
  1951. }
  1952. static void REGAL_CALL glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w)
  1953. {
  1954. UNUSED_PARAMETER(x);
  1955. UNUSED_PARAMETER(y);
  1956. UNUSED_PARAMETER(z);
  1957. UNUSED_PARAMETER(w);
  1958. Warning( "glVertex4s", " not available." );
  1959. }
  1960. static void REGAL_CALL glVertex4sv(const GLshort *v)
  1961. {
  1962. UNUSED_PARAMETER(v);
  1963. Warning( "glVertex4sv", " not available." );
  1964. }
  1965. static void REGAL_CALL glViewport(GLint x, GLint y, GLsizei width, GLsizei height)
  1966. {
  1967. UNUSED_PARAMETER(x);
  1968. UNUSED_PARAMETER(y);
  1969. UNUSED_PARAMETER(width);
  1970. UNUSED_PARAMETER(height);
  1971. Warning( "glViewport", " not available." );
  1972. }
  1973. // GL_VERSION_1_1
  1974. static GLboolean REGAL_CALL glAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences)
  1975. {
  1976. UNUSED_PARAMETER(n);
  1977. UNUSED_PARAMETER(textures);
  1978. UNUSED_PARAMETER(residences);
  1979. Warning( "glAreTexturesResident", " not available." );
  1980. return GL_FALSE;
  1981. }
  1982. static void REGAL_CALL glArrayElement(GLint index)
  1983. {
  1984. UNUSED_PARAMETER(index);
  1985. Warning( "glArrayElement", " not available." );
  1986. }
  1987. static void REGAL_CALL glBindTexture(GLenum target, GLuint texture)
  1988. {
  1989. UNUSED_PARAMETER(target);
  1990. UNUSED_PARAMETER(texture);
  1991. Warning( "glBindTexture", " not available." );
  1992. }
  1993. static void REGAL_CALL glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  1994. {
  1995. UNUSED_PARAMETER(size);
  1996. UNUSED_PARAMETER(type);
  1997. UNUSED_PARAMETER(stride);
  1998. UNUSED_PARAMETER(pointer);
  1999. Warning( "glColorPointer", " not available." );
  2000. }
  2001. static void REGAL_CALL glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)
  2002. {
  2003. UNUSED_PARAMETER(target);
  2004. UNUSED_PARAMETER(level);
  2005. UNUSED_PARAMETER(internalformat);
  2006. UNUSED_PARAMETER(x);
  2007. UNUSED_PARAMETER(y);
  2008. UNUSED_PARAMETER(width);
  2009. UNUSED_PARAMETER(border);
  2010. Warning( "glCopyTexImage1D", " not available." );
  2011. }
  2012. static void REGAL_CALL glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
  2013. {
  2014. UNUSED_PARAMETER(target);
  2015. UNUSED_PARAMETER(level);
  2016. UNUSED_PARAMETER(internalformat);
  2017. UNUSED_PARAMETER(x);
  2018. UNUSED_PARAMETER(y);
  2019. UNUSED_PARAMETER(width);
  2020. UNUSED_PARAMETER(height);
  2021. UNUSED_PARAMETER(border);
  2022. Warning( "glCopyTexImage2D", " not available." );
  2023. }
  2024. static void REGAL_CALL glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
  2025. {
  2026. UNUSED_PARAMETER(target);
  2027. UNUSED_PARAMETER(level);
  2028. UNUSED_PARAMETER(xoffset);
  2029. UNUSED_PARAMETER(x);
  2030. UNUSED_PARAMETER(y);
  2031. UNUSED_PARAMETER(width);
  2032. Warning( "glCopyTexSubImage1D", " not available." );
  2033. }
  2034. static void REGAL_CALL glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  2035. {
  2036. UNUSED_PARAMETER(target);
  2037. UNUSED_PARAMETER(level);
  2038. UNUSED_PARAMETER(xoffset);
  2039. UNUSED_PARAMETER(yoffset);
  2040. UNUSED_PARAMETER(x);
  2041. UNUSED_PARAMETER(y);
  2042. UNUSED_PARAMETER(width);
  2043. UNUSED_PARAMETER(height);
  2044. Warning( "glCopyTexSubImage2D", " not available." );
  2045. }
  2046. static void REGAL_CALL glDeleteTextures(GLsizei n, const GLuint *textures)
  2047. {
  2048. UNUSED_PARAMETER(n);
  2049. UNUSED_PARAMETER(textures);
  2050. Warning( "glDeleteTextures", " not available." );
  2051. }
  2052. static void REGAL_CALL glDisableClientState(GLenum cap)
  2053. {
  2054. UNUSED_PARAMETER(cap);
  2055. Warning( "glDisableClientState", " not available." );
  2056. }
  2057. static void REGAL_CALL glDrawArrays(GLenum mode, GLint first, GLsizei count)
  2058. {
  2059. UNUSED_PARAMETER(mode);
  2060. UNUSED_PARAMETER(first);
  2061. UNUSED_PARAMETER(count);
  2062. Warning( "glDrawArrays", " not available." );
  2063. }
  2064. static void REGAL_CALL glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices)
  2065. {
  2066. UNUSED_PARAMETER(mode);
  2067. UNUSED_PARAMETER(count);
  2068. UNUSED_PARAMETER(type);
  2069. UNUSED_PARAMETER(indices);
  2070. Warning( "glDrawElements", " not available." );
  2071. }
  2072. static void REGAL_CALL glEdgeFlagPointer(GLsizei stride, const GLvoid *pointer)
  2073. {
  2074. UNUSED_PARAMETER(stride);
  2075. UNUSED_PARAMETER(pointer);
  2076. Warning( "glEdgeFlagPointer", " not available." );
  2077. }
  2078. static void REGAL_CALL glEnableClientState(GLenum cap)
  2079. {
  2080. UNUSED_PARAMETER(cap);
  2081. Warning( "glEnableClientState", " not available." );
  2082. }
  2083. static void REGAL_CALL glGenTextures(GLsizei n, GLuint *textures)
  2084. {
  2085. UNUSED_PARAMETER(n);
  2086. UNUSED_PARAMETER(textures);
  2087. Warning( "glGenTextures", " not available." );
  2088. }
  2089. static void REGAL_CALL glGetPointerv(GLenum pname, GLvoid **params)
  2090. {
  2091. UNUSED_PARAMETER(pname);
  2092. UNUSED_PARAMETER(params);
  2093. Warning( "glGetPointerv", " not available." );
  2094. }
  2095. static void REGAL_CALL glIndexPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
  2096. {
  2097. UNUSED_PARAMETER(type);
  2098. UNUSED_PARAMETER(stride);
  2099. UNUSED_PARAMETER(pointer);
  2100. Warning( "glIndexPointer", " not available." );
  2101. }
  2102. static void REGAL_CALL glIndexub(GLubyte c)
  2103. {
  2104. UNUSED_PARAMETER(c);
  2105. Warning( "glIndexub", " not available." );
  2106. }
  2107. static void REGAL_CALL glIndexubv(const GLubyte *c)
  2108. {
  2109. UNUSED_PARAMETER(c);
  2110. Warning( "glIndexubv", " not available." );
  2111. }
  2112. static void REGAL_CALL glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer)
  2113. {
  2114. UNUSED_PARAMETER(format);
  2115. UNUSED_PARAMETER(stride);
  2116. UNUSED_PARAMETER(pointer);
  2117. Warning( "glInterleavedArrays", " not available." );
  2118. }
  2119. static GLboolean REGAL_CALL glIsTexture(GLuint texture)
  2120. {
  2121. UNUSED_PARAMETER(texture);
  2122. Warning( "glIsTexture", " not available." );
  2123. return GL_FALSE;
  2124. }
  2125. static void REGAL_CALL glNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
  2126. {
  2127. UNUSED_PARAMETER(type);
  2128. UNUSED_PARAMETER(stride);
  2129. UNUSED_PARAMETER(pointer);
  2130. Warning( "glNormalPointer", " not available." );
  2131. }
  2132. static void REGAL_CALL glPolygonOffset(GLfloat factor, GLfloat units)
  2133. {
  2134. UNUSED_PARAMETER(factor);
  2135. UNUSED_PARAMETER(units);
  2136. Warning( "glPolygonOffset", " not available." );
  2137. }
  2138. static void REGAL_CALL glPopClientAttrib(void)
  2139. {
  2140. Warning( "glPopClientAttrib", " not available." );
  2141. }
  2142. static void REGAL_CALL glPrioritizeTextures(GLsizei n, const GLuint *textures, const GLclampf *priorities)
  2143. {
  2144. UNUSED_PARAMETER(n);
  2145. UNUSED_PARAMETER(textures);
  2146. UNUSED_PARAMETER(priorities);
  2147. Warning( "glPrioritizeTextures", " not available." );
  2148. }
  2149. static void REGAL_CALL glPushClientAttrib(GLbitfield mask)
  2150. {
  2151. UNUSED_PARAMETER(mask);
  2152. Warning( "glPushClientAttrib", " not available." );
  2153. }
  2154. static void REGAL_CALL glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  2155. {
  2156. UNUSED_PARAMETER(size);
  2157. UNUSED_PARAMETER(type);
  2158. UNUSED_PARAMETER(stride);
  2159. UNUSED_PARAMETER(pointer);
  2160. Warning( "glTexCoordPointer", " not available." );
  2161. }
  2162. static void REGAL_CALL glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels)
  2163. {
  2164. UNUSED_PARAMETER(target);
  2165. UNUSED_PARAMETER(level);
  2166. UNUSED_PARAMETER(xoffset);
  2167. UNUSED_PARAMETER(width);
  2168. UNUSED_PARAMETER(format);
  2169. UNUSED_PARAMETER(type);
  2170. UNUSED_PARAMETER(pixels);
  2171. Warning( "glTexSubImage1D", " not available." );
  2172. }
  2173. static void REGAL_CALL glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
  2174. {
  2175. UNUSED_PARAMETER(target);
  2176. UNUSED_PARAMETER(level);
  2177. UNUSED_PARAMETER(xoffset);
  2178. UNUSED_PARAMETER(yoffset);
  2179. UNUSED_PARAMETER(width);
  2180. UNUSED_PARAMETER(height);
  2181. UNUSED_PARAMETER(format);
  2182. UNUSED_PARAMETER(type);
  2183. UNUSED_PARAMETER(pixels);
  2184. Warning( "glTexSubImage2D", " not available." );
  2185. }
  2186. static void REGAL_CALL glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  2187. {
  2188. UNUSED_PARAMETER(size);
  2189. UNUSED_PARAMETER(type);
  2190. UNUSED_PARAMETER(stride);
  2191. UNUSED_PARAMETER(pointer);
  2192. Warning( "glVertexPointer", " not available." );
  2193. }
  2194. // GL_VERSION_1_2
  2195. static void REGAL_CALL glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
  2196. {
  2197. UNUSED_PARAMETER(red);
  2198. UNUSED_PARAMETER(green);
  2199. UNUSED_PARAMETER(blue);
  2200. UNUSED_PARAMETER(alpha);
  2201. Warning( "glBlendColor", " not available." );
  2202. }
  2203. static void REGAL_CALL glBlendEquation(GLenum mode)
  2204. {
  2205. UNUSED_PARAMETER(mode);
  2206. Warning( "glBlendEquation", " not available." );
  2207. }
  2208. static void REGAL_CALL glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  2209. {
  2210. UNUSED_PARAMETER(target);
  2211. UNUSED_PARAMETER(level);
  2212. UNUSED_PARAMETER(xoffset);
  2213. UNUSED_PARAMETER(yoffset);
  2214. UNUSED_PARAMETER(zoffset);
  2215. UNUSED_PARAMETER(x);
  2216. UNUSED_PARAMETER(y);
  2217. UNUSED_PARAMETER(width);
  2218. UNUSED_PARAMETER(height);
  2219. Warning( "glCopyTexSubImage3D", " not available." );
  2220. }
  2221. static void REGAL_CALL glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices)
  2222. {
  2223. UNUSED_PARAMETER(mode);
  2224. UNUSED_PARAMETER(start);
  2225. UNUSED_PARAMETER(end);
  2226. UNUSED_PARAMETER(count);
  2227. UNUSED_PARAMETER(type);
  2228. UNUSED_PARAMETER(indices);
  2229. Warning( "glDrawRangeElements", " not available." );
  2230. }
  2231. static void REGAL_CALL glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  2232. {
  2233. UNUSED_PARAMETER(target);
  2234. UNUSED_PARAMETER(level);
  2235. UNUSED_PARAMETER(internalformat);
  2236. UNUSED_PARAMETER(width);
  2237. UNUSED_PARAMETER(height);
  2238. UNUSED_PARAMETER(depth);
  2239. UNUSED_PARAMETER(border);
  2240. UNUSED_PARAMETER(format);
  2241. UNUSED_PARAMETER(type);
  2242. UNUSED_PARAMETER(pixels);
  2243. Warning( "glTexImage3D", " not available." );
  2244. }
  2245. static void REGAL_CALL glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels)
  2246. {
  2247. UNUSED_PARAMETER(target);
  2248. UNUSED_PARAMETER(level);
  2249. UNUSED_PARAMETER(xoffset);
  2250. UNUSED_PARAMETER(yoffset);
  2251. UNUSED_PARAMETER(zoffset);
  2252. UNUSED_PARAMETER(width);
  2253. UNUSED_PARAMETER(height);
  2254. UNUSED_PARAMETER(depth);
  2255. UNUSED_PARAMETER(format);
  2256. UNUSED_PARAMETER(type);
  2257. UNUSED_PARAMETER(pixels);
  2258. Warning( "glTexSubImage3D", " not available." );
  2259. }
  2260. // GL_VERSION_1_3
  2261. static void REGAL_CALL glActiveTexture(GLenum texture)
  2262. {
  2263. UNUSED_PARAMETER(texture);
  2264. Warning( "glActiveTexture", " not available." );
  2265. }
  2266. static void REGAL_CALL glClientActiveTexture(GLenum texture)
  2267. {
  2268. UNUSED_PARAMETER(texture);
  2269. Warning( "glClientActiveTexture", " not available." );
  2270. }
  2271. static void REGAL_CALL glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data)
  2272. {
  2273. UNUSED_PARAMETER(target);
  2274. UNUSED_PARAMETER(level);
  2275. UNUSED_PARAMETER(internalformat);
  2276. UNUSED_PARAMETER(width);
  2277. UNUSED_PARAMETER(border);
  2278. UNUSED_PARAMETER(imageSize);
  2279. UNUSED_PARAMETER(data);
  2280. Warning( "glCompressedTexImage1D", " not available." );
  2281. }
  2282. static void REGAL_CALL glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data)
  2283. {
  2284. UNUSED_PARAMETER(target);
  2285. UNUSED_PARAMETER(level);
  2286. UNUSED_PARAMETER(internalformat);
  2287. UNUSED_PARAMETER(width);
  2288. UNUSED_PARAMETER(height);
  2289. UNUSED_PARAMETER(border);
  2290. UNUSED_PARAMETER(imageSize);
  2291. UNUSED_PARAMETER(data);
  2292. Warning( "glCompressedTexImage2D", " not available." );
  2293. }
  2294. static void REGAL_CALL glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data)
  2295. {
  2296. UNUSED_PARAMETER(target);
  2297. UNUSED_PARAMETER(level);
  2298. UNUSED_PARAMETER(internalformat);
  2299. UNUSED_PARAMETER(width);
  2300. UNUSED_PARAMETER(height);
  2301. UNUSED_PARAMETER(depth);
  2302. UNUSED_PARAMETER(border);
  2303. UNUSED_PARAMETER(imageSize);
  2304. UNUSED_PARAMETER(data);
  2305. Warning( "glCompressedTexImage3D", " not available." );
  2306. }
  2307. static void REGAL_CALL glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data)
  2308. {
  2309. UNUSED_PARAMETER(target);
  2310. UNUSED_PARAMETER(level);
  2311. UNUSED_PARAMETER(xoffset);
  2312. UNUSED_PARAMETER(width);
  2313. UNUSED_PARAMETER(format);
  2314. UNUSED_PARAMETER(imageSize);
  2315. UNUSED_PARAMETER(data);
  2316. Warning( "glCompressedTexSubImage1D", " not available." );
  2317. }
  2318. static void REGAL_CALL glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data)
  2319. {
  2320. UNUSED_PARAMETER(target);
  2321. UNUSED_PARAMETER(level);
  2322. UNUSED_PARAMETER(xoffset);
  2323. UNUSED_PARAMETER(yoffset);
  2324. UNUSED_PARAMETER(width);
  2325. UNUSED_PARAMETER(height);
  2326. UNUSED_PARAMETER(format);
  2327. UNUSED_PARAMETER(imageSize);
  2328. UNUSED_PARAMETER(data);
  2329. Warning( "glCompressedTexSubImage2D", " not available." );
  2330. }
  2331. static void REGAL_CALL glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data)
  2332. {
  2333. UNUSED_PARAMETER(target);
  2334. UNUSED_PARAMETER(level);
  2335. UNUSED_PARAMETER(xoffset);
  2336. UNUSED_PARAMETER(yoffset);
  2337. UNUSED_PARAMETER(zoffset);
  2338. UNUSED_PARAMETER(width);
  2339. UNUSED_PARAMETER(height);
  2340. UNUSED_PARAMETER(depth);
  2341. UNUSED_PARAMETER(format);
  2342. UNUSED_PARAMETER(imageSize);
  2343. UNUSED_PARAMETER(data);
  2344. Warning( "glCompressedTexSubImage3D", " not available." );
  2345. }
  2346. static void REGAL_CALL glGetCompressedTexImage(GLenum target, GLint lod, GLvoid *img)
  2347. {
  2348. UNUSED_PARAMETER(target);
  2349. UNUSED_PARAMETER(lod);
  2350. UNUSED_PARAMETER(img);
  2351. Warning( "glGetCompressedTexImage", " not available." );
  2352. }
  2353. static void REGAL_CALL glLoadTransposeMatrixd(const GLdouble *m)
  2354. {
  2355. UNUSED_PARAMETER(m);
  2356. Warning( "glLoadTransposeMatrixd", " not available." );
  2357. }
  2358. static void REGAL_CALL glLoadTransposeMatrixf(const GLfloat *m)
  2359. {
  2360. UNUSED_PARAMETER(m);
  2361. Warning( "glLoadTransposeMatrixf", " not available." );
  2362. }
  2363. static void REGAL_CALL glMultTransposeMatrixd(const GLdouble *m)
  2364. {
  2365. UNUSED_PARAMETER(m);
  2366. Warning( "glMultTransposeMatrixd", " not available." );
  2367. }
  2368. static void REGAL_CALL glMultTransposeMatrixf(const GLfloat *m)
  2369. {
  2370. UNUSED_PARAMETER(m);
  2371. Warning( "glMultTransposeMatrixf", " not available." );
  2372. }
  2373. static void REGAL_CALL glMultiTexCoord1d(GLenum target, GLdouble s)
  2374. {
  2375. UNUSED_PARAMETER(target);
  2376. UNUSED_PARAMETER(s);
  2377. Warning( "glMultiTexCoord1d", " not available." );
  2378. }
  2379. static void REGAL_CALL glMultiTexCoord1dv(GLenum target, const GLdouble *v)
  2380. {
  2381. UNUSED_PARAMETER(target);
  2382. UNUSED_PARAMETER(v);
  2383. Warning( "glMultiTexCoord1dv", " not available." );
  2384. }
  2385. static void REGAL_CALL glMultiTexCoord1f(GLenum target, GLfloat s)
  2386. {
  2387. UNUSED_PARAMETER(target);
  2388. UNUSED_PARAMETER(s);
  2389. Warning( "glMultiTexCoord1f", " not available." );
  2390. }
  2391. static void REGAL_CALL glMultiTexCoord1fv(GLenum target, const GLfloat *v)
  2392. {
  2393. UNUSED_PARAMETER(target);
  2394. UNUSED_PARAMETER(v);
  2395. Warning( "glMultiTexCoord1fv", " not available." );
  2396. }
  2397. static void REGAL_CALL glMultiTexCoord1i(GLenum target, GLint s)
  2398. {
  2399. UNUSED_PARAMETER(target);
  2400. UNUSED_PARAMETER(s);
  2401. Warning( "glMultiTexCoord1i", " not available." );
  2402. }
  2403. static void REGAL_CALL glMultiTexCoord1iv(GLenum target, const GLint *v)
  2404. {
  2405. UNUSED_PARAMETER(target);
  2406. UNUSED_PARAMETER(v);
  2407. Warning( "glMultiTexCoord1iv", " not available." );
  2408. }
  2409. static void REGAL_CALL glMultiTexCoord1s(GLenum target, GLshort s)
  2410. {
  2411. UNUSED_PARAMETER(target);
  2412. UNUSED_PARAMETER(s);
  2413. Warning( "glMultiTexCoord1s", " not available." );
  2414. }
  2415. static void REGAL_CALL glMultiTexCoord1sv(GLenum target, const GLshort *v)
  2416. {
  2417. UNUSED_PARAMETER(target);
  2418. UNUSED_PARAMETER(v);
  2419. Warning( "glMultiTexCoord1sv", " not available." );
  2420. }
  2421. static void REGAL_CALL glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t)
  2422. {
  2423. UNUSED_PARAMETER(target);
  2424. UNUSED_PARAMETER(s);
  2425. UNUSED_PARAMETER(t);
  2426. Warning( "glMultiTexCoord2d", " not available." );
  2427. }
  2428. static void REGAL_CALL glMultiTexCoord2dv(GLenum target, const GLdouble *v)
  2429. {
  2430. UNUSED_PARAMETER(target);
  2431. UNUSED_PARAMETER(v);
  2432. Warning( "glMultiTexCoord2dv", " not available." );
  2433. }
  2434. static void REGAL_CALL glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t)
  2435. {
  2436. UNUSED_PARAMETER(target);
  2437. UNUSED_PARAMETER(s);
  2438. UNUSED_PARAMETER(t);
  2439. Warning( "glMultiTexCoord2f", " not available." );
  2440. }
  2441. static void REGAL_CALL glMultiTexCoord2fv(GLenum target, const GLfloat *v)
  2442. {
  2443. UNUSED_PARAMETER(target);
  2444. UNUSED_PARAMETER(v);
  2445. Warning( "glMultiTexCoord2fv", " not available." );
  2446. }
  2447. static void REGAL_CALL glMultiTexCoord2i(GLenum target, GLint s, GLint t)
  2448. {
  2449. UNUSED_PARAMETER(target);
  2450. UNUSED_PARAMETER(s);
  2451. UNUSED_PARAMETER(t);
  2452. Warning( "glMultiTexCoord2i", " not available." );
  2453. }
  2454. static void REGAL_CALL glMultiTexCoord2iv(GLenum target, const GLint *v)
  2455. {
  2456. UNUSED_PARAMETER(target);
  2457. UNUSED_PARAMETER(v);
  2458. Warning( "glMultiTexCoord2iv", " not available." );
  2459. }
  2460. static void REGAL_CALL glMultiTexCoord2s(GLenum target, GLshort s, GLshort t)
  2461. {
  2462. UNUSED_PARAMETER(target);
  2463. UNUSED_PARAMETER(s);
  2464. UNUSED_PARAMETER(t);
  2465. Warning( "glMultiTexCoord2s", " not available." );
  2466. }
  2467. static void REGAL_CALL glMultiTexCoord2sv(GLenum target, const GLshort *v)
  2468. {
  2469. UNUSED_PARAMETER(target);
  2470. UNUSED_PARAMETER(v);
  2471. Warning( "glMultiTexCoord2sv", " not available." );
  2472. }
  2473. static void REGAL_CALL glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r)
  2474. {
  2475. UNUSED_PARAMETER(target);
  2476. UNUSED_PARAMETER(s);
  2477. UNUSED_PARAMETER(t);
  2478. UNUSED_PARAMETER(r);
  2479. Warning( "glMultiTexCoord3d", " not available." );
  2480. }
  2481. static void REGAL_CALL glMultiTexCoord3dv(GLenum target, const GLdouble *v)
  2482. {
  2483. UNUSED_PARAMETER(target);
  2484. UNUSED_PARAMETER(v);
  2485. Warning( "glMultiTexCoord3dv", " not available." );
  2486. }
  2487. static void REGAL_CALL glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r)
  2488. {
  2489. UNUSED_PARAMETER(target);
  2490. UNUSED_PARAMETER(s);
  2491. UNUSED_PARAMETER(t);
  2492. UNUSED_PARAMETER(r);
  2493. Warning( "glMultiTexCoord3f", " not available." );
  2494. }
  2495. static void REGAL_CALL glMultiTexCoord3fv(GLenum target, const GLfloat *v)
  2496. {
  2497. UNUSED_PARAMETER(target);
  2498. UNUSED_PARAMETER(v);
  2499. Warning( "glMultiTexCoord3fv", " not available." );
  2500. }
  2501. static void REGAL_CALL glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r)
  2502. {
  2503. UNUSED_PARAMETER(target);
  2504. UNUSED_PARAMETER(s);
  2505. UNUSED_PARAMETER(t);
  2506. UNUSED_PARAMETER(r);
  2507. Warning( "glMultiTexCoord3i", " not available." );
  2508. }
  2509. static void REGAL_CALL glMultiTexCoord3iv(GLenum target, const GLint *v)
  2510. {
  2511. UNUSED_PARAMETER(target);
  2512. UNUSED_PARAMETER(v);
  2513. Warning( "glMultiTexCoord3iv", " not available." );
  2514. }
  2515. static void REGAL_CALL glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r)
  2516. {
  2517. UNUSED_PARAMETER(target);
  2518. UNUSED_PARAMETER(s);
  2519. UNUSED_PARAMETER(t);
  2520. UNUSED_PARAMETER(r);
  2521. Warning( "glMultiTexCoord3s", " not available." );
  2522. }
  2523. static void REGAL_CALL glMultiTexCoord3sv(GLenum target, const GLshort *v)
  2524. {
  2525. UNUSED_PARAMETER(target);
  2526. UNUSED_PARAMETER(v);
  2527. Warning( "glMultiTexCoord3sv", " not available." );
  2528. }
  2529. static void REGAL_CALL glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q)
  2530. {
  2531. UNUSED_PARAMETER(target);
  2532. UNUSED_PARAMETER(s);
  2533. UNUSED_PARAMETER(t);
  2534. UNUSED_PARAMETER(r);
  2535. UNUSED_PARAMETER(q);
  2536. Warning( "glMultiTexCoord4d", " not available." );
  2537. }
  2538. static void REGAL_CALL glMultiTexCoord4dv(GLenum target, const GLdouble *v)
  2539. {
  2540. UNUSED_PARAMETER(target);
  2541. UNUSED_PARAMETER(v);
  2542. Warning( "glMultiTexCoord4dv", " not available." );
  2543. }
  2544. static void REGAL_CALL glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
  2545. {
  2546. UNUSED_PARAMETER(target);
  2547. UNUSED_PARAMETER(s);
  2548. UNUSED_PARAMETER(t);
  2549. UNUSED_PARAMETER(r);
  2550. UNUSED_PARAMETER(q);
  2551. Warning( "glMultiTexCoord4f", " not available." );
  2552. }
  2553. static void REGAL_CALL glMultiTexCoord4fv(GLenum target, const GLfloat *v)
  2554. {
  2555. UNUSED_PARAMETER(target);
  2556. UNUSED_PARAMETER(v);
  2557. Warning( "glMultiTexCoord4fv", " not available." );
  2558. }
  2559. static void REGAL_CALL glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q)
  2560. {
  2561. UNUSED_PARAMETER(target);
  2562. UNUSED_PARAMETER(s);
  2563. UNUSED_PARAMETER(t);
  2564. UNUSED_PARAMETER(r);
  2565. UNUSED_PARAMETER(q);
  2566. Warning( "glMultiTexCoord4i", " not available." );
  2567. }
  2568. static void REGAL_CALL glMultiTexCoord4iv(GLenum target, const GLint *v)
  2569. {
  2570. UNUSED_PARAMETER(target);
  2571. UNUSED_PARAMETER(v);
  2572. Warning( "glMultiTexCoord4iv", " not available." );
  2573. }
  2574. static void REGAL_CALL glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q)
  2575. {
  2576. UNUSED_PARAMETER(target);
  2577. UNUSED_PARAMETER(s);
  2578. UNUSED_PARAMETER(t);
  2579. UNUSED_PARAMETER(r);
  2580. UNUSED_PARAMETER(q);
  2581. Warning( "glMultiTexCoord4s", " not available." );
  2582. }
  2583. static void REGAL_CALL glMultiTexCoord4sv(GLenum target, const GLshort *v)
  2584. {
  2585. UNUSED_PARAMETER(target);
  2586. UNUSED_PARAMETER(v);
  2587. Warning( "glMultiTexCoord4sv", " not available." );
  2588. }
  2589. static void REGAL_CALL glSampleCoverage(GLclampf value, GLboolean invert)
  2590. {
  2591. UNUSED_PARAMETER(value);
  2592. UNUSED_PARAMETER(invert);
  2593. Warning( "glSampleCoverage", " not available." );
  2594. }
  2595. // GL_VERSION_1_4
  2596. static void REGAL_CALL glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)
  2597. {
  2598. UNUSED_PARAMETER(sfactorRGB);
  2599. UNUSED_PARAMETER(dfactorRGB);
  2600. UNUSED_PARAMETER(sfactorAlpha);
  2601. UNUSED_PARAMETER(dfactorAlpha);
  2602. Warning( "glBlendFuncSeparate", " not available." );
  2603. }
  2604. static void REGAL_CALL glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
  2605. {
  2606. UNUSED_PARAMETER(type);
  2607. UNUSED_PARAMETER(stride);
  2608. UNUSED_PARAMETER(pointer);
  2609. Warning( "glFogCoordPointer", " not available." );
  2610. }
  2611. static void REGAL_CALL glFogCoordd(GLdouble coord)
  2612. {
  2613. UNUSED_PARAMETER(coord);
  2614. Warning( "glFogCoordd", " not available." );
  2615. }
  2616. static void REGAL_CALL glFogCoorddv(const GLdouble *coord)
  2617. {
  2618. UNUSED_PARAMETER(coord);
  2619. Warning( "glFogCoorddv", " not available." );
  2620. }
  2621. static void REGAL_CALL glFogCoordf(GLfloat coord)
  2622. {
  2623. UNUSED_PARAMETER(coord);
  2624. Warning( "glFogCoordf", " not available." );
  2625. }
  2626. static void REGAL_CALL glFogCoordfv(const GLfloat *coord)
  2627. {
  2628. UNUSED_PARAMETER(coord);
  2629. Warning( "glFogCoordfv", " not available." );
  2630. }
  2631. static void REGAL_CALL glMultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount)
  2632. {
  2633. UNUSED_PARAMETER(mode);
  2634. UNUSED_PARAMETER(first);
  2635. UNUSED_PARAMETER(count);
  2636. UNUSED_PARAMETER(primcount);
  2637. Warning( "glMultiDrawArrays", " not available." );
  2638. }
  2639. static void REGAL_CALL glMultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount)
  2640. {
  2641. UNUSED_PARAMETER(mode);
  2642. UNUSED_PARAMETER(count);
  2643. UNUSED_PARAMETER(type);
  2644. UNUSED_PARAMETER(indices);
  2645. UNUSED_PARAMETER(primcount);
  2646. Warning( "glMultiDrawElements", " not available." );
  2647. }
  2648. static void REGAL_CALL glPointParameterf(GLenum pname, GLfloat param)
  2649. {
  2650. UNUSED_PARAMETER(pname);
  2651. UNUSED_PARAMETER(param);
  2652. Warning( "glPointParameterf", " not available." );
  2653. }
  2654. static void REGAL_CALL glPointParameterfv(GLenum pname, const GLfloat *params)
  2655. {
  2656. UNUSED_PARAMETER(pname);
  2657. UNUSED_PARAMETER(params);
  2658. Warning( "glPointParameterfv", " not available." );
  2659. }
  2660. static void REGAL_CALL glPointParameteri(GLenum pname, GLint param)
  2661. {
  2662. UNUSED_PARAMETER(pname);
  2663. UNUSED_PARAMETER(param);
  2664. Warning( "glPointParameteri", " not available." );
  2665. }
  2666. static void REGAL_CALL glPointParameteriv(GLenum pname, const GLint *params)
  2667. {
  2668. UNUSED_PARAMETER(pname);
  2669. UNUSED_PARAMETER(params);
  2670. Warning( "glPointParameteriv", " not available." );
  2671. }
  2672. static void REGAL_CALL glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue)
  2673. {
  2674. UNUSED_PARAMETER(red);
  2675. UNUSED_PARAMETER(green);
  2676. UNUSED_PARAMETER(blue);
  2677. Warning( "glSecondaryColor3b", " not available." );
  2678. }
  2679. static void REGAL_CALL glSecondaryColor3bv(const GLbyte *v)
  2680. {
  2681. UNUSED_PARAMETER(v);
  2682. Warning( "glSecondaryColor3bv", " not available." );
  2683. }
  2684. static void REGAL_CALL glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue)
  2685. {
  2686. UNUSED_PARAMETER(red);
  2687. UNUSED_PARAMETER(green);
  2688. UNUSED_PARAMETER(blue);
  2689. Warning( "glSecondaryColor3d", " not available." );
  2690. }
  2691. static void REGAL_CALL glSecondaryColor3dv(const GLdouble *v)
  2692. {
  2693. UNUSED_PARAMETER(v);
  2694. Warning( "glSecondaryColor3dv", " not available." );
  2695. }
  2696. static void REGAL_CALL glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue)
  2697. {
  2698. UNUSED_PARAMETER(red);
  2699. UNUSED_PARAMETER(green);
  2700. UNUSED_PARAMETER(blue);
  2701. Warning( "glSecondaryColor3f", " not available." );
  2702. }
  2703. static void REGAL_CALL glSecondaryColor3fv(const GLfloat *v)
  2704. {
  2705. UNUSED_PARAMETER(v);
  2706. Warning( "glSecondaryColor3fv", " not available." );
  2707. }
  2708. static void REGAL_CALL glSecondaryColor3i(GLint red, GLint green, GLint blue)
  2709. {
  2710. UNUSED_PARAMETER(red);
  2711. UNUSED_PARAMETER(green);
  2712. UNUSED_PARAMETER(blue);
  2713. Warning( "glSecondaryColor3i", " not available." );
  2714. }
  2715. static void REGAL_CALL glSecondaryColor3iv(const GLint *v)
  2716. {
  2717. UNUSED_PARAMETER(v);
  2718. Warning( "glSecondaryColor3iv", " not available." );
  2719. }
  2720. static void REGAL_CALL glSecondaryColor3s(GLshort red, GLshort green, GLshort blue)
  2721. {
  2722. UNUSED_PARAMETER(red);
  2723. UNUSED_PARAMETER(green);
  2724. UNUSED_PARAMETER(blue);
  2725. Warning( "glSecondaryColor3s", " not available." );
  2726. }
  2727. static void REGAL_CALL glSecondaryColor3sv(const GLshort *v)
  2728. {
  2729. UNUSED_PARAMETER(v);
  2730. Warning( "glSecondaryColor3sv", " not available." );
  2731. }
  2732. static void REGAL_CALL glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue)
  2733. {
  2734. UNUSED_PARAMETER(red);
  2735. UNUSED_PARAMETER(green);
  2736. UNUSED_PARAMETER(blue);
  2737. Warning( "glSecondaryColor3ub", " not available." );
  2738. }
  2739. static void REGAL_CALL glSecondaryColor3ubv(const GLubyte *v)
  2740. {
  2741. UNUSED_PARAMETER(v);
  2742. Warning( "glSecondaryColor3ubv", " not available." );
  2743. }
  2744. static void REGAL_CALL glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue)
  2745. {
  2746. UNUSED_PARAMETER(red);
  2747. UNUSED_PARAMETER(green);
  2748. UNUSED_PARAMETER(blue);
  2749. Warning( "glSecondaryColor3ui", " not available." );
  2750. }
  2751. static void REGAL_CALL glSecondaryColor3uiv(const GLuint *v)
  2752. {
  2753. UNUSED_PARAMETER(v);
  2754. Warning( "glSecondaryColor3uiv", " not available." );
  2755. }
  2756. static void REGAL_CALL glSecondaryColor3us(GLushort red, GLushort green, GLushort blue)
  2757. {
  2758. UNUSED_PARAMETER(red);
  2759. UNUSED_PARAMETER(green);
  2760. UNUSED_PARAMETER(blue);
  2761. Warning( "glSecondaryColor3us", " not available." );
  2762. }
  2763. static void REGAL_CALL glSecondaryColor3usv(const GLushort *v)
  2764. {
  2765. UNUSED_PARAMETER(v);
  2766. Warning( "glSecondaryColor3usv", " not available." );
  2767. }
  2768. static void REGAL_CALL glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  2769. {
  2770. UNUSED_PARAMETER(size);
  2771. UNUSED_PARAMETER(type);
  2772. UNUSED_PARAMETER(stride);
  2773. UNUSED_PARAMETER(pointer);
  2774. Warning( "glSecondaryColorPointer", " not available." );
  2775. }
  2776. static void REGAL_CALL glWindowPos2d(GLdouble x, GLdouble y)
  2777. {
  2778. UNUSED_PARAMETER(x);
  2779. UNUSED_PARAMETER(y);
  2780. Warning( "glWindowPos2d", " not available." );
  2781. }
  2782. static void REGAL_CALL glWindowPos2dv(const GLdouble *p)
  2783. {
  2784. UNUSED_PARAMETER(p);
  2785. Warning( "glWindowPos2dv", " not available." );
  2786. }
  2787. static void REGAL_CALL glWindowPos2f(GLfloat x, GLfloat y)
  2788. {
  2789. UNUSED_PARAMETER(x);
  2790. UNUSED_PARAMETER(y);
  2791. Warning( "glWindowPos2f", " not available." );
  2792. }
  2793. static void REGAL_CALL glWindowPos2fv(const GLfloat *p)
  2794. {
  2795. UNUSED_PARAMETER(p);
  2796. Warning( "glWindowPos2fv", " not available." );
  2797. }
  2798. static void REGAL_CALL glWindowPos2i(GLint x, GLint y)
  2799. {
  2800. UNUSED_PARAMETER(x);
  2801. UNUSED_PARAMETER(y);
  2802. Warning( "glWindowPos2i", " not available." );
  2803. }
  2804. static void REGAL_CALL glWindowPos2iv(const GLint *p)
  2805. {
  2806. UNUSED_PARAMETER(p);
  2807. Warning( "glWindowPos2iv", " not available." );
  2808. }
  2809. static void REGAL_CALL glWindowPos2s(GLshort x, GLshort y)
  2810. {
  2811. UNUSED_PARAMETER(x);
  2812. UNUSED_PARAMETER(y);
  2813. Warning( "glWindowPos2s", " not available." );
  2814. }
  2815. static void REGAL_CALL glWindowPos2sv(const GLshort *p)
  2816. {
  2817. UNUSED_PARAMETER(p);
  2818. Warning( "glWindowPos2sv", " not available." );
  2819. }
  2820. static void REGAL_CALL glWindowPos3d(GLdouble x, GLdouble y, GLdouble z)
  2821. {
  2822. UNUSED_PARAMETER(x);
  2823. UNUSED_PARAMETER(y);
  2824. UNUSED_PARAMETER(z);
  2825. Warning( "glWindowPos3d", " not available." );
  2826. }
  2827. static void REGAL_CALL glWindowPos3dv(const GLdouble *p)
  2828. {
  2829. UNUSED_PARAMETER(p);
  2830. Warning( "glWindowPos3dv", " not available." );
  2831. }
  2832. static void REGAL_CALL glWindowPos3f(GLfloat x, GLfloat y, GLfloat z)
  2833. {
  2834. UNUSED_PARAMETER(x);
  2835. UNUSED_PARAMETER(y);
  2836. UNUSED_PARAMETER(z);
  2837. Warning( "glWindowPos3f", " not available." );
  2838. }
  2839. static void REGAL_CALL glWindowPos3fv(const GLfloat *p)
  2840. {
  2841. UNUSED_PARAMETER(p);
  2842. Warning( "glWindowPos3fv", " not available." );
  2843. }
  2844. static void REGAL_CALL glWindowPos3i(GLint x, GLint y, GLint z)
  2845. {
  2846. UNUSED_PARAMETER(x);
  2847. UNUSED_PARAMETER(y);
  2848. UNUSED_PARAMETER(z);
  2849. Warning( "glWindowPos3i", " not available." );
  2850. }
  2851. static void REGAL_CALL glWindowPos3iv(const GLint *p)
  2852. {
  2853. UNUSED_PARAMETER(p);
  2854. Warning( "glWindowPos3iv", " not available." );
  2855. }
  2856. static void REGAL_CALL glWindowPos3s(GLshort x, GLshort y, GLshort z)
  2857. {
  2858. UNUSED_PARAMETER(x);
  2859. UNUSED_PARAMETER(y);
  2860. UNUSED_PARAMETER(z);
  2861. Warning( "glWindowPos3s", " not available." );
  2862. }
  2863. static void REGAL_CALL glWindowPos3sv(const GLshort *p)
  2864. {
  2865. UNUSED_PARAMETER(p);
  2866. Warning( "glWindowPos3sv", " not available." );
  2867. }
  2868. // GL_VERSION_1_5
  2869. static void REGAL_CALL glBeginQuery(GLenum target, GLuint id)
  2870. {
  2871. UNUSED_PARAMETER(target);
  2872. UNUSED_PARAMETER(id);
  2873. Warning( "glBeginQuery", " not available." );
  2874. }
  2875. static void REGAL_CALL glBindBuffer(GLenum target, GLuint buffer)
  2876. {
  2877. UNUSED_PARAMETER(target);
  2878. UNUSED_PARAMETER(buffer);
  2879. Warning( "glBindBuffer", " not available." );
  2880. }
  2881. static void REGAL_CALL glBufferData(GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage)
  2882. {
  2883. UNUSED_PARAMETER(target);
  2884. UNUSED_PARAMETER(size);
  2885. UNUSED_PARAMETER(data);
  2886. UNUSED_PARAMETER(usage);
  2887. Warning( "glBufferData", " not available." );
  2888. }
  2889. static void REGAL_CALL glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data)
  2890. {
  2891. UNUSED_PARAMETER(target);
  2892. UNUSED_PARAMETER(offset);
  2893. UNUSED_PARAMETER(size);
  2894. UNUSED_PARAMETER(data);
  2895. Warning( "glBufferSubData", " not available." );
  2896. }
  2897. static void REGAL_CALL glDeleteBuffers(GLsizei n, const GLuint *buffers)
  2898. {
  2899. UNUSED_PARAMETER(n);
  2900. UNUSED_PARAMETER(buffers);
  2901. Warning( "glDeleteBuffers", " not available." );
  2902. }
  2903. static void REGAL_CALL glDeleteQueries(GLsizei n, const GLuint *ids)
  2904. {
  2905. UNUSED_PARAMETER(n);
  2906. UNUSED_PARAMETER(ids);
  2907. Warning( "glDeleteQueries", " not available." );
  2908. }
  2909. static void REGAL_CALL glEndQuery(GLenum target)
  2910. {
  2911. UNUSED_PARAMETER(target);
  2912. Warning( "glEndQuery", " not available." );
  2913. }
  2914. static void REGAL_CALL glGenBuffers(GLsizei n, GLuint *buffers)
  2915. {
  2916. UNUSED_PARAMETER(n);
  2917. UNUSED_PARAMETER(buffers);
  2918. Warning( "glGenBuffers", " not available." );
  2919. }
  2920. static void REGAL_CALL glGenQueries(GLsizei n, GLuint *ids)
  2921. {
  2922. UNUSED_PARAMETER(n);
  2923. UNUSED_PARAMETER(ids);
  2924. Warning( "glGenQueries", " not available." );
  2925. }
  2926. static void REGAL_CALL glGetBufferParameteriv(GLenum target, GLenum pname, GLint *params)
  2927. {
  2928. UNUSED_PARAMETER(target);
  2929. UNUSED_PARAMETER(pname);
  2930. UNUSED_PARAMETER(params);
  2931. Warning( "glGetBufferParameteriv", " not available." );
  2932. }
  2933. static void REGAL_CALL glGetBufferPointerv(GLenum target, GLenum pname, GLvoid **params)
  2934. {
  2935. UNUSED_PARAMETER(target);
  2936. UNUSED_PARAMETER(pname);
  2937. UNUSED_PARAMETER(params);
  2938. Warning( "glGetBufferPointerv", " not available." );
  2939. }
  2940. static void REGAL_CALL glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data)
  2941. {
  2942. UNUSED_PARAMETER(target);
  2943. UNUSED_PARAMETER(offset);
  2944. UNUSED_PARAMETER(size);
  2945. UNUSED_PARAMETER(data);
  2946. Warning( "glGetBufferSubData", " not available." );
  2947. }
  2948. static void REGAL_CALL glGetQueryObjectiv(GLuint id, GLenum pname, GLint *params)
  2949. {
  2950. UNUSED_PARAMETER(id);
  2951. UNUSED_PARAMETER(pname);
  2952. UNUSED_PARAMETER(params);
  2953. Warning( "glGetQueryObjectiv", " not available." );
  2954. }
  2955. static void REGAL_CALL glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params)
  2956. {
  2957. UNUSED_PARAMETER(id);
  2958. UNUSED_PARAMETER(pname);
  2959. UNUSED_PARAMETER(params);
  2960. Warning( "glGetQueryObjectuiv", " not available." );
  2961. }
  2962. static void REGAL_CALL glGetQueryiv(GLenum target, GLenum pname, GLint *params)
  2963. {
  2964. UNUSED_PARAMETER(target);
  2965. UNUSED_PARAMETER(pname);
  2966. UNUSED_PARAMETER(params);
  2967. Warning( "glGetQueryiv", " not available." );
  2968. }
  2969. static GLboolean REGAL_CALL glIsBuffer(GLuint buffer)
  2970. {
  2971. UNUSED_PARAMETER(buffer);
  2972. Warning( "glIsBuffer", " not available." );
  2973. return GL_FALSE;
  2974. }
  2975. static GLboolean REGAL_CALL glIsQuery(GLuint id)
  2976. {
  2977. UNUSED_PARAMETER(id);
  2978. Warning( "glIsQuery", " not available." );
  2979. return GL_FALSE;
  2980. }
  2981. static GLvoid *REGAL_CALL glMapBuffer(GLenum target, GLenum access)
  2982. {
  2983. UNUSED_PARAMETER(target);
  2984. UNUSED_PARAMETER(access);
  2985. Warning( "glMapBuffer", " not available." );
  2986. return NULL;
  2987. }
  2988. static GLboolean REGAL_CALL glUnmapBuffer(GLenum target)
  2989. {
  2990. UNUSED_PARAMETER(target);
  2991. Warning( "glUnmapBuffer", " not available." );
  2992. return GL_FALSE;
  2993. }
  2994. // GL_VERSION_2_0
  2995. static void REGAL_CALL glAttachShader(GLuint program, GLuint shader)
  2996. {
  2997. UNUSED_PARAMETER(program);
  2998. UNUSED_PARAMETER(shader);
  2999. Warning( "glAttachShader", " not available." );
  3000. }
  3001. static void REGAL_CALL glBindAttribLocation(GLuint program, GLuint index, const GLchar *name)
  3002. {
  3003. UNUSED_PARAMETER(program);
  3004. UNUSED_PARAMETER(index);
  3005. UNUSED_PARAMETER(name);
  3006. Warning( "glBindAttribLocation", " not available." );
  3007. }
  3008. static void REGAL_CALL glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha)
  3009. {
  3010. UNUSED_PARAMETER(modeRGB);
  3011. UNUSED_PARAMETER(modeAlpha);
  3012. Warning( "glBlendEquationSeparate", " not available." );
  3013. }
  3014. static void REGAL_CALL glCompileShader(GLuint shader)
  3015. {
  3016. UNUSED_PARAMETER(shader);
  3017. Warning( "glCompileShader", " not available." );
  3018. }
  3019. static GLuint REGAL_CALL glCreateProgram(void)
  3020. {
  3021. Warning( "glCreateProgram", " not available." );
  3022. return 0;
  3023. }
  3024. static GLuint REGAL_CALL glCreateShader(GLenum type)
  3025. {
  3026. UNUSED_PARAMETER(type);
  3027. Warning( "glCreateShader", " not available." );
  3028. return 0;
  3029. }
  3030. static void REGAL_CALL glDeleteProgram(GLuint program)
  3031. {
  3032. UNUSED_PARAMETER(program);
  3033. Warning( "glDeleteProgram", " not available." );
  3034. }
  3035. static void REGAL_CALL glDeleteShader(GLuint shader)
  3036. {
  3037. UNUSED_PARAMETER(shader);
  3038. Warning( "glDeleteShader", " not available." );
  3039. }
  3040. static void REGAL_CALL glDetachShader(GLuint program, GLuint shader)
  3041. {
  3042. UNUSED_PARAMETER(program);
  3043. UNUSED_PARAMETER(shader);
  3044. Warning( "glDetachShader", " not available." );
  3045. }
  3046. static void REGAL_CALL glDisableVertexAttribArray(GLuint index)
  3047. {
  3048. UNUSED_PARAMETER(index);
  3049. Warning( "glDisableVertexAttribArray", " not available." );
  3050. }
  3051. static void REGAL_CALL glDrawBuffers(GLsizei n, const GLenum *bufs)
  3052. {
  3053. UNUSED_PARAMETER(n);
  3054. UNUSED_PARAMETER(bufs);
  3055. Warning( "glDrawBuffers", " not available." );
  3056. }
  3057. static void REGAL_CALL glEnableVertexAttribArray(GLuint index)
  3058. {
  3059. UNUSED_PARAMETER(index);
  3060. Warning( "glEnableVertexAttribArray", " not available." );
  3061. }
  3062. static void REGAL_CALL glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name)
  3063. {
  3064. UNUSED_PARAMETER(program);
  3065. UNUSED_PARAMETER(index);
  3066. UNUSED_PARAMETER(bufSize);
  3067. UNUSED_PARAMETER(length);
  3068. UNUSED_PARAMETER(size);
  3069. UNUSED_PARAMETER(type);
  3070. UNUSED_PARAMETER(name);
  3071. Warning( "glGetActiveAttrib", " not available." );
  3072. }
  3073. static void REGAL_CALL glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name)
  3074. {
  3075. UNUSED_PARAMETER(program);
  3076. UNUSED_PARAMETER(index);
  3077. UNUSED_PARAMETER(bufSize);
  3078. UNUSED_PARAMETER(length);
  3079. UNUSED_PARAMETER(size);
  3080. UNUSED_PARAMETER(type);
  3081. UNUSED_PARAMETER(name);
  3082. Warning( "glGetActiveUniform", " not available." );
  3083. }
  3084. static void REGAL_CALL glGetAttachedShaders(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders)
  3085. {
  3086. UNUSED_PARAMETER(program);
  3087. UNUSED_PARAMETER(maxCount);
  3088. UNUSED_PARAMETER(count);
  3089. UNUSED_PARAMETER(shaders);
  3090. Warning( "glGetAttachedShaders", " not available." );
  3091. }
  3092. static GLint REGAL_CALL glGetAttribLocation(GLuint program, const GLchar *name)
  3093. {
  3094. UNUSED_PARAMETER(program);
  3095. UNUSED_PARAMETER(name);
  3096. Warning( "glGetAttribLocation", " not available." );
  3097. return 0;
  3098. }
  3099. static void REGAL_CALL glGetProgramInfoLog(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog)
  3100. {
  3101. UNUSED_PARAMETER(program);
  3102. UNUSED_PARAMETER(bufSize);
  3103. UNUSED_PARAMETER(length);
  3104. UNUSED_PARAMETER(infoLog);
  3105. Warning( "glGetProgramInfoLog", " not available." );
  3106. }
  3107. static void REGAL_CALL glGetProgramiv(GLuint program, GLenum pname, GLint *params)
  3108. {
  3109. UNUSED_PARAMETER(program);
  3110. UNUSED_PARAMETER(pname);
  3111. UNUSED_PARAMETER(params);
  3112. Warning( "glGetProgramiv", " not available." );
  3113. }
  3114. static void REGAL_CALL glGetShaderInfoLog(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog)
  3115. {
  3116. UNUSED_PARAMETER(shader);
  3117. UNUSED_PARAMETER(bufSize);
  3118. UNUSED_PARAMETER(length);
  3119. UNUSED_PARAMETER(infoLog);
  3120. Warning( "glGetShaderInfoLog", " not available." );
  3121. }
  3122. static void REGAL_CALL glGetShaderSource(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source)
  3123. {
  3124. UNUSED_PARAMETER(shader);
  3125. UNUSED_PARAMETER(bufSize);
  3126. UNUSED_PARAMETER(length);
  3127. UNUSED_PARAMETER(source);
  3128. Warning( "glGetShaderSource", " not available." );
  3129. }
  3130. static void REGAL_CALL glGetShaderiv(GLuint shader, GLenum pname, GLint *params)
  3131. {
  3132. UNUSED_PARAMETER(shader);
  3133. UNUSED_PARAMETER(pname);
  3134. UNUSED_PARAMETER(params);
  3135. Warning( "glGetShaderiv", " not available." );
  3136. }
  3137. static GLint REGAL_CALL glGetUniformLocation(GLuint program, const GLchar *name)
  3138. {
  3139. UNUSED_PARAMETER(program);
  3140. UNUSED_PARAMETER(name);
  3141. Warning( "glGetUniformLocation", " not available." );
  3142. return 0;
  3143. }
  3144. static void REGAL_CALL glGetUniformfv(GLuint program, GLint location, GLfloat *params)
  3145. {
  3146. UNUSED_PARAMETER(program);
  3147. UNUSED_PARAMETER(location);
  3148. UNUSED_PARAMETER(params);
  3149. Warning( "glGetUniformfv", " not available." );
  3150. }
  3151. static void REGAL_CALL glGetUniformiv(GLuint program, GLint location, GLint *params)
  3152. {
  3153. UNUSED_PARAMETER(program);
  3154. UNUSED_PARAMETER(location);
  3155. UNUSED_PARAMETER(params);
  3156. Warning( "glGetUniformiv", " not available." );
  3157. }
  3158. static void REGAL_CALL glGetVertexAttribPointerv(GLuint index, GLenum pname, GLvoid **pointer)
  3159. {
  3160. UNUSED_PARAMETER(index);
  3161. UNUSED_PARAMETER(pname);
  3162. UNUSED_PARAMETER(pointer);
  3163. Warning( "glGetVertexAttribPointerv", " not available." );
  3164. }
  3165. static void REGAL_CALL glGetVertexAttribdv(GLuint index, GLenum pname, GLdouble *params)
  3166. {
  3167. UNUSED_PARAMETER(index);
  3168. UNUSED_PARAMETER(pname);
  3169. UNUSED_PARAMETER(params);
  3170. Warning( "glGetVertexAttribdv", " not available." );
  3171. }
  3172. static void REGAL_CALL glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params)
  3173. {
  3174. UNUSED_PARAMETER(index);
  3175. UNUSED_PARAMETER(pname);
  3176. UNUSED_PARAMETER(params);
  3177. Warning( "glGetVertexAttribfv", " not available." );
  3178. }
  3179. static void REGAL_CALL glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params)
  3180. {
  3181. UNUSED_PARAMETER(index);
  3182. UNUSED_PARAMETER(pname);
  3183. UNUSED_PARAMETER(params);
  3184. Warning( "glGetVertexAttribiv", " not available." );
  3185. }
  3186. static GLboolean REGAL_CALL glIsProgram(GLuint program)
  3187. {
  3188. UNUSED_PARAMETER(program);
  3189. Warning( "glIsProgram", " not available." );
  3190. return GL_FALSE;
  3191. }
  3192. static GLboolean REGAL_CALL glIsShader(GLuint shader)
  3193. {
  3194. UNUSED_PARAMETER(shader);
  3195. Warning( "glIsShader", " not available." );
  3196. return GL_FALSE;
  3197. }
  3198. static void REGAL_CALL glLinkProgram(GLuint program)
  3199. {
  3200. UNUSED_PARAMETER(program);
  3201. Warning( "glLinkProgram", " not available." );
  3202. }
  3203. static void REGAL_CALL glShaderSource(GLuint shader, GLsizei count, const GLchar * const *string, const GLint *length)
  3204. {
  3205. UNUSED_PARAMETER(shader);
  3206. UNUSED_PARAMETER(count);
  3207. UNUSED_PARAMETER(string);
  3208. UNUSED_PARAMETER(length);
  3209. Warning( "glShaderSource", " not available." );
  3210. }
  3211. static void REGAL_CALL glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask)
  3212. {
  3213. UNUSED_PARAMETER(face);
  3214. UNUSED_PARAMETER(func);
  3215. UNUSED_PARAMETER(ref);
  3216. UNUSED_PARAMETER(mask);
  3217. Warning( "glStencilFuncSeparate", " not available." );
  3218. }
  3219. static void REGAL_CALL glStencilMaskSeparate(GLenum face, GLuint mask)
  3220. {
  3221. UNUSED_PARAMETER(face);
  3222. UNUSED_PARAMETER(mask);
  3223. Warning( "glStencilMaskSeparate", " not available." );
  3224. }
  3225. static void REGAL_CALL glStencilOpSeparate(GLenum face, GLenum fail, GLenum zfail, GLenum zpass)
  3226. {
  3227. UNUSED_PARAMETER(face);
  3228. UNUSED_PARAMETER(fail);
  3229. UNUSED_PARAMETER(zfail);
  3230. UNUSED_PARAMETER(zpass);
  3231. Warning( "glStencilOpSeparate", " not available." );
  3232. }
  3233. static void REGAL_CALL glUniform1f(GLint location, GLfloat v0)
  3234. {
  3235. UNUSED_PARAMETER(location);
  3236. UNUSED_PARAMETER(v0);
  3237. Warning( "glUniform1f", " not available." );
  3238. }
  3239. static void REGAL_CALL glUniform1fv(GLint location, GLsizei count, const GLfloat *value)
  3240. {
  3241. UNUSED_PARAMETER(location);
  3242. UNUSED_PARAMETER(count);
  3243. UNUSED_PARAMETER(value);
  3244. Warning( "glUniform1fv", " not available." );
  3245. }
  3246. static void REGAL_CALL glUniform1i(GLint location, GLint v0)
  3247. {
  3248. UNUSED_PARAMETER(location);
  3249. UNUSED_PARAMETER(v0);
  3250. Warning( "glUniform1i", " not available." );
  3251. }
  3252. static void REGAL_CALL glUniform1iv(GLint location, GLsizei count, const GLint *value)
  3253. {
  3254. UNUSED_PARAMETER(location);
  3255. UNUSED_PARAMETER(count);
  3256. UNUSED_PARAMETER(value);
  3257. Warning( "glUniform1iv", " not available." );
  3258. }
  3259. static void REGAL_CALL glUniform2f(GLint location, GLfloat v0, GLfloat v1)
  3260. {
  3261. UNUSED_PARAMETER(location);
  3262. UNUSED_PARAMETER(v0);
  3263. UNUSED_PARAMETER(v1);
  3264. Warning( "glUniform2f", " not available." );
  3265. }
  3266. static void REGAL_CALL glUniform2fv(GLint location, GLsizei count, const GLfloat *value)
  3267. {
  3268. UNUSED_PARAMETER(location);
  3269. UNUSED_PARAMETER(count);
  3270. UNUSED_PARAMETER(value);
  3271. Warning( "glUniform2fv", " not available." );
  3272. }
  3273. static void REGAL_CALL glUniform2i(GLint location, GLint v0, GLint v1)
  3274. {
  3275. UNUSED_PARAMETER(location);
  3276. UNUSED_PARAMETER(v0);
  3277. UNUSED_PARAMETER(v1);
  3278. Warning( "glUniform2i", " not available." );
  3279. }
  3280. static void REGAL_CALL glUniform2iv(GLint location, GLsizei count, const GLint *value)
  3281. {
  3282. UNUSED_PARAMETER(location);
  3283. UNUSED_PARAMETER(count);
  3284. UNUSED_PARAMETER(value);
  3285. Warning( "glUniform2iv", " not available." );
  3286. }
  3287. static void REGAL_CALL glUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2)
  3288. {
  3289. UNUSED_PARAMETER(location);
  3290. UNUSED_PARAMETER(v0);
  3291. UNUSED_PARAMETER(v1);
  3292. UNUSED_PARAMETER(v2);
  3293. Warning( "glUniform3f", " not available." );
  3294. }
  3295. static void REGAL_CALL glUniform3fv(GLint location, GLsizei count, const GLfloat *value)
  3296. {
  3297. UNUSED_PARAMETER(location);
  3298. UNUSED_PARAMETER(count);
  3299. UNUSED_PARAMETER(value);
  3300. Warning( "glUniform3fv", " not available." );
  3301. }
  3302. static void REGAL_CALL glUniform3i(GLint location, GLint v0, GLint v1, GLint v2)
  3303. {
  3304. UNUSED_PARAMETER(location);
  3305. UNUSED_PARAMETER(v0);
  3306. UNUSED_PARAMETER(v1);
  3307. UNUSED_PARAMETER(v2);
  3308. Warning( "glUniform3i", " not available." );
  3309. }
  3310. static void REGAL_CALL glUniform3iv(GLint location, GLsizei count, const GLint *value)
  3311. {
  3312. UNUSED_PARAMETER(location);
  3313. UNUSED_PARAMETER(count);
  3314. UNUSED_PARAMETER(value);
  3315. Warning( "glUniform3iv", " not available." );
  3316. }
  3317. static void REGAL_CALL glUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3)
  3318. {
  3319. UNUSED_PARAMETER(location);
  3320. UNUSED_PARAMETER(v0);
  3321. UNUSED_PARAMETER(v1);
  3322. UNUSED_PARAMETER(v2);
  3323. UNUSED_PARAMETER(v3);
  3324. Warning( "glUniform4f", " not available." );
  3325. }
  3326. static void REGAL_CALL glUniform4fv(GLint location, GLsizei count, const GLfloat *value)
  3327. {
  3328. UNUSED_PARAMETER(location);
  3329. UNUSED_PARAMETER(count);
  3330. UNUSED_PARAMETER(value);
  3331. Warning( "glUniform4fv", " not available." );
  3332. }
  3333. static void REGAL_CALL glUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3)
  3334. {
  3335. UNUSED_PARAMETER(location);
  3336. UNUSED_PARAMETER(v0);
  3337. UNUSED_PARAMETER(v1);
  3338. UNUSED_PARAMETER(v2);
  3339. UNUSED_PARAMETER(v3);
  3340. Warning( "glUniform4i", " not available." );
  3341. }
  3342. static void REGAL_CALL glUniform4iv(GLint location, GLsizei count, const GLint *value)
  3343. {
  3344. UNUSED_PARAMETER(location);
  3345. UNUSED_PARAMETER(count);
  3346. UNUSED_PARAMETER(value);
  3347. Warning( "glUniform4iv", " not available." );
  3348. }
  3349. static void REGAL_CALL glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3350. {
  3351. UNUSED_PARAMETER(location);
  3352. UNUSED_PARAMETER(count);
  3353. UNUSED_PARAMETER(transpose);
  3354. UNUSED_PARAMETER(value);
  3355. Warning( "glUniformMatrix2fv", " not available." );
  3356. }
  3357. static void REGAL_CALL glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3358. {
  3359. UNUSED_PARAMETER(location);
  3360. UNUSED_PARAMETER(count);
  3361. UNUSED_PARAMETER(transpose);
  3362. UNUSED_PARAMETER(value);
  3363. Warning( "glUniformMatrix3fv", " not available." );
  3364. }
  3365. static void REGAL_CALL glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3366. {
  3367. UNUSED_PARAMETER(location);
  3368. UNUSED_PARAMETER(count);
  3369. UNUSED_PARAMETER(transpose);
  3370. UNUSED_PARAMETER(value);
  3371. Warning( "glUniformMatrix4fv", " not available." );
  3372. }
  3373. static void REGAL_CALL glUseProgram(GLuint program)
  3374. {
  3375. UNUSED_PARAMETER(program);
  3376. Warning( "glUseProgram", " not available." );
  3377. }
  3378. static void REGAL_CALL glValidateProgram(GLuint program)
  3379. {
  3380. UNUSED_PARAMETER(program);
  3381. Warning( "glValidateProgram", " not available." );
  3382. }
  3383. static void REGAL_CALL glVertexAttrib1d(GLuint index, GLdouble x)
  3384. {
  3385. UNUSED_PARAMETER(index);
  3386. UNUSED_PARAMETER(x);
  3387. Warning( "glVertexAttrib1d", " not available." );
  3388. }
  3389. static void REGAL_CALL glVertexAttrib1dv(GLuint index, const GLdouble *v)
  3390. {
  3391. UNUSED_PARAMETER(index);
  3392. UNUSED_PARAMETER(v);
  3393. Warning( "glVertexAttrib1dv", " not available." );
  3394. }
  3395. static void REGAL_CALL glVertexAttrib1f(GLuint index, GLfloat x)
  3396. {
  3397. UNUSED_PARAMETER(index);
  3398. UNUSED_PARAMETER(x);
  3399. Warning( "glVertexAttrib1f", " not available." );
  3400. }
  3401. static void REGAL_CALL glVertexAttrib1fv(GLuint index, const GLfloat *v)
  3402. {
  3403. UNUSED_PARAMETER(index);
  3404. UNUSED_PARAMETER(v);
  3405. Warning( "glVertexAttrib1fv", " not available." );
  3406. }
  3407. static void REGAL_CALL glVertexAttrib1s(GLuint index, GLshort x)
  3408. {
  3409. UNUSED_PARAMETER(index);
  3410. UNUSED_PARAMETER(x);
  3411. Warning( "glVertexAttrib1s", " not available." );
  3412. }
  3413. static void REGAL_CALL glVertexAttrib1sv(GLuint index, const GLshort *v)
  3414. {
  3415. UNUSED_PARAMETER(index);
  3416. UNUSED_PARAMETER(v);
  3417. Warning( "glVertexAttrib1sv", " not available." );
  3418. }
  3419. static void REGAL_CALL glVertexAttrib2d(GLuint index, GLdouble x, GLdouble y)
  3420. {
  3421. UNUSED_PARAMETER(index);
  3422. UNUSED_PARAMETER(x);
  3423. UNUSED_PARAMETER(y);
  3424. Warning( "glVertexAttrib2d", " not available." );
  3425. }
  3426. static void REGAL_CALL glVertexAttrib2dv(GLuint index, const GLdouble *v)
  3427. {
  3428. UNUSED_PARAMETER(index);
  3429. UNUSED_PARAMETER(v);
  3430. Warning( "glVertexAttrib2dv", " not available." );
  3431. }
  3432. static void REGAL_CALL glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y)
  3433. {
  3434. UNUSED_PARAMETER(index);
  3435. UNUSED_PARAMETER(x);
  3436. UNUSED_PARAMETER(y);
  3437. Warning( "glVertexAttrib2f", " not available." );
  3438. }
  3439. static void REGAL_CALL glVertexAttrib2fv(GLuint index, const GLfloat *v)
  3440. {
  3441. UNUSED_PARAMETER(index);
  3442. UNUSED_PARAMETER(v);
  3443. Warning( "glVertexAttrib2fv", " not available." );
  3444. }
  3445. static void REGAL_CALL glVertexAttrib2s(GLuint index, GLshort x, GLshort y)
  3446. {
  3447. UNUSED_PARAMETER(index);
  3448. UNUSED_PARAMETER(x);
  3449. UNUSED_PARAMETER(y);
  3450. Warning( "glVertexAttrib2s", " not available." );
  3451. }
  3452. static void REGAL_CALL glVertexAttrib2sv(GLuint index, const GLshort *v)
  3453. {
  3454. UNUSED_PARAMETER(index);
  3455. UNUSED_PARAMETER(v);
  3456. Warning( "glVertexAttrib2sv", " not available." );
  3457. }
  3458. static void REGAL_CALL glVertexAttrib3d(GLuint index, GLdouble x, GLdouble y, GLdouble z)
  3459. {
  3460. UNUSED_PARAMETER(index);
  3461. UNUSED_PARAMETER(x);
  3462. UNUSED_PARAMETER(y);
  3463. UNUSED_PARAMETER(z);
  3464. Warning( "glVertexAttrib3d", " not available." );
  3465. }
  3466. static void REGAL_CALL glVertexAttrib3dv(GLuint index, const GLdouble *v)
  3467. {
  3468. UNUSED_PARAMETER(index);
  3469. UNUSED_PARAMETER(v);
  3470. Warning( "glVertexAttrib3dv", " not available." );
  3471. }
  3472. static void REGAL_CALL glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z)
  3473. {
  3474. UNUSED_PARAMETER(index);
  3475. UNUSED_PARAMETER(x);
  3476. UNUSED_PARAMETER(y);
  3477. UNUSED_PARAMETER(z);
  3478. Warning( "glVertexAttrib3f", " not available." );
  3479. }
  3480. static void REGAL_CALL glVertexAttrib3fv(GLuint index, const GLfloat *v)
  3481. {
  3482. UNUSED_PARAMETER(index);
  3483. UNUSED_PARAMETER(v);
  3484. Warning( "glVertexAttrib3fv", " not available." );
  3485. }
  3486. static void REGAL_CALL glVertexAttrib3s(GLuint index, GLshort x, GLshort y, GLshort z)
  3487. {
  3488. UNUSED_PARAMETER(index);
  3489. UNUSED_PARAMETER(x);
  3490. UNUSED_PARAMETER(y);
  3491. UNUSED_PARAMETER(z);
  3492. Warning( "glVertexAttrib3s", " not available." );
  3493. }
  3494. static void REGAL_CALL glVertexAttrib3sv(GLuint index, const GLshort *v)
  3495. {
  3496. UNUSED_PARAMETER(index);
  3497. UNUSED_PARAMETER(v);
  3498. Warning( "glVertexAttrib3sv", " not available." );
  3499. }
  3500. static void REGAL_CALL glVertexAttrib4Nbv(GLuint index, const GLbyte *v)
  3501. {
  3502. UNUSED_PARAMETER(index);
  3503. UNUSED_PARAMETER(v);
  3504. Warning( "glVertexAttrib4Nbv", " not available." );
  3505. }
  3506. static void REGAL_CALL glVertexAttrib4Niv(GLuint index, const GLint *v)
  3507. {
  3508. UNUSED_PARAMETER(index);
  3509. UNUSED_PARAMETER(v);
  3510. Warning( "glVertexAttrib4Niv", " not available." );
  3511. }
  3512. static void REGAL_CALL glVertexAttrib4Nsv(GLuint index, const GLshort *v)
  3513. {
  3514. UNUSED_PARAMETER(index);
  3515. UNUSED_PARAMETER(v);
  3516. Warning( "glVertexAttrib4Nsv", " not available." );
  3517. }
  3518. static void REGAL_CALL glVertexAttrib4Nub(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w)
  3519. {
  3520. UNUSED_PARAMETER(index);
  3521. UNUSED_PARAMETER(x);
  3522. UNUSED_PARAMETER(y);
  3523. UNUSED_PARAMETER(z);
  3524. UNUSED_PARAMETER(w);
  3525. Warning( "glVertexAttrib4Nub", " not available." );
  3526. }
  3527. static void REGAL_CALL glVertexAttrib4Nubv(GLuint index, const GLubyte *v)
  3528. {
  3529. UNUSED_PARAMETER(index);
  3530. UNUSED_PARAMETER(v);
  3531. Warning( "glVertexAttrib4Nubv", " not available." );
  3532. }
  3533. static void REGAL_CALL glVertexAttrib4Nuiv(GLuint index, const GLuint *v)
  3534. {
  3535. UNUSED_PARAMETER(index);
  3536. UNUSED_PARAMETER(v);
  3537. Warning( "glVertexAttrib4Nuiv", " not available." );
  3538. }
  3539. static void REGAL_CALL glVertexAttrib4Nusv(GLuint index, const GLushort *v)
  3540. {
  3541. UNUSED_PARAMETER(index);
  3542. UNUSED_PARAMETER(v);
  3543. Warning( "glVertexAttrib4Nusv", " not available." );
  3544. }
  3545. static void REGAL_CALL glVertexAttrib4bv(GLuint index, const GLbyte *v)
  3546. {
  3547. UNUSED_PARAMETER(index);
  3548. UNUSED_PARAMETER(v);
  3549. Warning( "glVertexAttrib4bv", " not available." );
  3550. }
  3551. static void REGAL_CALL glVertexAttrib4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  3552. {
  3553. UNUSED_PARAMETER(index);
  3554. UNUSED_PARAMETER(x);
  3555. UNUSED_PARAMETER(y);
  3556. UNUSED_PARAMETER(z);
  3557. UNUSED_PARAMETER(w);
  3558. Warning( "glVertexAttrib4d", " not available." );
  3559. }
  3560. static void REGAL_CALL glVertexAttrib4dv(GLuint index, const GLdouble *v)
  3561. {
  3562. UNUSED_PARAMETER(index);
  3563. UNUSED_PARAMETER(v);
  3564. Warning( "glVertexAttrib4dv", " not available." );
  3565. }
  3566. static void REGAL_CALL glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  3567. {
  3568. UNUSED_PARAMETER(index);
  3569. UNUSED_PARAMETER(x);
  3570. UNUSED_PARAMETER(y);
  3571. UNUSED_PARAMETER(z);
  3572. UNUSED_PARAMETER(w);
  3573. Warning( "glVertexAttrib4f", " not available." );
  3574. }
  3575. static void REGAL_CALL glVertexAttrib4fv(GLuint index, const GLfloat *v)
  3576. {
  3577. UNUSED_PARAMETER(index);
  3578. UNUSED_PARAMETER(v);
  3579. Warning( "glVertexAttrib4fv", " not available." );
  3580. }
  3581. static void REGAL_CALL glVertexAttrib4iv(GLuint index, const GLint *v)
  3582. {
  3583. UNUSED_PARAMETER(index);
  3584. UNUSED_PARAMETER(v);
  3585. Warning( "glVertexAttrib4iv", " not available." );
  3586. }
  3587. static void REGAL_CALL glVertexAttrib4s(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w)
  3588. {
  3589. UNUSED_PARAMETER(index);
  3590. UNUSED_PARAMETER(x);
  3591. UNUSED_PARAMETER(y);
  3592. UNUSED_PARAMETER(z);
  3593. UNUSED_PARAMETER(w);
  3594. Warning( "glVertexAttrib4s", " not available." );
  3595. }
  3596. static void REGAL_CALL glVertexAttrib4sv(GLuint index, const GLshort *v)
  3597. {
  3598. UNUSED_PARAMETER(index);
  3599. UNUSED_PARAMETER(v);
  3600. Warning( "glVertexAttrib4sv", " not available." );
  3601. }
  3602. static void REGAL_CALL glVertexAttrib4ubv(GLuint index, const GLubyte *v)
  3603. {
  3604. UNUSED_PARAMETER(index);
  3605. UNUSED_PARAMETER(v);
  3606. Warning( "glVertexAttrib4ubv", " not available." );
  3607. }
  3608. static void REGAL_CALL glVertexAttrib4uiv(GLuint index, const GLuint *v)
  3609. {
  3610. UNUSED_PARAMETER(index);
  3611. UNUSED_PARAMETER(v);
  3612. Warning( "glVertexAttrib4uiv", " not available." );
  3613. }
  3614. static void REGAL_CALL glVertexAttrib4usv(GLuint index, const GLushort *v)
  3615. {
  3616. UNUSED_PARAMETER(index);
  3617. UNUSED_PARAMETER(v);
  3618. Warning( "glVertexAttrib4usv", " not available." );
  3619. }
  3620. static void REGAL_CALL glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer)
  3621. {
  3622. UNUSED_PARAMETER(index);
  3623. UNUSED_PARAMETER(size);
  3624. UNUSED_PARAMETER(type);
  3625. UNUSED_PARAMETER(normalized);
  3626. UNUSED_PARAMETER(stride);
  3627. UNUSED_PARAMETER(pointer);
  3628. Warning( "glVertexAttribPointer", " not available." );
  3629. }
  3630. // GL_VERSION_2_1
  3631. static void REGAL_CALL glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3632. {
  3633. UNUSED_PARAMETER(location);
  3634. UNUSED_PARAMETER(count);
  3635. UNUSED_PARAMETER(transpose);
  3636. UNUSED_PARAMETER(value);
  3637. Warning( "glUniformMatrix2x3fv", " not available." );
  3638. }
  3639. static void REGAL_CALL glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3640. {
  3641. UNUSED_PARAMETER(location);
  3642. UNUSED_PARAMETER(count);
  3643. UNUSED_PARAMETER(transpose);
  3644. UNUSED_PARAMETER(value);
  3645. Warning( "glUniformMatrix2x4fv", " not available." );
  3646. }
  3647. static void REGAL_CALL glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3648. {
  3649. UNUSED_PARAMETER(location);
  3650. UNUSED_PARAMETER(count);
  3651. UNUSED_PARAMETER(transpose);
  3652. UNUSED_PARAMETER(value);
  3653. Warning( "glUniformMatrix3x2fv", " not available." );
  3654. }
  3655. static void REGAL_CALL glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3656. {
  3657. UNUSED_PARAMETER(location);
  3658. UNUSED_PARAMETER(count);
  3659. UNUSED_PARAMETER(transpose);
  3660. UNUSED_PARAMETER(value);
  3661. Warning( "glUniformMatrix3x4fv", " not available." );
  3662. }
  3663. static void REGAL_CALL glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3664. {
  3665. UNUSED_PARAMETER(location);
  3666. UNUSED_PARAMETER(count);
  3667. UNUSED_PARAMETER(transpose);
  3668. UNUSED_PARAMETER(value);
  3669. Warning( "glUniformMatrix4x2fv", " not available." );
  3670. }
  3671. static void REGAL_CALL glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  3672. {
  3673. UNUSED_PARAMETER(location);
  3674. UNUSED_PARAMETER(count);
  3675. UNUSED_PARAMETER(transpose);
  3676. UNUSED_PARAMETER(value);
  3677. Warning( "glUniformMatrix4x3fv", " not available." );
  3678. }
  3679. // GL_VERSION_3_0
  3680. static void REGAL_CALL glBeginConditionalRender(GLuint id, GLenum mode)
  3681. {
  3682. UNUSED_PARAMETER(id);
  3683. UNUSED_PARAMETER(mode);
  3684. Warning( "glBeginConditionalRender", " not available." );
  3685. }
  3686. static void REGAL_CALL glBeginTransformFeedback(GLenum primitiveMode)
  3687. {
  3688. UNUSED_PARAMETER(primitiveMode);
  3689. Warning( "glBeginTransformFeedback", " not available." );
  3690. }
  3691. static void REGAL_CALL glBindFragDataLocation(GLuint program, GLuint color, const GLchar *name)
  3692. {
  3693. UNUSED_PARAMETER(program);
  3694. UNUSED_PARAMETER(color);
  3695. UNUSED_PARAMETER(name);
  3696. Warning( "glBindFragDataLocation", " not available." );
  3697. }
  3698. static void REGAL_CALL glClampColor(GLenum target, GLenum clamp)
  3699. {
  3700. UNUSED_PARAMETER(target);
  3701. UNUSED_PARAMETER(clamp);
  3702. Warning( "glClampColor", " not available." );
  3703. }
  3704. static void REGAL_CALL glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil)
  3705. {
  3706. UNUSED_PARAMETER(buffer);
  3707. UNUSED_PARAMETER(drawbuffer);
  3708. UNUSED_PARAMETER(depth);
  3709. UNUSED_PARAMETER(stencil);
  3710. Warning( "glClearBufferfi", " not available." );
  3711. }
  3712. static void REGAL_CALL glClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value)
  3713. {
  3714. UNUSED_PARAMETER(buffer);
  3715. UNUSED_PARAMETER(drawbuffer);
  3716. UNUSED_PARAMETER(value);
  3717. Warning( "glClearBufferfv", " not available." );
  3718. }
  3719. static void REGAL_CALL glClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value)
  3720. {
  3721. UNUSED_PARAMETER(buffer);
  3722. UNUSED_PARAMETER(drawbuffer);
  3723. UNUSED_PARAMETER(value);
  3724. Warning( "glClearBufferiv", " not available." );
  3725. }
  3726. static void REGAL_CALL glClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value)
  3727. {
  3728. UNUSED_PARAMETER(buffer);
  3729. UNUSED_PARAMETER(drawbuffer);
  3730. UNUSED_PARAMETER(value);
  3731. Warning( "glClearBufferuiv", " not available." );
  3732. }
  3733. static void REGAL_CALL glColorMaski(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a)
  3734. {
  3735. UNUSED_PARAMETER(index);
  3736. UNUSED_PARAMETER(r);
  3737. UNUSED_PARAMETER(g);
  3738. UNUSED_PARAMETER(b);
  3739. UNUSED_PARAMETER(a);
  3740. Warning( "glColorMaski", " not available." );
  3741. }
  3742. static void REGAL_CALL glDisablei(GLenum cap, GLuint index)
  3743. {
  3744. UNUSED_PARAMETER(cap);
  3745. UNUSED_PARAMETER(index);
  3746. Warning( "glDisablei", " not available." );
  3747. }
  3748. static void REGAL_CALL glEnablei(GLenum cap, GLuint index)
  3749. {
  3750. UNUSED_PARAMETER(cap);
  3751. UNUSED_PARAMETER(index);
  3752. Warning( "glEnablei", " not available." );
  3753. }
  3754. static void REGAL_CALL glEndConditionalRender(void)
  3755. {
  3756. Warning( "glEndConditionalRender", " not available." );
  3757. }
  3758. static void REGAL_CALL glEndTransformFeedback(void)
  3759. {
  3760. Warning( "glEndTransformFeedback", " not available." );
  3761. }
  3762. static void REGAL_CALL glGetBooleani_v(GLenum target, GLuint index, GLboolean *data)
  3763. {
  3764. UNUSED_PARAMETER(target);
  3765. UNUSED_PARAMETER(index);
  3766. UNUSED_PARAMETER(data);
  3767. Warning( "glGetBooleani_v", " not available." );
  3768. }
  3769. static GLint REGAL_CALL glGetFragDataLocation(GLuint program, const GLchar *name)
  3770. {
  3771. UNUSED_PARAMETER(program);
  3772. UNUSED_PARAMETER(name);
  3773. Warning( "glGetFragDataLocation", " not available." );
  3774. return 0;
  3775. }
  3776. static const GLubyte *REGAL_CALL glGetStringi(GLenum name, GLuint index)
  3777. {
  3778. UNUSED_PARAMETER(name);
  3779. UNUSED_PARAMETER(index);
  3780. Warning( "glGetStringi", " not available." );
  3781. return NULL;
  3782. }
  3783. static void REGAL_CALL glGetTexParameterIiv(GLenum target, GLenum pname, GLint *params)
  3784. {
  3785. UNUSED_PARAMETER(target);
  3786. UNUSED_PARAMETER(pname);
  3787. UNUSED_PARAMETER(params);
  3788. Warning( "glGetTexParameterIiv", " not available." );
  3789. }
  3790. static void REGAL_CALL glGetTexParameterIuiv(GLenum target, GLenum pname, GLuint *params)
  3791. {
  3792. UNUSED_PARAMETER(target);
  3793. UNUSED_PARAMETER(pname);
  3794. UNUSED_PARAMETER(params);
  3795. Warning( "glGetTexParameterIuiv", " not available." );
  3796. }
  3797. static void REGAL_CALL glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name)
  3798. {
  3799. UNUSED_PARAMETER(program);
  3800. UNUSED_PARAMETER(index);
  3801. UNUSED_PARAMETER(bufSize);
  3802. UNUSED_PARAMETER(length);
  3803. UNUSED_PARAMETER(size);
  3804. UNUSED_PARAMETER(type);
  3805. UNUSED_PARAMETER(name);
  3806. Warning( "glGetTransformFeedbackVarying", " not available." );
  3807. }
  3808. static void REGAL_CALL glGetUniformuiv(GLuint program, GLint location, GLuint *params)
  3809. {
  3810. UNUSED_PARAMETER(program);
  3811. UNUSED_PARAMETER(location);
  3812. UNUSED_PARAMETER(params);
  3813. Warning( "glGetUniformuiv", " not available." );
  3814. }
  3815. static void REGAL_CALL glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params)
  3816. {
  3817. UNUSED_PARAMETER(index);
  3818. UNUSED_PARAMETER(pname);
  3819. UNUSED_PARAMETER(params);
  3820. Warning( "glGetVertexAttribIiv", " not available." );
  3821. }
  3822. static void REGAL_CALL glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params)
  3823. {
  3824. UNUSED_PARAMETER(index);
  3825. UNUSED_PARAMETER(pname);
  3826. UNUSED_PARAMETER(params);
  3827. Warning( "glGetVertexAttribIuiv", " not available." );
  3828. }
  3829. static GLboolean REGAL_CALL glIsEnabledi(GLenum target, GLuint index)
  3830. {
  3831. UNUSED_PARAMETER(target);
  3832. UNUSED_PARAMETER(index);
  3833. Warning( "glIsEnabledi", " not available." );
  3834. return GL_FALSE;
  3835. }
  3836. static void REGAL_CALL glTexParameterIiv(GLenum target, GLenum pname, const GLint *params)
  3837. {
  3838. UNUSED_PARAMETER(target);
  3839. UNUSED_PARAMETER(pname);
  3840. UNUSED_PARAMETER(params);
  3841. Warning( "glTexParameterIiv", " not available." );
  3842. }
  3843. static void REGAL_CALL glTexParameterIuiv(GLenum target, GLenum pname, const GLuint *params)
  3844. {
  3845. UNUSED_PARAMETER(target);
  3846. UNUSED_PARAMETER(pname);
  3847. UNUSED_PARAMETER(params);
  3848. Warning( "glTexParameterIuiv", " not available." );
  3849. }
  3850. static void REGAL_CALL glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar * const *varyings, GLenum bufferMode)
  3851. {
  3852. UNUSED_PARAMETER(program);
  3853. UNUSED_PARAMETER(count);
  3854. UNUSED_PARAMETER(varyings);
  3855. UNUSED_PARAMETER(bufferMode);
  3856. Warning( "glTransformFeedbackVaryings", " not available." );
  3857. }
  3858. static void REGAL_CALL glUniform1ui(GLint location, GLuint v0)
  3859. {
  3860. UNUSED_PARAMETER(location);
  3861. UNUSED_PARAMETER(v0);
  3862. Warning( "glUniform1ui", " not available." );
  3863. }
  3864. static void REGAL_CALL glUniform1uiv(GLint location, GLsizei count, const GLuint *value)
  3865. {
  3866. UNUSED_PARAMETER(location);
  3867. UNUSED_PARAMETER(count);
  3868. UNUSED_PARAMETER(value);
  3869. Warning( "glUniform1uiv", " not available." );
  3870. }
  3871. static void REGAL_CALL glUniform2ui(GLint location, GLuint v0, GLuint v1)
  3872. {
  3873. UNUSED_PARAMETER(location);
  3874. UNUSED_PARAMETER(v0);
  3875. UNUSED_PARAMETER(v1);
  3876. Warning( "glUniform2ui", " not available." );
  3877. }
  3878. static void REGAL_CALL glUniform2uiv(GLint location, GLsizei count, const GLuint *value)
  3879. {
  3880. UNUSED_PARAMETER(location);
  3881. UNUSED_PARAMETER(count);
  3882. UNUSED_PARAMETER(value);
  3883. Warning( "glUniform2uiv", " not available." );
  3884. }
  3885. static void REGAL_CALL glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2)
  3886. {
  3887. UNUSED_PARAMETER(location);
  3888. UNUSED_PARAMETER(v0);
  3889. UNUSED_PARAMETER(v1);
  3890. UNUSED_PARAMETER(v2);
  3891. Warning( "glUniform3ui", " not available." );
  3892. }
  3893. static void REGAL_CALL glUniform3uiv(GLint location, GLsizei count, const GLuint *value)
  3894. {
  3895. UNUSED_PARAMETER(location);
  3896. UNUSED_PARAMETER(count);
  3897. UNUSED_PARAMETER(value);
  3898. Warning( "glUniform3uiv", " not available." );
  3899. }
  3900. static void REGAL_CALL glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3)
  3901. {
  3902. UNUSED_PARAMETER(location);
  3903. UNUSED_PARAMETER(v0);
  3904. UNUSED_PARAMETER(v1);
  3905. UNUSED_PARAMETER(v2);
  3906. UNUSED_PARAMETER(v3);
  3907. Warning( "glUniform4ui", " not available." );
  3908. }
  3909. static void REGAL_CALL glUniform4uiv(GLint location, GLsizei count, const GLuint *value)
  3910. {
  3911. UNUSED_PARAMETER(location);
  3912. UNUSED_PARAMETER(count);
  3913. UNUSED_PARAMETER(value);
  3914. Warning( "glUniform4uiv", " not available." );
  3915. }
  3916. static void REGAL_CALL glVertexAttribI1i(GLuint index, GLint x)
  3917. {
  3918. UNUSED_PARAMETER(index);
  3919. UNUSED_PARAMETER(x);
  3920. Warning( "glVertexAttribI1i", " not available." );
  3921. }
  3922. static void REGAL_CALL glVertexAttribI1iv(GLuint index, const GLint *v)
  3923. {
  3924. UNUSED_PARAMETER(index);
  3925. UNUSED_PARAMETER(v);
  3926. Warning( "glVertexAttribI1iv", " not available." );
  3927. }
  3928. static void REGAL_CALL glVertexAttribI1ui(GLuint index, GLuint x)
  3929. {
  3930. UNUSED_PARAMETER(index);
  3931. UNUSED_PARAMETER(x);
  3932. Warning( "glVertexAttribI1ui", " not available." );
  3933. }
  3934. static void REGAL_CALL glVertexAttribI1uiv(GLuint index, const GLuint *v)
  3935. {
  3936. UNUSED_PARAMETER(index);
  3937. UNUSED_PARAMETER(v);
  3938. Warning( "glVertexAttribI1uiv", " not available." );
  3939. }
  3940. static void REGAL_CALL glVertexAttribI2i(GLuint index, GLint x, GLint y)
  3941. {
  3942. UNUSED_PARAMETER(index);
  3943. UNUSED_PARAMETER(x);
  3944. UNUSED_PARAMETER(y);
  3945. Warning( "glVertexAttribI2i", " not available." );
  3946. }
  3947. static void REGAL_CALL glVertexAttribI2iv(GLuint index, const GLint *v)
  3948. {
  3949. UNUSED_PARAMETER(index);
  3950. UNUSED_PARAMETER(v);
  3951. Warning( "glVertexAttribI2iv", " not available." );
  3952. }
  3953. static void REGAL_CALL glVertexAttribI2ui(GLuint index, GLuint x, GLuint y)
  3954. {
  3955. UNUSED_PARAMETER(index);
  3956. UNUSED_PARAMETER(x);
  3957. UNUSED_PARAMETER(y);
  3958. Warning( "glVertexAttribI2ui", " not available." );
  3959. }
  3960. static void REGAL_CALL glVertexAttribI2uiv(GLuint index, const GLuint *v)
  3961. {
  3962. UNUSED_PARAMETER(index);
  3963. UNUSED_PARAMETER(v);
  3964. Warning( "glVertexAttribI2uiv", " not available." );
  3965. }
  3966. static void REGAL_CALL glVertexAttribI3i(GLuint index, GLint x, GLint y, GLint z)
  3967. {
  3968. UNUSED_PARAMETER(index);
  3969. UNUSED_PARAMETER(x);
  3970. UNUSED_PARAMETER(y);
  3971. UNUSED_PARAMETER(z);
  3972. Warning( "glVertexAttribI3i", " not available." );
  3973. }
  3974. static void REGAL_CALL glVertexAttribI3iv(GLuint index, const GLint *v)
  3975. {
  3976. UNUSED_PARAMETER(index);
  3977. UNUSED_PARAMETER(v);
  3978. Warning( "glVertexAttribI3iv", " not available." );
  3979. }
  3980. static void REGAL_CALL glVertexAttribI3ui(GLuint index, GLuint x, GLuint y, GLuint z)
  3981. {
  3982. UNUSED_PARAMETER(index);
  3983. UNUSED_PARAMETER(x);
  3984. UNUSED_PARAMETER(y);
  3985. UNUSED_PARAMETER(z);
  3986. Warning( "glVertexAttribI3ui", " not available." );
  3987. }
  3988. static void REGAL_CALL glVertexAttribI3uiv(GLuint index, const GLuint *v)
  3989. {
  3990. UNUSED_PARAMETER(index);
  3991. UNUSED_PARAMETER(v);
  3992. Warning( "glVertexAttribI3uiv", " not available." );
  3993. }
  3994. static void REGAL_CALL glVertexAttribI4bv(GLuint index, const GLbyte *v)
  3995. {
  3996. UNUSED_PARAMETER(index);
  3997. UNUSED_PARAMETER(v);
  3998. Warning( "glVertexAttribI4bv", " not available." );
  3999. }
  4000. static void REGAL_CALL glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w)
  4001. {
  4002. UNUSED_PARAMETER(index);
  4003. UNUSED_PARAMETER(x);
  4004. UNUSED_PARAMETER(y);
  4005. UNUSED_PARAMETER(z);
  4006. UNUSED_PARAMETER(w);
  4007. Warning( "glVertexAttribI4i", " not available." );
  4008. }
  4009. static void REGAL_CALL glVertexAttribI4iv(GLuint index, const GLint *v)
  4010. {
  4011. UNUSED_PARAMETER(index);
  4012. UNUSED_PARAMETER(v);
  4013. Warning( "glVertexAttribI4iv", " not available." );
  4014. }
  4015. static void REGAL_CALL glVertexAttribI4sv(GLuint index, const GLshort *v)
  4016. {
  4017. UNUSED_PARAMETER(index);
  4018. UNUSED_PARAMETER(v);
  4019. Warning( "glVertexAttribI4sv", " not available." );
  4020. }
  4021. static void REGAL_CALL glVertexAttribI4ubv(GLuint index, const GLubyte *v)
  4022. {
  4023. UNUSED_PARAMETER(index);
  4024. UNUSED_PARAMETER(v);
  4025. Warning( "glVertexAttribI4ubv", " not available." );
  4026. }
  4027. static void REGAL_CALL glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)
  4028. {
  4029. UNUSED_PARAMETER(index);
  4030. UNUSED_PARAMETER(x);
  4031. UNUSED_PARAMETER(y);
  4032. UNUSED_PARAMETER(z);
  4033. UNUSED_PARAMETER(w);
  4034. Warning( "glVertexAttribI4ui", " not available." );
  4035. }
  4036. static void REGAL_CALL glVertexAttribI4uiv(GLuint index, const GLuint *v)
  4037. {
  4038. UNUSED_PARAMETER(index);
  4039. UNUSED_PARAMETER(v);
  4040. Warning( "glVertexAttribI4uiv", " not available." );
  4041. }
  4042. static void REGAL_CALL glVertexAttribI4usv(GLuint index, const GLushort *v)
  4043. {
  4044. UNUSED_PARAMETER(index);
  4045. UNUSED_PARAMETER(v);
  4046. Warning( "glVertexAttribI4usv", " not available." );
  4047. }
  4048. static void REGAL_CALL glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  4049. {
  4050. UNUSED_PARAMETER(index);
  4051. UNUSED_PARAMETER(size);
  4052. UNUSED_PARAMETER(type);
  4053. UNUSED_PARAMETER(stride);
  4054. UNUSED_PARAMETER(pointer);
  4055. Warning( "glVertexAttribIPointer", " not available." );
  4056. }
  4057. // GL_VERSION_3_1
  4058. static void REGAL_CALL glDrawArraysInstanced(GLenum mode, GLint start, GLsizei count, GLsizei primcount)
  4059. {
  4060. UNUSED_PARAMETER(mode);
  4061. UNUSED_PARAMETER(start);
  4062. UNUSED_PARAMETER(count);
  4063. UNUSED_PARAMETER(primcount);
  4064. Warning( "glDrawArraysInstanced", " not available." );
  4065. }
  4066. static void REGAL_CALL glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount)
  4067. {
  4068. UNUSED_PARAMETER(mode);
  4069. UNUSED_PARAMETER(count);
  4070. UNUSED_PARAMETER(type);
  4071. UNUSED_PARAMETER(indices);
  4072. UNUSED_PARAMETER(primcount);
  4073. Warning( "glDrawElementsInstanced", " not available." );
  4074. }
  4075. static void REGAL_CALL glPrimitiveRestartIndex(GLuint index)
  4076. {
  4077. UNUSED_PARAMETER(index);
  4078. Warning( "glPrimitiveRestartIndex", " not available." );
  4079. }
  4080. static void REGAL_CALL glTexBuffer(GLenum target, GLenum internalformat, GLuint buffer)
  4081. {
  4082. UNUSED_PARAMETER(target);
  4083. UNUSED_PARAMETER(internalformat);
  4084. UNUSED_PARAMETER(buffer);
  4085. Warning( "glTexBuffer", " not available." );
  4086. }
  4087. // GL_VERSION_3_2
  4088. static void REGAL_CALL glFramebufferTexture(GLenum target, GLenum attachment, GLuint texture, GLint level)
  4089. {
  4090. UNUSED_PARAMETER(target);
  4091. UNUSED_PARAMETER(attachment);
  4092. UNUSED_PARAMETER(texture);
  4093. UNUSED_PARAMETER(level);
  4094. Warning( "glFramebufferTexture", " not available." );
  4095. }
  4096. static void REGAL_CALL glGetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params)
  4097. {
  4098. UNUSED_PARAMETER(target);
  4099. UNUSED_PARAMETER(pname);
  4100. UNUSED_PARAMETER(params);
  4101. Warning( "glGetBufferParameteri64v", " not available." );
  4102. }
  4103. static void REGAL_CALL glGetInteger64i_v(GLenum target, GLuint index, GLint64 *data)
  4104. {
  4105. UNUSED_PARAMETER(target);
  4106. UNUSED_PARAMETER(index);
  4107. UNUSED_PARAMETER(data);
  4108. Warning( "glGetInteger64i_v", " not available." );
  4109. }
  4110. // GL_VERSION_3_3
  4111. static void REGAL_CALL glVertexAttribDivisor(GLuint index, GLuint divisor)
  4112. {
  4113. UNUSED_PARAMETER(index);
  4114. UNUSED_PARAMETER(divisor);
  4115. Warning( "glVertexAttribDivisor", " not available." );
  4116. }
  4117. // GL_VERSION_4_0
  4118. static void REGAL_CALL glBlendEquationSeparatei(GLuint buf, GLenum modeRGB, GLenum modeAlpha)
  4119. {
  4120. UNUSED_PARAMETER(buf);
  4121. UNUSED_PARAMETER(modeRGB);
  4122. UNUSED_PARAMETER(modeAlpha);
  4123. Warning( "glBlendEquationSeparatei", " not available." );
  4124. }
  4125. static void REGAL_CALL glBlendEquationi(GLuint buf, GLenum mode)
  4126. {
  4127. UNUSED_PARAMETER(buf);
  4128. UNUSED_PARAMETER(mode);
  4129. Warning( "glBlendEquationi", " not available." );
  4130. }
  4131. static void REGAL_CALL glBlendFuncSeparatei(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha)
  4132. {
  4133. UNUSED_PARAMETER(buf);
  4134. UNUSED_PARAMETER(srcRGB);
  4135. UNUSED_PARAMETER(dstRGB);
  4136. UNUSED_PARAMETER(srcAlpha);
  4137. UNUSED_PARAMETER(dstAlpha);
  4138. Warning( "glBlendFuncSeparatei", " not available." );
  4139. }
  4140. static void REGAL_CALL glBlendFunci(GLuint buf, GLenum src, GLenum dst)
  4141. {
  4142. UNUSED_PARAMETER(buf);
  4143. UNUSED_PARAMETER(src);
  4144. UNUSED_PARAMETER(dst);
  4145. Warning( "glBlendFunci", " not available." );
  4146. }
  4147. // GL_3DFX_tbuffer
  4148. static void REGAL_CALL glTbufferMask3DFX(GLuint mask)
  4149. {
  4150. UNUSED_PARAMETER(mask);
  4151. Warning( "glTbufferMask3DFX", " not available." );
  4152. }
  4153. // GL_AMD_debug_output
  4154. static void REGAL_CALL glDebugMessageCallbackAMD(GLDEBUGPROCAMD callback, GLvoid *userParam)
  4155. {
  4156. UNUSED_PARAMETER(callback);
  4157. UNUSED_PARAMETER(userParam);
  4158. Warning( "glDebugMessageCallbackAMD", " not available." );
  4159. }
  4160. static void REGAL_CALL glDebugMessageEnableAMD(GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled)
  4161. {
  4162. UNUSED_PARAMETER(category);
  4163. UNUSED_PARAMETER(severity);
  4164. UNUSED_PARAMETER(count);
  4165. UNUSED_PARAMETER(ids);
  4166. UNUSED_PARAMETER(enabled);
  4167. Warning( "glDebugMessageEnableAMD", " not available." );
  4168. }
  4169. static void REGAL_CALL glDebugMessageInsertAMD(GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf)
  4170. {
  4171. UNUSED_PARAMETER(category);
  4172. UNUSED_PARAMETER(severity);
  4173. UNUSED_PARAMETER(id);
  4174. UNUSED_PARAMETER(length);
  4175. UNUSED_PARAMETER(buf);
  4176. Warning( "glDebugMessageInsertAMD", " not available." );
  4177. }
  4178. static GLuint REGAL_CALL glGetDebugMessageLogAMD(GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message)
  4179. {
  4180. UNUSED_PARAMETER(count);
  4181. UNUSED_PARAMETER(bufsize);
  4182. UNUSED_PARAMETER(categories);
  4183. UNUSED_PARAMETER(severities);
  4184. UNUSED_PARAMETER(ids);
  4185. UNUSED_PARAMETER(lengths);
  4186. UNUSED_PARAMETER(message);
  4187. Warning( "glGetDebugMessageLogAMD", " not available." );
  4188. return 0;
  4189. }
  4190. // GL_AMD_draw_buffers_blend
  4191. static void REGAL_CALL glBlendEquationIndexedAMD(GLuint buf, GLenum mode)
  4192. {
  4193. UNUSED_PARAMETER(buf);
  4194. UNUSED_PARAMETER(mode);
  4195. Warning( "glBlendEquationIndexedAMD", " not available." );
  4196. }
  4197. static void REGAL_CALL glBlendEquationSeparateIndexedAMD(GLuint buf, GLenum modeRGB, GLenum modeAlpha)
  4198. {
  4199. UNUSED_PARAMETER(buf);
  4200. UNUSED_PARAMETER(modeRGB);
  4201. UNUSED_PARAMETER(modeAlpha);
  4202. Warning( "glBlendEquationSeparateIndexedAMD", " not available." );
  4203. }
  4204. static void REGAL_CALL glBlendFuncIndexedAMD(GLuint buf, GLenum src, GLenum dst)
  4205. {
  4206. UNUSED_PARAMETER(buf);
  4207. UNUSED_PARAMETER(src);
  4208. UNUSED_PARAMETER(dst);
  4209. Warning( "glBlendFuncIndexedAMD", " not available." );
  4210. }
  4211. static void REGAL_CALL glBlendFuncSeparateIndexedAMD(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha)
  4212. {
  4213. UNUSED_PARAMETER(buf);
  4214. UNUSED_PARAMETER(srcRGB);
  4215. UNUSED_PARAMETER(dstRGB);
  4216. UNUSED_PARAMETER(srcAlpha);
  4217. UNUSED_PARAMETER(dstAlpha);
  4218. Warning( "glBlendFuncSeparateIndexedAMD", " not available." );
  4219. }
  4220. // GL_AMD_interleaved_elements
  4221. static void REGAL_CALL glVertexAttribParameteriAMD(GLuint index, GLenum pname, GLint param)
  4222. {
  4223. UNUSED_PARAMETER(index);
  4224. UNUSED_PARAMETER(pname);
  4225. UNUSED_PARAMETER(param);
  4226. Warning( "glVertexAttribParameteriAMD", " not available." );
  4227. }
  4228. // GL_AMD_multi_draw_indirect
  4229. static void REGAL_CALL glMultiDrawArraysIndirectAMD(GLenum mode, const GLvoid *indirect, GLsizei primcount, GLsizei stride)
  4230. {
  4231. UNUSED_PARAMETER(mode);
  4232. UNUSED_PARAMETER(indirect);
  4233. UNUSED_PARAMETER(primcount);
  4234. UNUSED_PARAMETER(stride);
  4235. Warning( "glMultiDrawArraysIndirectAMD", " not available." );
  4236. }
  4237. static void REGAL_CALL glMultiDrawElementsIndirectAMD(GLenum mode, GLenum type, const GLvoid *indirect, GLsizei primcount, GLsizei stride)
  4238. {
  4239. UNUSED_PARAMETER(mode);
  4240. UNUSED_PARAMETER(type);
  4241. UNUSED_PARAMETER(indirect);
  4242. UNUSED_PARAMETER(primcount);
  4243. UNUSED_PARAMETER(stride);
  4244. Warning( "glMultiDrawElementsIndirectAMD", " not available." );
  4245. }
  4246. // GL_AMD_name_gen_delete
  4247. static void REGAL_CALL glDeleteNamesAMD(GLenum identifier, GLuint num, const GLuint *names)
  4248. {
  4249. UNUSED_PARAMETER(identifier);
  4250. UNUSED_PARAMETER(num);
  4251. UNUSED_PARAMETER(names);
  4252. Warning( "glDeleteNamesAMD", " not available." );
  4253. }
  4254. static void REGAL_CALL glGenNamesAMD(GLenum identifier, GLuint num, GLuint *names)
  4255. {
  4256. UNUSED_PARAMETER(identifier);
  4257. UNUSED_PARAMETER(num);
  4258. UNUSED_PARAMETER(names);
  4259. Warning( "glGenNamesAMD", " not available." );
  4260. }
  4261. static GLboolean REGAL_CALL glIsNameAMD(GLenum identifier, GLuint name)
  4262. {
  4263. UNUSED_PARAMETER(identifier);
  4264. UNUSED_PARAMETER(name);
  4265. Warning( "glIsNameAMD", " not available." );
  4266. return GL_FALSE;
  4267. }
  4268. // GL_AMD_performance_monitor
  4269. static void REGAL_CALL glBeginPerfMonitorAMD(GLuint monitor)
  4270. {
  4271. UNUSED_PARAMETER(monitor);
  4272. Warning( "glBeginPerfMonitorAMD", " not available." );
  4273. }
  4274. static void REGAL_CALL glDeletePerfMonitorsAMD(GLsizei n, GLuint *monitors)
  4275. {
  4276. UNUSED_PARAMETER(n);
  4277. UNUSED_PARAMETER(monitors);
  4278. Warning( "glDeletePerfMonitorsAMD", " not available." );
  4279. }
  4280. static void REGAL_CALL glEndPerfMonitorAMD(GLuint monitor)
  4281. {
  4282. UNUSED_PARAMETER(monitor);
  4283. Warning( "glEndPerfMonitorAMD", " not available." );
  4284. }
  4285. static void REGAL_CALL glGenPerfMonitorsAMD(GLsizei n, GLuint *monitors)
  4286. {
  4287. UNUSED_PARAMETER(n);
  4288. UNUSED_PARAMETER(monitors);
  4289. Warning( "glGenPerfMonitorsAMD", " not available." );
  4290. }
  4291. static void REGAL_CALL glGetPerfMonitorCounterDataAMD(GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten)
  4292. {
  4293. UNUSED_PARAMETER(monitor);
  4294. UNUSED_PARAMETER(pname);
  4295. UNUSED_PARAMETER(dataSize);
  4296. UNUSED_PARAMETER(data);
  4297. UNUSED_PARAMETER(bytesWritten);
  4298. Warning( "glGetPerfMonitorCounterDataAMD", " not available." );
  4299. }
  4300. static void REGAL_CALL glGetPerfMonitorCounterInfoAMD(GLuint group, GLuint counter, GLenum pname, GLvoid *data)
  4301. {
  4302. UNUSED_PARAMETER(group);
  4303. UNUSED_PARAMETER(counter);
  4304. UNUSED_PARAMETER(pname);
  4305. UNUSED_PARAMETER(data);
  4306. Warning( "glGetPerfMonitorCounterInfoAMD", " not available." );
  4307. }
  4308. static void REGAL_CALL glGetPerfMonitorCounterStringAMD(GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString)
  4309. {
  4310. UNUSED_PARAMETER(group);
  4311. UNUSED_PARAMETER(counter);
  4312. UNUSED_PARAMETER(bufSize);
  4313. UNUSED_PARAMETER(length);
  4314. UNUSED_PARAMETER(counterString);
  4315. Warning( "glGetPerfMonitorCounterStringAMD", " not available." );
  4316. }
  4317. static void REGAL_CALL glGetPerfMonitorCountersAMD(GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei countersSize, GLuint *counters)
  4318. {
  4319. UNUSED_PARAMETER(group);
  4320. UNUSED_PARAMETER(numCounters);
  4321. UNUSED_PARAMETER(maxActiveCounters);
  4322. UNUSED_PARAMETER(countersSize);
  4323. UNUSED_PARAMETER(counters);
  4324. Warning( "glGetPerfMonitorCountersAMD", " not available." );
  4325. }
  4326. static void REGAL_CALL glGetPerfMonitorGroupStringAMD(GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString)
  4327. {
  4328. UNUSED_PARAMETER(group);
  4329. UNUSED_PARAMETER(bufSize);
  4330. UNUSED_PARAMETER(length);
  4331. UNUSED_PARAMETER(groupString);
  4332. Warning( "glGetPerfMonitorGroupStringAMD", " not available." );
  4333. }
  4334. static void REGAL_CALL glGetPerfMonitorGroupsAMD(GLint *numGroups, GLsizei groupsSize, GLuint *groups)
  4335. {
  4336. UNUSED_PARAMETER(numGroups);
  4337. UNUSED_PARAMETER(groupsSize);
  4338. UNUSED_PARAMETER(groups);
  4339. Warning( "glGetPerfMonitorGroupsAMD", " not available." );
  4340. }
  4341. static void REGAL_CALL glSelectPerfMonitorCountersAMD(GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList)
  4342. {
  4343. UNUSED_PARAMETER(monitor);
  4344. UNUSED_PARAMETER(enable);
  4345. UNUSED_PARAMETER(group);
  4346. UNUSED_PARAMETER(numCounters);
  4347. UNUSED_PARAMETER(counterList);
  4348. Warning( "glSelectPerfMonitorCountersAMD", " not available." );
  4349. }
  4350. // GL_AMD_sample_positions
  4351. static void REGAL_CALL glSetMultisamplefvAMD(GLenum pname, GLuint index, const GLfloat *val)
  4352. {
  4353. UNUSED_PARAMETER(pname);
  4354. UNUSED_PARAMETER(index);
  4355. UNUSED_PARAMETER(val);
  4356. Warning( "glSetMultisamplefvAMD", " not available." );
  4357. }
  4358. // GL_AMD_sparse_texture
  4359. static void REGAL_CALL glTexStorageSparseAMD(GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags)
  4360. {
  4361. UNUSED_PARAMETER(target);
  4362. UNUSED_PARAMETER(internalFormat);
  4363. UNUSED_PARAMETER(width);
  4364. UNUSED_PARAMETER(height);
  4365. UNUSED_PARAMETER(depth);
  4366. UNUSED_PARAMETER(layers);
  4367. UNUSED_PARAMETER(flags);
  4368. Warning( "glTexStorageSparseAMD", " not available." );
  4369. }
  4370. static void REGAL_CALL glTextureStorageSparseAMD(GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags)
  4371. {
  4372. UNUSED_PARAMETER(texture);
  4373. UNUSED_PARAMETER(target);
  4374. UNUSED_PARAMETER(internalFormat);
  4375. UNUSED_PARAMETER(width);
  4376. UNUSED_PARAMETER(height);
  4377. UNUSED_PARAMETER(depth);
  4378. UNUSED_PARAMETER(layers);
  4379. UNUSED_PARAMETER(flags);
  4380. Warning( "glTextureStorageSparseAMD", " not available." );
  4381. }
  4382. // GL_AMD_stencil_operation_extended
  4383. static void REGAL_CALL glStencilOpValueAMD(GLenum face, GLuint value)
  4384. {
  4385. UNUSED_PARAMETER(face);
  4386. UNUSED_PARAMETER(value);
  4387. Warning( "glStencilOpValueAMD", " not available." );
  4388. }
  4389. // GL_AMD_vertex_shader_tessellator
  4390. static void REGAL_CALL glTessellationFactorAMD(GLfloat factor)
  4391. {
  4392. UNUSED_PARAMETER(factor);
  4393. Warning( "glTessellationFactorAMD", " not available." );
  4394. }
  4395. static void REGAL_CALL glTessellationModeAMD(GLenum mode)
  4396. {
  4397. UNUSED_PARAMETER(mode);
  4398. Warning( "glTessellationModeAMD", " not available." );
  4399. }
  4400. // GL_ANGLE_framebuffer_blit
  4401. static void REGAL_CALL glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
  4402. {
  4403. UNUSED_PARAMETER(srcX0);
  4404. UNUSED_PARAMETER(srcY0);
  4405. UNUSED_PARAMETER(srcX1);
  4406. UNUSED_PARAMETER(srcY1);
  4407. UNUSED_PARAMETER(dstX0);
  4408. UNUSED_PARAMETER(dstY0);
  4409. UNUSED_PARAMETER(dstX1);
  4410. UNUSED_PARAMETER(dstY1);
  4411. UNUSED_PARAMETER(mask);
  4412. UNUSED_PARAMETER(filter);
  4413. Warning( "glBlitFramebufferANGLE", " not available." );
  4414. }
  4415. // GL_ANGLE_framebuffer_multisample
  4416. static void REGAL_CALL glRenderbufferStorageMultisampleANGLE(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
  4417. {
  4418. UNUSED_PARAMETER(target);
  4419. UNUSED_PARAMETER(samples);
  4420. UNUSED_PARAMETER(internalformat);
  4421. UNUSED_PARAMETER(width);
  4422. UNUSED_PARAMETER(height);
  4423. Warning( "glRenderbufferStorageMultisampleANGLE", " not available." );
  4424. }
  4425. // GL_ANGLE_instanced_arrays
  4426. static void REGAL_CALL glDrawArraysInstancedANGLE(GLenum mode, GLint first, GLsizei count, GLsizei primcount)
  4427. {
  4428. UNUSED_PARAMETER(mode);
  4429. UNUSED_PARAMETER(first);
  4430. UNUSED_PARAMETER(count);
  4431. UNUSED_PARAMETER(primcount);
  4432. Warning( "glDrawArraysInstancedANGLE", " not available." );
  4433. }
  4434. static void REGAL_CALL glDrawElementsInstancedANGLE(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount)
  4435. {
  4436. UNUSED_PARAMETER(mode);
  4437. UNUSED_PARAMETER(count);
  4438. UNUSED_PARAMETER(type);
  4439. UNUSED_PARAMETER(indices);
  4440. UNUSED_PARAMETER(primcount);
  4441. Warning( "glDrawElementsInstancedANGLE", " not available." );
  4442. }
  4443. static void REGAL_CALL glVertexAttribDivisorANGLE(GLuint index, GLuint divisor)
  4444. {
  4445. UNUSED_PARAMETER(index);
  4446. UNUSED_PARAMETER(divisor);
  4447. Warning( "glVertexAttribDivisorANGLE", " not available." );
  4448. }
  4449. // GL_ANGLE_timer_query
  4450. static void REGAL_CALL glBeginQueryANGLE(GLenum target, GLuint id)
  4451. {
  4452. UNUSED_PARAMETER(target);
  4453. UNUSED_PARAMETER(id);
  4454. Warning( "glBeginQueryANGLE", " not available." );
  4455. }
  4456. static void REGAL_CALL glDeleteQueriesANGLE(GLsizei n, const GLuint *ids)
  4457. {
  4458. UNUSED_PARAMETER(n);
  4459. UNUSED_PARAMETER(ids);
  4460. Warning( "glDeleteQueriesANGLE", " not available." );
  4461. }
  4462. static void REGAL_CALL glEndQueryANGLE(GLenum target)
  4463. {
  4464. UNUSED_PARAMETER(target);
  4465. Warning( "glEndQueryANGLE", " not available." );
  4466. }
  4467. static void REGAL_CALL glGenQueriesANGLE(GLsizei n, GLuint *ids)
  4468. {
  4469. UNUSED_PARAMETER(n);
  4470. UNUSED_PARAMETER(ids);
  4471. Warning( "glGenQueriesANGLE", " not available." );
  4472. }
  4473. static void REGAL_CALL glGetQueryObjecti64vANGLE(GLuint id, GLenum pname, GLint64 *params)
  4474. {
  4475. UNUSED_PARAMETER(id);
  4476. UNUSED_PARAMETER(pname);
  4477. UNUSED_PARAMETER(params);
  4478. Warning( "glGetQueryObjecti64vANGLE", " not available." );
  4479. }
  4480. static void REGAL_CALL glGetQueryObjectivANGLE(GLuint id, GLenum pname, GLint *params)
  4481. {
  4482. UNUSED_PARAMETER(id);
  4483. UNUSED_PARAMETER(pname);
  4484. UNUSED_PARAMETER(params);
  4485. Warning( "glGetQueryObjectivANGLE", " not available." );
  4486. }
  4487. static void REGAL_CALL glGetQueryObjectui64vANGLE(GLuint id, GLenum pname, GLuint64 *params)
  4488. {
  4489. UNUSED_PARAMETER(id);
  4490. UNUSED_PARAMETER(pname);
  4491. UNUSED_PARAMETER(params);
  4492. Warning( "glGetQueryObjectui64vANGLE", " not available." );
  4493. }
  4494. static void REGAL_CALL glGetQueryObjectuivANGLE(GLuint id, GLenum pname, GLuint *params)
  4495. {
  4496. UNUSED_PARAMETER(id);
  4497. UNUSED_PARAMETER(pname);
  4498. UNUSED_PARAMETER(params);
  4499. Warning( "glGetQueryObjectuivANGLE", " not available." );
  4500. }
  4501. static void REGAL_CALL glGetQueryivANGLE(GLenum target, GLenum pname, GLint *params)
  4502. {
  4503. UNUSED_PARAMETER(target);
  4504. UNUSED_PARAMETER(pname);
  4505. UNUSED_PARAMETER(params);
  4506. Warning( "glGetQueryivANGLE", " not available." );
  4507. }
  4508. static GLboolean REGAL_CALL glIsQueryANGLE(GLuint id)
  4509. {
  4510. UNUSED_PARAMETER(id);
  4511. Warning( "glIsQueryANGLE", " not available." );
  4512. return GL_FALSE;
  4513. }
  4514. static void REGAL_CALL glQueryCounterANGLE(GLuint id, GLenum target)
  4515. {
  4516. UNUSED_PARAMETER(id);
  4517. UNUSED_PARAMETER(target);
  4518. Warning( "glQueryCounterANGLE", " not available." );
  4519. }
  4520. // GL_ANGLE_translated_shader_source
  4521. static void REGAL_CALL glGetTranslatedShaderSourceANGLE(GLuint shader, GLsizei bufsize, GLsizei *length, GLchar *source)
  4522. {
  4523. UNUSED_PARAMETER(shader);
  4524. UNUSED_PARAMETER(bufsize);
  4525. UNUSED_PARAMETER(length);
  4526. UNUSED_PARAMETER(source);
  4527. Warning( "glGetTranslatedShaderSourceANGLE", " not available." );
  4528. }
  4529. // GL_APPLE_copy_texture_levels
  4530. static void REGAL_CALL glCopyTextureLevelsAPPLE(GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount)
  4531. {
  4532. UNUSED_PARAMETER(destinationTexture);
  4533. UNUSED_PARAMETER(sourceTexture);
  4534. UNUSED_PARAMETER(sourceBaseLevel);
  4535. UNUSED_PARAMETER(sourceLevelCount);
  4536. Warning( "glCopyTextureLevelsAPPLE", " not available." );
  4537. }
  4538. // GL_APPLE_element_array
  4539. static void REGAL_CALL glDrawElementArrayAPPLE(GLenum mode, GLint first, GLsizei count)
  4540. {
  4541. UNUSED_PARAMETER(mode);
  4542. UNUSED_PARAMETER(first);
  4543. UNUSED_PARAMETER(count);
  4544. Warning( "glDrawElementArrayAPPLE", " not available." );
  4545. }
  4546. static void REGAL_CALL glDrawRangeElementArrayAPPLE(GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count)
  4547. {
  4548. UNUSED_PARAMETER(mode);
  4549. UNUSED_PARAMETER(start);
  4550. UNUSED_PARAMETER(end);
  4551. UNUSED_PARAMETER(first);
  4552. UNUSED_PARAMETER(count);
  4553. Warning( "glDrawRangeElementArrayAPPLE", " not available." );
  4554. }
  4555. static void REGAL_CALL glElementPointerAPPLE(GLenum type, const GLvoid *pointer)
  4556. {
  4557. UNUSED_PARAMETER(type);
  4558. UNUSED_PARAMETER(pointer);
  4559. Warning( "glElementPointerAPPLE", " not available." );
  4560. }
  4561. static void REGAL_CALL glMultiDrawElementArrayAPPLE(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount)
  4562. {
  4563. UNUSED_PARAMETER(mode);
  4564. UNUSED_PARAMETER(first);
  4565. UNUSED_PARAMETER(count);
  4566. UNUSED_PARAMETER(primcount);
  4567. Warning( "glMultiDrawElementArrayAPPLE", " not available." );
  4568. }
  4569. static void REGAL_CALL glMultiDrawRangeElementArrayAPPLE(GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount)
  4570. {
  4571. UNUSED_PARAMETER(mode);
  4572. UNUSED_PARAMETER(start);
  4573. UNUSED_PARAMETER(end);
  4574. UNUSED_PARAMETER(first);
  4575. UNUSED_PARAMETER(count);
  4576. UNUSED_PARAMETER(primcount);
  4577. Warning( "glMultiDrawRangeElementArrayAPPLE", " not available." );
  4578. }
  4579. // GL_APPLE_fence
  4580. static void REGAL_CALL glDeleteFencesAPPLE(GLsizei n, const GLuint *fences)
  4581. {
  4582. UNUSED_PARAMETER(n);
  4583. UNUSED_PARAMETER(fences);
  4584. Warning( "glDeleteFencesAPPLE", " not available." );
  4585. }
  4586. static void REGAL_CALL glFinishFenceAPPLE(GLuint fence)
  4587. {
  4588. UNUSED_PARAMETER(fence);
  4589. Warning( "glFinishFenceAPPLE", " not available." );
  4590. }
  4591. static void REGAL_CALL glFinishObjectAPPLE(GLenum object, GLint name)
  4592. {
  4593. UNUSED_PARAMETER(object);
  4594. UNUSED_PARAMETER(name);
  4595. Warning( "glFinishObjectAPPLE", " not available." );
  4596. }
  4597. static void REGAL_CALL glGenFencesAPPLE(GLsizei n, GLuint *fences)
  4598. {
  4599. UNUSED_PARAMETER(n);
  4600. UNUSED_PARAMETER(fences);
  4601. Warning( "glGenFencesAPPLE", " not available." );
  4602. }
  4603. static GLboolean REGAL_CALL glIsFenceAPPLE(GLuint fence)
  4604. {
  4605. UNUSED_PARAMETER(fence);
  4606. Warning( "glIsFenceAPPLE", " not available." );
  4607. return GL_FALSE;
  4608. }
  4609. static void REGAL_CALL glSetFenceAPPLE(GLuint fence)
  4610. {
  4611. UNUSED_PARAMETER(fence);
  4612. Warning( "glSetFenceAPPLE", " not available." );
  4613. }
  4614. static GLboolean REGAL_CALL glTestFenceAPPLE(GLuint fence)
  4615. {
  4616. UNUSED_PARAMETER(fence);
  4617. Warning( "glTestFenceAPPLE", " not available." );
  4618. return GL_FALSE;
  4619. }
  4620. static GLboolean REGAL_CALL glTestObjectAPPLE(GLenum object, GLuint name)
  4621. {
  4622. UNUSED_PARAMETER(object);
  4623. UNUSED_PARAMETER(name);
  4624. Warning( "glTestObjectAPPLE", " not available." );
  4625. return GL_FALSE;
  4626. }
  4627. // GL_APPLE_flush_buffer_range
  4628. static void REGAL_CALL glBufferParameteriAPPLE(GLenum target, GLenum pname, GLint param)
  4629. {
  4630. UNUSED_PARAMETER(target);
  4631. UNUSED_PARAMETER(pname);
  4632. UNUSED_PARAMETER(param);
  4633. Warning( "glBufferParameteriAPPLE", " not available." );
  4634. }
  4635. static void REGAL_CALL glFlushMappedBufferRangeAPPLE(GLenum target, GLintptr offset, GLsizeiptr size)
  4636. {
  4637. UNUSED_PARAMETER(target);
  4638. UNUSED_PARAMETER(offset);
  4639. UNUSED_PARAMETER(size);
  4640. Warning( "glFlushMappedBufferRangeAPPLE", " not available." );
  4641. }
  4642. // GL_APPLE_flush_render
  4643. static void REGAL_CALL glFinishRenderAPPLE(void)
  4644. {
  4645. Warning( "glFinishRenderAPPLE", " not available." );
  4646. }
  4647. static void REGAL_CALL glFlushRenderAPPLE(void)
  4648. {
  4649. Warning( "glFlushRenderAPPLE", " not available." );
  4650. }
  4651. static void REGAL_CALL glSwapAPPLE(void)
  4652. {
  4653. Warning( "glSwapAPPLE", " not available." );
  4654. }
  4655. // GL_APPLE_framebuffer_multisample
  4656. static void REGAL_CALL glRenderbufferStorageMultisampleAPPLE(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
  4657. {
  4658. UNUSED_PARAMETER(target);
  4659. UNUSED_PARAMETER(samples);
  4660. UNUSED_PARAMETER(internalformat);
  4661. UNUSED_PARAMETER(width);
  4662. UNUSED_PARAMETER(height);
  4663. Warning( "glRenderbufferStorageMultisampleAPPLE", " not available." );
  4664. }
  4665. static void REGAL_CALL glResolveMultisampleFramebufferAPPLE(void)
  4666. {
  4667. Warning( "glResolveMultisampleFramebufferAPPLE", " not available." );
  4668. }
  4669. // GL_APPLE_object_purgeable
  4670. static void REGAL_CALL glGetObjectParameterivAPPLE(GLenum objectType, GLuint name, GLenum pname, GLint *params)
  4671. {
  4672. UNUSED_PARAMETER(objectType);
  4673. UNUSED_PARAMETER(name);
  4674. UNUSED_PARAMETER(pname);
  4675. UNUSED_PARAMETER(params);
  4676. Warning( "glGetObjectParameterivAPPLE", " not available." );
  4677. }
  4678. static GLenum REGAL_CALL glObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option)
  4679. {
  4680. UNUSED_PARAMETER(objectType);
  4681. UNUSED_PARAMETER(name);
  4682. UNUSED_PARAMETER(option);
  4683. Warning( "glObjectPurgeableAPPLE", " not available." );
  4684. return 0;
  4685. }
  4686. static GLenum REGAL_CALL glObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option)
  4687. {
  4688. UNUSED_PARAMETER(objectType);
  4689. UNUSED_PARAMETER(name);
  4690. UNUSED_PARAMETER(option);
  4691. Warning( "glObjectUnpurgeableAPPLE", " not available." );
  4692. return 0;
  4693. }
  4694. // GL_APPLE_sync
  4695. static GLenum REGAL_CALL glClientWaitSyncAPPLE(GLsync sync, GLbitfield flags, GLuint64 timeout)
  4696. {
  4697. UNUSED_PARAMETER(sync);
  4698. UNUSED_PARAMETER(flags);
  4699. UNUSED_PARAMETER(timeout);
  4700. Warning( "glClientWaitSyncAPPLE", " not available." );
  4701. return 0;
  4702. }
  4703. static void REGAL_CALL glDeleteSyncAPPLE(GLsync sync)
  4704. {
  4705. UNUSED_PARAMETER(sync);
  4706. Warning( "glDeleteSyncAPPLE", " not available." );
  4707. }
  4708. static GLsync REGAL_CALL glFenceSyncAPPLE(GLenum condition, GLbitfield flags)
  4709. {
  4710. UNUSED_PARAMETER(condition);
  4711. UNUSED_PARAMETER(flags);
  4712. Warning( "glFenceSyncAPPLE", " not available." );
  4713. return NULL;
  4714. }
  4715. static void REGAL_CALL glGetInteger64vAPPLE(GLenum pname, GLint64 *params)
  4716. {
  4717. UNUSED_PARAMETER(pname);
  4718. UNUSED_PARAMETER(params);
  4719. Warning( "glGetInteger64vAPPLE", " not available." );
  4720. }
  4721. static void REGAL_CALL glGetSyncivAPPLE(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values)
  4722. {
  4723. UNUSED_PARAMETER(sync);
  4724. UNUSED_PARAMETER(pname);
  4725. UNUSED_PARAMETER(bufSize);
  4726. UNUSED_PARAMETER(length);
  4727. UNUSED_PARAMETER(values);
  4728. Warning( "glGetSyncivAPPLE", " not available." );
  4729. }
  4730. static GLboolean REGAL_CALL glIsSyncAPPLE(GLsync sync)
  4731. {
  4732. UNUSED_PARAMETER(sync);
  4733. Warning( "glIsSyncAPPLE", " not available." );
  4734. return GL_FALSE;
  4735. }
  4736. static void REGAL_CALL glWaitSyncAPPLE(GLsync sync, GLbitfield flags, GLuint64 timeout)
  4737. {
  4738. UNUSED_PARAMETER(sync);
  4739. UNUSED_PARAMETER(flags);
  4740. UNUSED_PARAMETER(timeout);
  4741. Warning( "glWaitSyncAPPLE", " not available." );
  4742. }
  4743. // GL_APPLE_texture_range
  4744. static void REGAL_CALL glGetTexParameterPointervAPPLE(GLenum target, GLenum pname, GLvoid **params)
  4745. {
  4746. UNUSED_PARAMETER(target);
  4747. UNUSED_PARAMETER(pname);
  4748. UNUSED_PARAMETER(params);
  4749. Warning( "glGetTexParameterPointervAPPLE", " not available." );
  4750. }
  4751. static void REGAL_CALL glTextureRangeAPPLE(GLenum target, GLsizei length, const GLvoid *pointer)
  4752. {
  4753. UNUSED_PARAMETER(target);
  4754. UNUSED_PARAMETER(length);
  4755. UNUSED_PARAMETER(pointer);
  4756. Warning( "glTextureRangeAPPLE", " not available." );
  4757. }
  4758. // GL_APPLE_vertex_array_object
  4759. static void REGAL_CALL glBindVertexArrayAPPLE(GLuint array)
  4760. {
  4761. UNUSED_PARAMETER(array);
  4762. Warning( "glBindVertexArrayAPPLE", " not available." );
  4763. }
  4764. static void REGAL_CALL glDeleteVertexArraysAPPLE(GLsizei n, const GLuint *arrays)
  4765. {
  4766. UNUSED_PARAMETER(n);
  4767. UNUSED_PARAMETER(arrays);
  4768. Warning( "glDeleteVertexArraysAPPLE", " not available." );
  4769. }
  4770. static void REGAL_CALL glGenVertexArraysAPPLE(GLsizei n, GLuint *arrays)
  4771. {
  4772. UNUSED_PARAMETER(n);
  4773. UNUSED_PARAMETER(arrays);
  4774. Warning( "glGenVertexArraysAPPLE", " not available." );
  4775. }
  4776. static GLboolean REGAL_CALL glIsVertexArrayAPPLE(GLuint array)
  4777. {
  4778. UNUSED_PARAMETER(array);
  4779. Warning( "glIsVertexArrayAPPLE", " not available." );
  4780. return GL_FALSE;
  4781. }
  4782. // GL_APPLE_vertex_array_range
  4783. static void REGAL_CALL glFlushVertexArrayRangeAPPLE(GLsizei length, GLvoid *pointer)
  4784. {
  4785. UNUSED_PARAMETER(length);
  4786. UNUSED_PARAMETER(pointer);
  4787. Warning( "glFlushVertexArrayRangeAPPLE", " not available." );
  4788. }
  4789. static void REGAL_CALL glVertexArrayParameteriAPPLE(GLenum pname, GLint param)
  4790. {
  4791. UNUSED_PARAMETER(pname);
  4792. UNUSED_PARAMETER(param);
  4793. Warning( "glVertexArrayParameteriAPPLE", " not available." );
  4794. }
  4795. static void REGAL_CALL glVertexArrayRangeAPPLE(GLsizei length, GLvoid *pointer)
  4796. {
  4797. UNUSED_PARAMETER(length);
  4798. UNUSED_PARAMETER(pointer);
  4799. Warning( "glVertexArrayRangeAPPLE", " not available." );
  4800. }
  4801. // GL_APPLE_vertex_program_evaluators
  4802. static void REGAL_CALL glDisableVertexAttribAPPLE(GLuint index, GLenum pname)
  4803. {
  4804. UNUSED_PARAMETER(index);
  4805. UNUSED_PARAMETER(pname);
  4806. Warning( "glDisableVertexAttribAPPLE", " not available." );
  4807. }
  4808. static void REGAL_CALL glEnableVertexAttribAPPLE(GLuint index, GLenum pname)
  4809. {
  4810. UNUSED_PARAMETER(index);
  4811. UNUSED_PARAMETER(pname);
  4812. Warning( "glEnableVertexAttribAPPLE", " not available." );
  4813. }
  4814. static GLboolean REGAL_CALL glIsVertexAttribEnabledAPPLE(GLuint index, GLenum pname)
  4815. {
  4816. UNUSED_PARAMETER(index);
  4817. UNUSED_PARAMETER(pname);
  4818. Warning( "glIsVertexAttribEnabledAPPLE", " not available." );
  4819. return GL_FALSE;
  4820. }
  4821. static void REGAL_CALL glMapVertexAttrib1dAPPLE(GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points)
  4822. {
  4823. UNUSED_PARAMETER(index);
  4824. UNUSED_PARAMETER(size);
  4825. UNUSED_PARAMETER(u1);
  4826. UNUSED_PARAMETER(u2);
  4827. UNUSED_PARAMETER(stride);
  4828. UNUSED_PARAMETER(order);
  4829. UNUSED_PARAMETER(points);
  4830. Warning( "glMapVertexAttrib1dAPPLE", " not available." );
  4831. }
  4832. static void REGAL_CALL glMapVertexAttrib1fAPPLE(GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points)
  4833. {
  4834. UNUSED_PARAMETER(index);
  4835. UNUSED_PARAMETER(size);
  4836. UNUSED_PARAMETER(u1);
  4837. UNUSED_PARAMETER(u2);
  4838. UNUSED_PARAMETER(stride);
  4839. UNUSED_PARAMETER(order);
  4840. UNUSED_PARAMETER(points);
  4841. Warning( "glMapVertexAttrib1fAPPLE", " not available." );
  4842. }
  4843. static void REGAL_CALL glMapVertexAttrib2dAPPLE(GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points)
  4844. {
  4845. UNUSED_PARAMETER(index);
  4846. UNUSED_PARAMETER(size);
  4847. UNUSED_PARAMETER(u1);
  4848. UNUSED_PARAMETER(u2);
  4849. UNUSED_PARAMETER(ustride);
  4850. UNUSED_PARAMETER(uorder);
  4851. UNUSED_PARAMETER(v1);
  4852. UNUSED_PARAMETER(v2);
  4853. UNUSED_PARAMETER(vstride);
  4854. UNUSED_PARAMETER(vorder);
  4855. UNUSED_PARAMETER(points);
  4856. Warning( "glMapVertexAttrib2dAPPLE", " not available." );
  4857. }
  4858. static void REGAL_CALL glMapVertexAttrib2fAPPLE(GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points)
  4859. {
  4860. UNUSED_PARAMETER(index);
  4861. UNUSED_PARAMETER(size);
  4862. UNUSED_PARAMETER(u1);
  4863. UNUSED_PARAMETER(u2);
  4864. UNUSED_PARAMETER(ustride);
  4865. UNUSED_PARAMETER(uorder);
  4866. UNUSED_PARAMETER(v1);
  4867. UNUSED_PARAMETER(v2);
  4868. UNUSED_PARAMETER(vstride);
  4869. UNUSED_PARAMETER(vorder);
  4870. UNUSED_PARAMETER(points);
  4871. Warning( "glMapVertexAttrib2fAPPLE", " not available." );
  4872. }
  4873. // GL_ARB_ES2_compatibility
  4874. static void REGAL_CALL glClearDepthf(GLclampf d)
  4875. {
  4876. UNUSED_PARAMETER(d);
  4877. Warning( "glClearDepthf", " not available." );
  4878. }
  4879. static void REGAL_CALL glDepthRangef(GLclampf n, GLclampf f)
  4880. {
  4881. UNUSED_PARAMETER(n);
  4882. UNUSED_PARAMETER(f);
  4883. Warning( "glDepthRangef", " not available." );
  4884. }
  4885. static void REGAL_CALL glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision)
  4886. {
  4887. UNUSED_PARAMETER(shadertype);
  4888. UNUSED_PARAMETER(precisiontype);
  4889. UNUSED_PARAMETER(range);
  4890. UNUSED_PARAMETER(precision);
  4891. Warning( "glGetShaderPrecisionFormat", " not available." );
  4892. }
  4893. static void REGAL_CALL glReleaseShaderCompiler(void)
  4894. {
  4895. Warning( "glReleaseShaderCompiler", " not available." );
  4896. }
  4897. static void REGAL_CALL glShaderBinary(GLsizei count, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length)
  4898. {
  4899. UNUSED_PARAMETER(count);
  4900. UNUSED_PARAMETER(shaders);
  4901. UNUSED_PARAMETER(binaryformat);
  4902. UNUSED_PARAMETER(binary);
  4903. UNUSED_PARAMETER(length);
  4904. Warning( "glShaderBinary", " not available." );
  4905. }
  4906. // GL_ARB_base_instance
  4907. static void REGAL_CALL glDrawArraysInstancedBaseInstance(GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance)
  4908. {
  4909. UNUSED_PARAMETER(mode);
  4910. UNUSED_PARAMETER(first);
  4911. UNUSED_PARAMETER(count);
  4912. UNUSED_PARAMETER(primcount);
  4913. UNUSED_PARAMETER(baseinstance);
  4914. Warning( "glDrawArraysInstancedBaseInstance", " not available." );
  4915. }
  4916. static void REGAL_CALL glDrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLuint baseinstance)
  4917. {
  4918. UNUSED_PARAMETER(mode);
  4919. UNUSED_PARAMETER(count);
  4920. UNUSED_PARAMETER(type);
  4921. UNUSED_PARAMETER(indices);
  4922. UNUSED_PARAMETER(primcount);
  4923. UNUSED_PARAMETER(baseinstance);
  4924. Warning( "glDrawElementsInstancedBaseInstance", " not available." );
  4925. }
  4926. static void REGAL_CALL glDrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex, GLuint baseinstance)
  4927. {
  4928. UNUSED_PARAMETER(mode);
  4929. UNUSED_PARAMETER(count);
  4930. UNUSED_PARAMETER(type);
  4931. UNUSED_PARAMETER(indices);
  4932. UNUSED_PARAMETER(primcount);
  4933. UNUSED_PARAMETER(basevertex);
  4934. UNUSED_PARAMETER(baseinstance);
  4935. Warning( "glDrawElementsInstancedBaseVertexBaseInstance", " not available." );
  4936. }
  4937. // GL_ARB_bindless_texture
  4938. static GLuint64 REGAL_CALL glGetImageHandleARB(GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format)
  4939. {
  4940. UNUSED_PARAMETER(texture);
  4941. UNUSED_PARAMETER(level);
  4942. UNUSED_PARAMETER(layered);
  4943. UNUSED_PARAMETER(layer);
  4944. UNUSED_PARAMETER(format);
  4945. Warning( "glGetImageHandleARB", " not available." );
  4946. return 0;
  4947. }
  4948. static GLuint64 REGAL_CALL glGetTextureHandleARB(GLuint texture)
  4949. {
  4950. UNUSED_PARAMETER(texture);
  4951. Warning( "glGetTextureHandleARB", " not available." );
  4952. return 0;
  4953. }
  4954. static GLuint64 REGAL_CALL glGetTextureSamplerHandleARB(GLuint texture, GLuint sampler)
  4955. {
  4956. UNUSED_PARAMETER(texture);
  4957. UNUSED_PARAMETER(sampler);
  4958. Warning( "glGetTextureSamplerHandleARB", " not available." );
  4959. return 0;
  4960. }
  4961. static void REGAL_CALL glGetVertexAttribLui64vARB(GLuint index, GLenum pname, GLuint64EXT *params)
  4962. {
  4963. UNUSED_PARAMETER(index);
  4964. UNUSED_PARAMETER(pname);
  4965. UNUSED_PARAMETER(params);
  4966. Warning( "glGetVertexAttribLui64vARB", " not available." );
  4967. }
  4968. static GLboolean REGAL_CALL glIsImageHandleResidentARB(GLuint64 handle)
  4969. {
  4970. UNUSED_PARAMETER(handle);
  4971. Warning( "glIsImageHandleResidentARB", " not available." );
  4972. return GL_FALSE;
  4973. }
  4974. static GLboolean REGAL_CALL glIsTextureHandleResidentARB(GLuint64 handle)
  4975. {
  4976. UNUSED_PARAMETER(handle);
  4977. Warning( "glIsTextureHandleResidentARB", " not available." );
  4978. return GL_FALSE;
  4979. }
  4980. static void REGAL_CALL glMakeImageHandleNonResidentARB(GLuint64 handle)
  4981. {
  4982. UNUSED_PARAMETER(handle);
  4983. Warning( "glMakeImageHandleNonResidentARB", " not available." );
  4984. }
  4985. static void REGAL_CALL glMakeImageHandleResidentARB(GLuint64 handle, GLenum access)
  4986. {
  4987. UNUSED_PARAMETER(handle);
  4988. UNUSED_PARAMETER(access);
  4989. Warning( "glMakeImageHandleResidentARB", " not available." );
  4990. }
  4991. static void REGAL_CALL glMakeTextureHandleNonResidentARB(GLuint64 handle)
  4992. {
  4993. UNUSED_PARAMETER(handle);
  4994. Warning( "glMakeTextureHandleNonResidentARB", " not available." );
  4995. }
  4996. static void REGAL_CALL glMakeTextureHandleResidentARB(GLuint64 handle)
  4997. {
  4998. UNUSED_PARAMETER(handle);
  4999. Warning( "glMakeTextureHandleResidentARB", " not available." );
  5000. }
  5001. static void REGAL_CALL glProgramUniformHandleui64ARB(GLuint program, GLint location, GLuint64 value)
  5002. {
  5003. UNUSED_PARAMETER(program);
  5004. UNUSED_PARAMETER(location);
  5005. UNUSED_PARAMETER(value);
  5006. Warning( "glProgramUniformHandleui64ARB", " not available." );
  5007. }
  5008. static void REGAL_CALL glProgramUniformHandleui64vARB(GLuint program, GLint location, GLsizei count, const GLuint64 *values)
  5009. {
  5010. UNUSED_PARAMETER(program);
  5011. UNUSED_PARAMETER(location);
  5012. UNUSED_PARAMETER(count);
  5013. UNUSED_PARAMETER(values);
  5014. Warning( "glProgramUniformHandleui64vARB", " not available." );
  5015. }
  5016. static void REGAL_CALL glUniformHandleui64ARB(GLint location, GLuint64 value)
  5017. {
  5018. UNUSED_PARAMETER(location);
  5019. UNUSED_PARAMETER(value);
  5020. Warning( "glUniformHandleui64ARB", " not available." );
  5021. }
  5022. static void REGAL_CALL glUniformHandleui64vARB(GLint location, GLsizei count, const GLuint64 *value)
  5023. {
  5024. UNUSED_PARAMETER(location);
  5025. UNUSED_PARAMETER(count);
  5026. UNUSED_PARAMETER(value);
  5027. Warning( "glUniformHandleui64vARB", " not available." );
  5028. }
  5029. static void REGAL_CALL glVertexAttribL1ui64ARB(GLuint index, GLuint64EXT x)
  5030. {
  5031. UNUSED_PARAMETER(index);
  5032. UNUSED_PARAMETER(x);
  5033. Warning( "glVertexAttribL1ui64ARB", " not available." );
  5034. }
  5035. static void REGAL_CALL glVertexAttribL1ui64vARB(GLuint index, const GLuint64EXT *v)
  5036. {
  5037. UNUSED_PARAMETER(index);
  5038. UNUSED_PARAMETER(v);
  5039. Warning( "glVertexAttribL1ui64vARB", " not available." );
  5040. }
  5041. // GL_ARB_blend_func_extended
  5042. static void REGAL_CALL glBindFragDataLocationIndexed(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name)
  5043. {
  5044. UNUSED_PARAMETER(program);
  5045. UNUSED_PARAMETER(colorNumber);
  5046. UNUSED_PARAMETER(index);
  5047. UNUSED_PARAMETER(name);
  5048. Warning( "glBindFragDataLocationIndexed", " not available." );
  5049. }
  5050. static GLint REGAL_CALL glGetFragDataIndex(GLuint program, const GLchar *name)
  5051. {
  5052. UNUSED_PARAMETER(program);
  5053. UNUSED_PARAMETER(name);
  5054. Warning( "glGetFragDataIndex", " not available." );
  5055. return 0;
  5056. }
  5057. // GL_ARB_buffer_storage
  5058. static void REGAL_CALL glBufferStorage(GLenum target, GLsizeiptr size, const GLvoid *data, GLbitfield flags)
  5059. {
  5060. UNUSED_PARAMETER(target);
  5061. UNUSED_PARAMETER(size);
  5062. UNUSED_PARAMETER(data);
  5063. UNUSED_PARAMETER(flags);
  5064. Warning( "glBufferStorage", " not available." );
  5065. }
  5066. static void REGAL_CALL glNamedBufferStorageEXT(GLuint buffer, GLsizeiptr size, const GLvoid *data, GLbitfield flags)
  5067. {
  5068. UNUSED_PARAMETER(buffer);
  5069. UNUSED_PARAMETER(size);
  5070. UNUSED_PARAMETER(data);
  5071. UNUSED_PARAMETER(flags);
  5072. Warning( "glNamedBufferStorageEXT", " not available." );
  5073. }
  5074. // GL_ARB_cl_event
  5075. static GLsync REGAL_CALL glCreateSyncFromCLeventARB(cl_context context, cl_event event, GLbitfield flags)
  5076. {
  5077. UNUSED_PARAMETER(context);
  5078. UNUSED_PARAMETER(event);
  5079. UNUSED_PARAMETER(flags);
  5080. Warning( "glCreateSyncFromCLeventARB", " not available." );
  5081. return NULL;
  5082. }
  5083. // GL_ARB_clear_buffer_object
  5084. static void REGAL_CALL glClearBufferData(GLenum target, GLenum internalformat, GLenum format, GLenum type, const GLvoid *data)
  5085. {
  5086. UNUSED_PARAMETER(target);
  5087. UNUSED_PARAMETER(internalformat);
  5088. UNUSED_PARAMETER(format);
  5089. UNUSED_PARAMETER(type);
  5090. UNUSED_PARAMETER(data);
  5091. Warning( "glClearBufferData", " not available." );
  5092. }
  5093. static void REGAL_CALL glClearBufferSubData(GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const GLvoid *data)
  5094. {
  5095. UNUSED_PARAMETER(target);
  5096. UNUSED_PARAMETER(internalformat);
  5097. UNUSED_PARAMETER(offset);
  5098. UNUSED_PARAMETER(size);
  5099. UNUSED_PARAMETER(format);
  5100. UNUSED_PARAMETER(type);
  5101. UNUSED_PARAMETER(data);
  5102. Warning( "glClearBufferSubData", " not available." );
  5103. }
  5104. static void REGAL_CALL glClearNamedBufferDataEXT(GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const GLvoid *data)
  5105. {
  5106. UNUSED_PARAMETER(buffer);
  5107. UNUSED_PARAMETER(internalformat);
  5108. UNUSED_PARAMETER(format);
  5109. UNUSED_PARAMETER(type);
  5110. UNUSED_PARAMETER(data);
  5111. Warning( "glClearNamedBufferDataEXT", " not available." );
  5112. }
  5113. static void REGAL_CALL glClearNamedBufferSubDataEXT(GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const GLvoid *data)
  5114. {
  5115. UNUSED_PARAMETER(buffer);
  5116. UNUSED_PARAMETER(internalformat);
  5117. UNUSED_PARAMETER(offset);
  5118. UNUSED_PARAMETER(size);
  5119. UNUSED_PARAMETER(format);
  5120. UNUSED_PARAMETER(type);
  5121. UNUSED_PARAMETER(data);
  5122. Warning( "glClearNamedBufferSubDataEXT", " not available." );
  5123. }
  5124. // GL_ARB_clear_texture
  5125. static void REGAL_CALL glClearTexImage(GLuint texture, GLint level, GLenum format, GLenum type, const GLvoid *data)
  5126. {
  5127. UNUSED_PARAMETER(texture);
  5128. UNUSED_PARAMETER(level);
  5129. UNUSED_PARAMETER(format);
  5130. UNUSED_PARAMETER(type);
  5131. UNUSED_PARAMETER(data);
  5132. Warning( "glClearTexImage", " not available." );
  5133. }
  5134. static void REGAL_CALL glClearTexSubImage(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data)
  5135. {
  5136. UNUSED_PARAMETER(texture);
  5137. UNUSED_PARAMETER(level);
  5138. UNUSED_PARAMETER(xoffset);
  5139. UNUSED_PARAMETER(yoffset);
  5140. UNUSED_PARAMETER(zoffset);
  5141. UNUSED_PARAMETER(width);
  5142. UNUSED_PARAMETER(height);
  5143. UNUSED_PARAMETER(depth);
  5144. UNUSED_PARAMETER(format);
  5145. UNUSED_PARAMETER(type);
  5146. UNUSED_PARAMETER(data);
  5147. Warning( "glClearTexSubImage", " not available." );
  5148. }
  5149. // GL_ARB_color_buffer_float
  5150. static void REGAL_CALL glClampColorARB(GLenum target, GLenum clamp)
  5151. {
  5152. UNUSED_PARAMETER(target);
  5153. UNUSED_PARAMETER(clamp);
  5154. Warning( "glClampColorARB", " not available." );
  5155. }
  5156. // GL_ARB_compute_shader
  5157. static void REGAL_CALL glDispatchCompute(GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z)
  5158. {
  5159. UNUSED_PARAMETER(num_groups_x);
  5160. UNUSED_PARAMETER(num_groups_y);
  5161. UNUSED_PARAMETER(num_groups_z);
  5162. Warning( "glDispatchCompute", " not available." );
  5163. }
  5164. static void REGAL_CALL glDispatchComputeIndirect(GLintptr indirect)
  5165. {
  5166. UNUSED_PARAMETER(indirect);
  5167. Warning( "glDispatchComputeIndirect", " not available." );
  5168. }
  5169. // GL_ARB_compute_variable_group_size
  5170. static void REGAL_CALL glDispatchComputeGroupSizeARB(GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z)
  5171. {
  5172. UNUSED_PARAMETER(num_groups_x);
  5173. UNUSED_PARAMETER(num_groups_y);
  5174. UNUSED_PARAMETER(num_groups_z);
  5175. UNUSED_PARAMETER(group_size_x);
  5176. UNUSED_PARAMETER(group_size_y);
  5177. UNUSED_PARAMETER(group_size_z);
  5178. Warning( "glDispatchComputeGroupSizeARB", " not available." );
  5179. }
  5180. // GL_ARB_copy_buffer
  5181. static void REGAL_CALL glCopyBufferSubData(GLenum readtarget, GLenum writetarget, GLintptr readoffset, GLintptr writeoffset, GLsizeiptr size)
  5182. {
  5183. UNUSED_PARAMETER(readtarget);
  5184. UNUSED_PARAMETER(writetarget);
  5185. UNUSED_PARAMETER(readoffset);
  5186. UNUSED_PARAMETER(writeoffset);
  5187. UNUSED_PARAMETER(size);
  5188. Warning( "glCopyBufferSubData", " not available." );
  5189. }
  5190. // GL_ARB_copy_image
  5191. static void REGAL_CALL glCopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth)
  5192. {
  5193. UNUSED_PARAMETER(srcName);
  5194. UNUSED_PARAMETER(srcTarget);
  5195. UNUSED_PARAMETER(srcLevel);
  5196. UNUSED_PARAMETER(srcX);
  5197. UNUSED_PARAMETER(srcY);
  5198. UNUSED_PARAMETER(srcZ);
  5199. UNUSED_PARAMETER(dstName);
  5200. UNUSED_PARAMETER(dstTarget);
  5201. UNUSED_PARAMETER(dstLevel);
  5202. UNUSED_PARAMETER(dstX);
  5203. UNUSED_PARAMETER(dstY);
  5204. UNUSED_PARAMETER(dstZ);
  5205. UNUSED_PARAMETER(srcWidth);
  5206. UNUSED_PARAMETER(srcHeight);
  5207. UNUSED_PARAMETER(srcDepth);
  5208. Warning( "glCopyImageSubData", " not available." );
  5209. }
  5210. // GL_ARB_debug_output
  5211. static void REGAL_CALL glDebugMessageCallbackARB(GLDEBUGPROCARB callback, const GLvoid *userParam)
  5212. {
  5213. UNUSED_PARAMETER(callback);
  5214. UNUSED_PARAMETER(userParam);
  5215. Warning( "glDebugMessageCallbackARB", " not available." );
  5216. }
  5217. static void REGAL_CALL glDebugMessageControlARB(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled)
  5218. {
  5219. UNUSED_PARAMETER(source);
  5220. UNUSED_PARAMETER(type);
  5221. UNUSED_PARAMETER(severity);
  5222. UNUSED_PARAMETER(count);
  5223. UNUSED_PARAMETER(ids);
  5224. UNUSED_PARAMETER(enabled);
  5225. Warning( "glDebugMessageControlARB", " not available." );
  5226. }
  5227. static void REGAL_CALL glDebugMessageInsertARB(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf)
  5228. {
  5229. UNUSED_PARAMETER(source);
  5230. UNUSED_PARAMETER(type);
  5231. UNUSED_PARAMETER(id);
  5232. UNUSED_PARAMETER(severity);
  5233. UNUSED_PARAMETER(length);
  5234. UNUSED_PARAMETER(buf);
  5235. Warning( "glDebugMessageInsertARB", " not available." );
  5236. }
  5237. static GLuint REGAL_CALL glGetDebugMessageLogARB(GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog)
  5238. {
  5239. UNUSED_PARAMETER(count);
  5240. UNUSED_PARAMETER(bufsize);
  5241. UNUSED_PARAMETER(sources);
  5242. UNUSED_PARAMETER(types);
  5243. UNUSED_PARAMETER(ids);
  5244. UNUSED_PARAMETER(severities);
  5245. UNUSED_PARAMETER(lengths);
  5246. UNUSED_PARAMETER(messageLog);
  5247. Warning( "glGetDebugMessageLogARB", " not available." );
  5248. return 0;
  5249. }
  5250. // GL_ARB_draw_buffers
  5251. static void REGAL_CALL glDrawBuffersARB(GLsizei n, const GLenum *bufs)
  5252. {
  5253. UNUSED_PARAMETER(n);
  5254. UNUSED_PARAMETER(bufs);
  5255. Warning( "glDrawBuffersARB", " not available." );
  5256. }
  5257. // GL_ARB_draw_buffers_blend
  5258. static void REGAL_CALL glBlendEquationSeparateiARB(GLuint buf, GLenum modeRGB, GLenum modeAlpha)
  5259. {
  5260. UNUSED_PARAMETER(buf);
  5261. UNUSED_PARAMETER(modeRGB);
  5262. UNUSED_PARAMETER(modeAlpha);
  5263. Warning( "glBlendEquationSeparateiARB", " not available." );
  5264. }
  5265. static void REGAL_CALL glBlendEquationiARB(GLuint buf, GLenum mode)
  5266. {
  5267. UNUSED_PARAMETER(buf);
  5268. UNUSED_PARAMETER(mode);
  5269. Warning( "glBlendEquationiARB", " not available." );
  5270. }
  5271. static void REGAL_CALL glBlendFuncSeparateiARB(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha)
  5272. {
  5273. UNUSED_PARAMETER(buf);
  5274. UNUSED_PARAMETER(srcRGB);
  5275. UNUSED_PARAMETER(dstRGB);
  5276. UNUSED_PARAMETER(srcAlpha);
  5277. UNUSED_PARAMETER(dstAlpha);
  5278. Warning( "glBlendFuncSeparateiARB", " not available." );
  5279. }
  5280. static void REGAL_CALL glBlendFunciARB(GLuint buf, GLenum src, GLenum dst)
  5281. {
  5282. UNUSED_PARAMETER(buf);
  5283. UNUSED_PARAMETER(src);
  5284. UNUSED_PARAMETER(dst);
  5285. Warning( "glBlendFunciARB", " not available." );
  5286. }
  5287. // GL_ARB_draw_elements_base_vertex
  5288. static void REGAL_CALL glDrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex)
  5289. {
  5290. UNUSED_PARAMETER(mode);
  5291. UNUSED_PARAMETER(count);
  5292. UNUSED_PARAMETER(type);
  5293. UNUSED_PARAMETER(indices);
  5294. UNUSED_PARAMETER(basevertex);
  5295. Warning( "glDrawElementsBaseVertex", " not available." );
  5296. }
  5297. static void REGAL_CALL glDrawElementsInstancedBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex)
  5298. {
  5299. UNUSED_PARAMETER(mode);
  5300. UNUSED_PARAMETER(count);
  5301. UNUSED_PARAMETER(type);
  5302. UNUSED_PARAMETER(indices);
  5303. UNUSED_PARAMETER(primcount);
  5304. UNUSED_PARAMETER(basevertex);
  5305. Warning( "glDrawElementsInstancedBaseVertex", " not available." );
  5306. }
  5307. static void REGAL_CALL glDrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex)
  5308. {
  5309. UNUSED_PARAMETER(mode);
  5310. UNUSED_PARAMETER(start);
  5311. UNUSED_PARAMETER(end);
  5312. UNUSED_PARAMETER(count);
  5313. UNUSED_PARAMETER(type);
  5314. UNUSED_PARAMETER(indices);
  5315. UNUSED_PARAMETER(basevertex);
  5316. Warning( "glDrawRangeElementsBaseVertex", " not available." );
  5317. }
  5318. static void REGAL_CALL glMultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex)
  5319. {
  5320. UNUSED_PARAMETER(mode);
  5321. UNUSED_PARAMETER(count);
  5322. UNUSED_PARAMETER(type);
  5323. UNUSED_PARAMETER(indices);
  5324. UNUSED_PARAMETER(primcount);
  5325. UNUSED_PARAMETER(basevertex);
  5326. Warning( "glMultiDrawElementsBaseVertex", " not available." );
  5327. }
  5328. // GL_ARB_draw_indirect
  5329. static void REGAL_CALL glDrawArraysIndirect(GLenum mode, const GLvoid *indirect)
  5330. {
  5331. UNUSED_PARAMETER(mode);
  5332. UNUSED_PARAMETER(indirect);
  5333. Warning( "glDrawArraysIndirect", " not available." );
  5334. }
  5335. static void REGAL_CALL glDrawElementsIndirect(GLenum mode, GLenum type, const GLvoid *indirect)
  5336. {
  5337. UNUSED_PARAMETER(mode);
  5338. UNUSED_PARAMETER(type);
  5339. UNUSED_PARAMETER(indirect);
  5340. Warning( "glDrawElementsIndirect", " not available." );
  5341. }
  5342. // GL_ARB_draw_instanced
  5343. static void REGAL_CALL glDrawArraysInstancedARB(GLenum mode, GLint start, GLsizei count, GLsizei primcount)
  5344. {
  5345. UNUSED_PARAMETER(mode);
  5346. UNUSED_PARAMETER(start);
  5347. UNUSED_PARAMETER(count);
  5348. UNUSED_PARAMETER(primcount);
  5349. Warning( "glDrawArraysInstancedARB", " not available." );
  5350. }
  5351. static void REGAL_CALL glDrawElementsInstancedARB(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount)
  5352. {
  5353. UNUSED_PARAMETER(mode);
  5354. UNUSED_PARAMETER(count);
  5355. UNUSED_PARAMETER(type);
  5356. UNUSED_PARAMETER(indices);
  5357. UNUSED_PARAMETER(primcount);
  5358. Warning( "glDrawElementsInstancedARB", " not available." );
  5359. }
  5360. // GL_ARB_framebuffer_no_attachments
  5361. static void REGAL_CALL glFramebufferParameteri(GLenum target, GLenum pname, GLint param)
  5362. {
  5363. UNUSED_PARAMETER(target);
  5364. UNUSED_PARAMETER(pname);
  5365. UNUSED_PARAMETER(param);
  5366. Warning( "glFramebufferParameteri", " not available." );
  5367. }
  5368. static void REGAL_CALL glGetFramebufferParameteriv(GLenum target, GLenum pname, GLint *params)
  5369. {
  5370. UNUSED_PARAMETER(target);
  5371. UNUSED_PARAMETER(pname);
  5372. UNUSED_PARAMETER(params);
  5373. Warning( "glGetFramebufferParameteriv", " not available." );
  5374. }
  5375. static void REGAL_CALL glGetNamedFramebufferParameterivEXT(GLuint framebuffer, GLenum pname, GLint *params)
  5376. {
  5377. UNUSED_PARAMETER(framebuffer);
  5378. UNUSED_PARAMETER(pname);
  5379. UNUSED_PARAMETER(params);
  5380. Warning( "glGetNamedFramebufferParameterivEXT", " not available." );
  5381. }
  5382. static void REGAL_CALL glNamedFramebufferParameteriEXT(GLuint framebuffer, GLenum pname, GLint param)
  5383. {
  5384. UNUSED_PARAMETER(framebuffer);
  5385. UNUSED_PARAMETER(pname);
  5386. UNUSED_PARAMETER(param);
  5387. Warning( "glNamedFramebufferParameteriEXT", " not available." );
  5388. }
  5389. // GL_ARB_framebuffer_object
  5390. static void REGAL_CALL glBindFramebuffer(GLenum target, GLuint framebuffer)
  5391. {
  5392. UNUSED_PARAMETER(target);
  5393. UNUSED_PARAMETER(framebuffer);
  5394. Warning( "glBindFramebuffer", " not available." );
  5395. }
  5396. static void REGAL_CALL glBindRenderbuffer(GLenum target, GLuint renderbuffer)
  5397. {
  5398. UNUSED_PARAMETER(target);
  5399. UNUSED_PARAMETER(renderbuffer);
  5400. Warning( "glBindRenderbuffer", " not available." );
  5401. }
  5402. static void REGAL_CALL glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
  5403. {
  5404. UNUSED_PARAMETER(srcX0);
  5405. UNUSED_PARAMETER(srcY0);
  5406. UNUSED_PARAMETER(srcX1);
  5407. UNUSED_PARAMETER(srcY1);
  5408. UNUSED_PARAMETER(dstX0);
  5409. UNUSED_PARAMETER(dstY0);
  5410. UNUSED_PARAMETER(dstX1);
  5411. UNUSED_PARAMETER(dstY1);
  5412. UNUSED_PARAMETER(mask);
  5413. UNUSED_PARAMETER(filter);
  5414. Warning( "glBlitFramebuffer", " not available." );
  5415. }
  5416. static GLenum REGAL_CALL glCheckFramebufferStatus(GLenum target)
  5417. {
  5418. UNUSED_PARAMETER(target);
  5419. Warning( "glCheckFramebufferStatus", " not available." );
  5420. return 0;
  5421. }
  5422. static void REGAL_CALL glDeleteFramebuffers(GLsizei n, const GLuint *framebuffers)
  5423. {
  5424. UNUSED_PARAMETER(n);
  5425. UNUSED_PARAMETER(framebuffers);
  5426. Warning( "glDeleteFramebuffers", " not available." );
  5427. }
  5428. static void REGAL_CALL glDeleteRenderbuffers(GLsizei n, const GLuint *renderbuffers)
  5429. {
  5430. UNUSED_PARAMETER(n);
  5431. UNUSED_PARAMETER(renderbuffers);
  5432. Warning( "glDeleteRenderbuffers", " not available." );
  5433. }
  5434. static void REGAL_CALL glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)
  5435. {
  5436. UNUSED_PARAMETER(target);
  5437. UNUSED_PARAMETER(attachment);
  5438. UNUSED_PARAMETER(renderbuffertarget);
  5439. UNUSED_PARAMETER(renderbuffer);
  5440. Warning( "glFramebufferRenderbuffer", " not available." );
  5441. }
  5442. static void REGAL_CALL glFramebufferTexture1D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
  5443. {
  5444. UNUSED_PARAMETER(target);
  5445. UNUSED_PARAMETER(attachment);
  5446. UNUSED_PARAMETER(textarget);
  5447. UNUSED_PARAMETER(texture);
  5448. UNUSED_PARAMETER(level);
  5449. Warning( "glFramebufferTexture1D", " not available." );
  5450. }
  5451. static void REGAL_CALL glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
  5452. {
  5453. UNUSED_PARAMETER(target);
  5454. UNUSED_PARAMETER(attachment);
  5455. UNUSED_PARAMETER(textarget);
  5456. UNUSED_PARAMETER(texture);
  5457. UNUSED_PARAMETER(level);
  5458. Warning( "glFramebufferTexture2D", " not available." );
  5459. }
  5460. static void REGAL_CALL glFramebufferTexture3D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint layer)
  5461. {
  5462. UNUSED_PARAMETER(target);
  5463. UNUSED_PARAMETER(attachment);
  5464. UNUSED_PARAMETER(textarget);
  5465. UNUSED_PARAMETER(texture);
  5466. UNUSED_PARAMETER(level);
  5467. UNUSED_PARAMETER(layer);
  5468. Warning( "glFramebufferTexture3D", " not available." );
  5469. }
  5470. static void REGAL_CALL glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)
  5471. {
  5472. UNUSED_PARAMETER(target);
  5473. UNUSED_PARAMETER(attachment);
  5474. UNUSED_PARAMETER(texture);
  5475. UNUSED_PARAMETER(level);
  5476. UNUSED_PARAMETER(layer);
  5477. Warning( "glFramebufferTextureLayer", " not available." );
  5478. }
  5479. static void REGAL_CALL glGenFramebuffers(GLsizei n, GLuint *framebuffers)
  5480. {
  5481. UNUSED_PARAMETER(n);
  5482. UNUSED_PARAMETER(framebuffers);
  5483. Warning( "glGenFramebuffers", " not available." );
  5484. }
  5485. static void REGAL_CALL glGenRenderbuffers(GLsizei n, GLuint *renderbuffers)
  5486. {
  5487. UNUSED_PARAMETER(n);
  5488. UNUSED_PARAMETER(renderbuffers);
  5489. Warning( "glGenRenderbuffers", " not available." );
  5490. }
  5491. static void REGAL_CALL glGenerateMipmap(GLenum target)
  5492. {
  5493. UNUSED_PARAMETER(target);
  5494. Warning( "glGenerateMipmap", " not available." );
  5495. }
  5496. static void REGAL_CALL glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params)
  5497. {
  5498. UNUSED_PARAMETER(target);
  5499. UNUSED_PARAMETER(attachment);
  5500. UNUSED_PARAMETER(pname);
  5501. UNUSED_PARAMETER(params);
  5502. Warning( "glGetFramebufferAttachmentParameteriv", " not available." );
  5503. }
  5504. static void REGAL_CALL glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint *params)
  5505. {
  5506. UNUSED_PARAMETER(target);
  5507. UNUSED_PARAMETER(pname);
  5508. UNUSED_PARAMETER(params);
  5509. Warning( "glGetRenderbufferParameteriv", " not available." );
  5510. }
  5511. static GLboolean REGAL_CALL glIsFramebuffer(GLuint framebuffer)
  5512. {
  5513. UNUSED_PARAMETER(framebuffer);
  5514. Warning( "glIsFramebuffer", " not available." );
  5515. return GL_FALSE;
  5516. }
  5517. static GLboolean REGAL_CALL glIsRenderbuffer(GLuint renderbuffer)
  5518. {
  5519. UNUSED_PARAMETER(renderbuffer);
  5520. Warning( "glIsRenderbuffer", " not available." );
  5521. return GL_FALSE;
  5522. }
  5523. static void REGAL_CALL glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height)
  5524. {
  5525. UNUSED_PARAMETER(target);
  5526. UNUSED_PARAMETER(internalformat);
  5527. UNUSED_PARAMETER(width);
  5528. UNUSED_PARAMETER(height);
  5529. Warning( "glRenderbufferStorage", " not available." );
  5530. }
  5531. static void REGAL_CALL glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
  5532. {
  5533. UNUSED_PARAMETER(target);
  5534. UNUSED_PARAMETER(samples);
  5535. UNUSED_PARAMETER(internalformat);
  5536. UNUSED_PARAMETER(width);
  5537. UNUSED_PARAMETER(height);
  5538. Warning( "glRenderbufferStorageMultisample", " not available." );
  5539. }
  5540. // GL_ARB_geometry_shader4
  5541. static void REGAL_CALL glFramebufferTextureARB(GLenum target, GLenum attachment, GLuint texture, GLint level)
  5542. {
  5543. UNUSED_PARAMETER(target);
  5544. UNUSED_PARAMETER(attachment);
  5545. UNUSED_PARAMETER(texture);
  5546. UNUSED_PARAMETER(level);
  5547. Warning( "glFramebufferTextureARB", " not available." );
  5548. }
  5549. static void REGAL_CALL glFramebufferTextureFaceARB(GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face)
  5550. {
  5551. UNUSED_PARAMETER(target);
  5552. UNUSED_PARAMETER(attachment);
  5553. UNUSED_PARAMETER(texture);
  5554. UNUSED_PARAMETER(level);
  5555. UNUSED_PARAMETER(face);
  5556. Warning( "glFramebufferTextureFaceARB", " not available." );
  5557. }
  5558. static void REGAL_CALL glFramebufferTextureLayerARB(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)
  5559. {
  5560. UNUSED_PARAMETER(target);
  5561. UNUSED_PARAMETER(attachment);
  5562. UNUSED_PARAMETER(texture);
  5563. UNUSED_PARAMETER(level);
  5564. UNUSED_PARAMETER(layer);
  5565. Warning( "glFramebufferTextureLayerARB", " not available." );
  5566. }
  5567. static void REGAL_CALL glProgramParameteriARB(GLuint program, GLenum pname, GLint value)
  5568. {
  5569. UNUSED_PARAMETER(program);
  5570. UNUSED_PARAMETER(pname);
  5571. UNUSED_PARAMETER(value);
  5572. Warning( "glProgramParameteriARB", " not available." );
  5573. }
  5574. // GL_ARB_get_program_binary
  5575. static void REGAL_CALL glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary)
  5576. {
  5577. UNUSED_PARAMETER(program);
  5578. UNUSED_PARAMETER(bufSize);
  5579. UNUSED_PARAMETER(length);
  5580. UNUSED_PARAMETER(binaryFormat);
  5581. UNUSED_PARAMETER(binary);
  5582. Warning( "glGetProgramBinary", " not available." );
  5583. }
  5584. static void REGAL_CALL glProgramBinary(GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length)
  5585. {
  5586. UNUSED_PARAMETER(program);
  5587. UNUSED_PARAMETER(binaryFormat);
  5588. UNUSED_PARAMETER(binary);
  5589. UNUSED_PARAMETER(length);
  5590. Warning( "glProgramBinary", " not available." );
  5591. }
  5592. static void REGAL_CALL glProgramParameteri(GLuint program, GLenum pname, GLint value)
  5593. {
  5594. UNUSED_PARAMETER(program);
  5595. UNUSED_PARAMETER(pname);
  5596. UNUSED_PARAMETER(value);
  5597. Warning( "glProgramParameteri", " not available." );
  5598. }
  5599. // GL_ARB_gpu_shader_fp64
  5600. static void REGAL_CALL glGetUniformdv(GLuint program, GLint location, GLdouble *params)
  5601. {
  5602. UNUSED_PARAMETER(program);
  5603. UNUSED_PARAMETER(location);
  5604. UNUSED_PARAMETER(params);
  5605. Warning( "glGetUniformdv", " not available." );
  5606. }
  5607. static void REGAL_CALL glUniform1d(GLint location, GLdouble x)
  5608. {
  5609. UNUSED_PARAMETER(location);
  5610. UNUSED_PARAMETER(x);
  5611. Warning( "glUniform1d", " not available." );
  5612. }
  5613. static void REGAL_CALL glUniform1dv(GLint location, GLsizei count, const GLdouble *value)
  5614. {
  5615. UNUSED_PARAMETER(location);
  5616. UNUSED_PARAMETER(count);
  5617. UNUSED_PARAMETER(value);
  5618. Warning( "glUniform1dv", " not available." );
  5619. }
  5620. static void REGAL_CALL glUniform2d(GLint location, GLdouble x, GLdouble y)
  5621. {
  5622. UNUSED_PARAMETER(location);
  5623. UNUSED_PARAMETER(x);
  5624. UNUSED_PARAMETER(y);
  5625. Warning( "glUniform2d", " not available." );
  5626. }
  5627. static void REGAL_CALL glUniform2dv(GLint location, GLsizei count, const GLdouble *value)
  5628. {
  5629. UNUSED_PARAMETER(location);
  5630. UNUSED_PARAMETER(count);
  5631. UNUSED_PARAMETER(value);
  5632. Warning( "glUniform2dv", " not available." );
  5633. }
  5634. static void REGAL_CALL glUniform3d(GLint location, GLdouble x, GLdouble y, GLdouble z)
  5635. {
  5636. UNUSED_PARAMETER(location);
  5637. UNUSED_PARAMETER(x);
  5638. UNUSED_PARAMETER(y);
  5639. UNUSED_PARAMETER(z);
  5640. Warning( "glUniform3d", " not available." );
  5641. }
  5642. static void REGAL_CALL glUniform3dv(GLint location, GLsizei count, const GLdouble *value)
  5643. {
  5644. UNUSED_PARAMETER(location);
  5645. UNUSED_PARAMETER(count);
  5646. UNUSED_PARAMETER(value);
  5647. Warning( "glUniform3dv", " not available." );
  5648. }
  5649. static void REGAL_CALL glUniform4d(GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  5650. {
  5651. UNUSED_PARAMETER(location);
  5652. UNUSED_PARAMETER(x);
  5653. UNUSED_PARAMETER(y);
  5654. UNUSED_PARAMETER(z);
  5655. UNUSED_PARAMETER(w);
  5656. Warning( "glUniform4d", " not available." );
  5657. }
  5658. static void REGAL_CALL glUniform4dv(GLint location, GLsizei count, const GLdouble *value)
  5659. {
  5660. UNUSED_PARAMETER(location);
  5661. UNUSED_PARAMETER(count);
  5662. UNUSED_PARAMETER(value);
  5663. Warning( "glUniform4dv", " not available." );
  5664. }
  5665. static void REGAL_CALL glUniformMatrix2dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5666. {
  5667. UNUSED_PARAMETER(location);
  5668. UNUSED_PARAMETER(count);
  5669. UNUSED_PARAMETER(transpose);
  5670. UNUSED_PARAMETER(value);
  5671. Warning( "glUniformMatrix2dv", " not available." );
  5672. }
  5673. static void REGAL_CALL glUniformMatrix2x3dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5674. {
  5675. UNUSED_PARAMETER(location);
  5676. UNUSED_PARAMETER(count);
  5677. UNUSED_PARAMETER(transpose);
  5678. UNUSED_PARAMETER(value);
  5679. Warning( "glUniformMatrix2x3dv", " not available." );
  5680. }
  5681. static void REGAL_CALL glUniformMatrix2x4dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5682. {
  5683. UNUSED_PARAMETER(location);
  5684. UNUSED_PARAMETER(count);
  5685. UNUSED_PARAMETER(transpose);
  5686. UNUSED_PARAMETER(value);
  5687. Warning( "glUniformMatrix2x4dv", " not available." );
  5688. }
  5689. static void REGAL_CALL glUniformMatrix3dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5690. {
  5691. UNUSED_PARAMETER(location);
  5692. UNUSED_PARAMETER(count);
  5693. UNUSED_PARAMETER(transpose);
  5694. UNUSED_PARAMETER(value);
  5695. Warning( "glUniformMatrix3dv", " not available." );
  5696. }
  5697. static void REGAL_CALL glUniformMatrix3x2dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5698. {
  5699. UNUSED_PARAMETER(location);
  5700. UNUSED_PARAMETER(count);
  5701. UNUSED_PARAMETER(transpose);
  5702. UNUSED_PARAMETER(value);
  5703. Warning( "glUniformMatrix3x2dv", " not available." );
  5704. }
  5705. static void REGAL_CALL glUniformMatrix3x4dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5706. {
  5707. UNUSED_PARAMETER(location);
  5708. UNUSED_PARAMETER(count);
  5709. UNUSED_PARAMETER(transpose);
  5710. UNUSED_PARAMETER(value);
  5711. Warning( "glUniformMatrix3x4dv", " not available." );
  5712. }
  5713. static void REGAL_CALL glUniformMatrix4dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5714. {
  5715. UNUSED_PARAMETER(location);
  5716. UNUSED_PARAMETER(count);
  5717. UNUSED_PARAMETER(transpose);
  5718. UNUSED_PARAMETER(value);
  5719. Warning( "glUniformMatrix4dv", " not available." );
  5720. }
  5721. static void REGAL_CALL glUniformMatrix4x2dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5722. {
  5723. UNUSED_PARAMETER(location);
  5724. UNUSED_PARAMETER(count);
  5725. UNUSED_PARAMETER(transpose);
  5726. UNUSED_PARAMETER(value);
  5727. Warning( "glUniformMatrix4x2dv", " not available." );
  5728. }
  5729. static void REGAL_CALL glUniformMatrix4x3dv(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  5730. {
  5731. UNUSED_PARAMETER(location);
  5732. UNUSED_PARAMETER(count);
  5733. UNUSED_PARAMETER(transpose);
  5734. UNUSED_PARAMETER(value);
  5735. Warning( "glUniformMatrix4x3dv", " not available." );
  5736. }
  5737. // GL_ARB_imaging
  5738. static void REGAL_CALL glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data)
  5739. {
  5740. UNUSED_PARAMETER(target);
  5741. UNUSED_PARAMETER(start);
  5742. UNUSED_PARAMETER(count);
  5743. UNUSED_PARAMETER(format);
  5744. UNUSED_PARAMETER(type);
  5745. UNUSED_PARAMETER(data);
  5746. Warning( "glColorSubTable", " not available." );
  5747. }
  5748. static void REGAL_CALL glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table)
  5749. {
  5750. UNUSED_PARAMETER(target);
  5751. UNUSED_PARAMETER(internalformat);
  5752. UNUSED_PARAMETER(width);
  5753. UNUSED_PARAMETER(format);
  5754. UNUSED_PARAMETER(type);
  5755. UNUSED_PARAMETER(table);
  5756. Warning( "glColorTable", " not available." );
  5757. }
  5758. static void REGAL_CALL glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params)
  5759. {
  5760. UNUSED_PARAMETER(target);
  5761. UNUSED_PARAMETER(pname);
  5762. UNUSED_PARAMETER(params);
  5763. Warning( "glColorTableParameterfv", " not available." );
  5764. }
  5765. static void REGAL_CALL glColorTableParameteriv(GLenum target, GLenum pname, const GLint *params)
  5766. {
  5767. UNUSED_PARAMETER(target);
  5768. UNUSED_PARAMETER(pname);
  5769. UNUSED_PARAMETER(params);
  5770. Warning( "glColorTableParameteriv", " not available." );
  5771. }
  5772. static void REGAL_CALL glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image)
  5773. {
  5774. UNUSED_PARAMETER(target);
  5775. UNUSED_PARAMETER(internalformat);
  5776. UNUSED_PARAMETER(width);
  5777. UNUSED_PARAMETER(format);
  5778. UNUSED_PARAMETER(type);
  5779. UNUSED_PARAMETER(image);
  5780. Warning( "glConvolutionFilter1D", " not available." );
  5781. }
  5782. static void REGAL_CALL glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image)
  5783. {
  5784. UNUSED_PARAMETER(target);
  5785. UNUSED_PARAMETER(internalformat);
  5786. UNUSED_PARAMETER(width);
  5787. UNUSED_PARAMETER(height);
  5788. UNUSED_PARAMETER(format);
  5789. UNUSED_PARAMETER(type);
  5790. UNUSED_PARAMETER(image);
  5791. Warning( "glConvolutionFilter2D", " not available." );
  5792. }
  5793. static void REGAL_CALL glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params)
  5794. {
  5795. UNUSED_PARAMETER(target);
  5796. UNUSED_PARAMETER(pname);
  5797. UNUSED_PARAMETER(params);
  5798. Warning( "glConvolutionParameterf", " not available." );
  5799. }
  5800. static void REGAL_CALL glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat *params)
  5801. {
  5802. UNUSED_PARAMETER(target);
  5803. UNUSED_PARAMETER(pname);
  5804. UNUSED_PARAMETER(params);
  5805. Warning( "glConvolutionParameterfv", " not available." );
  5806. }
  5807. static void REGAL_CALL glConvolutionParameteri(GLenum target, GLenum pname, GLint params)
  5808. {
  5809. UNUSED_PARAMETER(target);
  5810. UNUSED_PARAMETER(pname);
  5811. UNUSED_PARAMETER(params);
  5812. Warning( "glConvolutionParameteri", " not available." );
  5813. }
  5814. static void REGAL_CALL glConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params)
  5815. {
  5816. UNUSED_PARAMETER(target);
  5817. UNUSED_PARAMETER(pname);
  5818. UNUSED_PARAMETER(params);
  5819. Warning( "glConvolutionParameteriv", " not available." );
  5820. }
  5821. static void REGAL_CALL glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width)
  5822. {
  5823. UNUSED_PARAMETER(target);
  5824. UNUSED_PARAMETER(start);
  5825. UNUSED_PARAMETER(x);
  5826. UNUSED_PARAMETER(y);
  5827. UNUSED_PARAMETER(width);
  5828. Warning( "glCopyColorSubTable", " not available." );
  5829. }
  5830. static void REGAL_CALL glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width)
  5831. {
  5832. UNUSED_PARAMETER(target);
  5833. UNUSED_PARAMETER(internalformat);
  5834. UNUSED_PARAMETER(x);
  5835. UNUSED_PARAMETER(y);
  5836. UNUSED_PARAMETER(width);
  5837. Warning( "glCopyColorTable", " not available." );
  5838. }
  5839. static void REGAL_CALL glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width)
  5840. {
  5841. UNUSED_PARAMETER(target);
  5842. UNUSED_PARAMETER(internalformat);
  5843. UNUSED_PARAMETER(x);
  5844. UNUSED_PARAMETER(y);
  5845. UNUSED_PARAMETER(width);
  5846. Warning( "glCopyConvolutionFilter1D", " not available." );
  5847. }
  5848. static void REGAL_CALL glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height)
  5849. {
  5850. UNUSED_PARAMETER(target);
  5851. UNUSED_PARAMETER(internalformat);
  5852. UNUSED_PARAMETER(x);
  5853. UNUSED_PARAMETER(y);
  5854. UNUSED_PARAMETER(width);
  5855. UNUSED_PARAMETER(height);
  5856. Warning( "glCopyConvolutionFilter2D", " not available." );
  5857. }
  5858. static void REGAL_CALL glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid *table)
  5859. {
  5860. UNUSED_PARAMETER(target);
  5861. UNUSED_PARAMETER(format);
  5862. UNUSED_PARAMETER(type);
  5863. UNUSED_PARAMETER(table);
  5864. Warning( "glGetColorTable", " not available." );
  5865. }
  5866. static void REGAL_CALL glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat *params)
  5867. {
  5868. UNUSED_PARAMETER(target);
  5869. UNUSED_PARAMETER(pname);
  5870. UNUSED_PARAMETER(params);
  5871. Warning( "glGetColorTableParameterfv", " not available." );
  5872. }
  5873. static void REGAL_CALL glGetColorTableParameteriv(GLenum target, GLenum pname, GLint *params)
  5874. {
  5875. UNUSED_PARAMETER(target);
  5876. UNUSED_PARAMETER(pname);
  5877. UNUSED_PARAMETER(params);
  5878. Warning( "glGetColorTableParameteriv", " not available." );
  5879. }
  5880. static void REGAL_CALL glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid *image)
  5881. {
  5882. UNUSED_PARAMETER(target);
  5883. UNUSED_PARAMETER(format);
  5884. UNUSED_PARAMETER(type);
  5885. UNUSED_PARAMETER(image);
  5886. Warning( "glGetConvolutionFilter", " not available." );
  5887. }
  5888. static void REGAL_CALL glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params)
  5889. {
  5890. UNUSED_PARAMETER(target);
  5891. UNUSED_PARAMETER(pname);
  5892. UNUSED_PARAMETER(params);
  5893. Warning( "glGetConvolutionParameterfv", " not available." );
  5894. }
  5895. static void REGAL_CALL glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params)
  5896. {
  5897. UNUSED_PARAMETER(target);
  5898. UNUSED_PARAMETER(pname);
  5899. UNUSED_PARAMETER(params);
  5900. Warning( "glGetConvolutionParameteriv", " not available." );
  5901. }
  5902. static void REGAL_CALL glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
  5903. {
  5904. UNUSED_PARAMETER(target);
  5905. UNUSED_PARAMETER(reset);
  5906. UNUSED_PARAMETER(format);
  5907. UNUSED_PARAMETER(type);
  5908. UNUSED_PARAMETER(values);
  5909. Warning( "glGetHistogram", " not available." );
  5910. }
  5911. static void REGAL_CALL glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat *params)
  5912. {
  5913. UNUSED_PARAMETER(target);
  5914. UNUSED_PARAMETER(pname);
  5915. UNUSED_PARAMETER(params);
  5916. Warning( "glGetHistogramParameterfv", " not available." );
  5917. }
  5918. static void REGAL_CALL glGetHistogramParameteriv(GLenum target, GLenum pname, GLint *params)
  5919. {
  5920. UNUSED_PARAMETER(target);
  5921. UNUSED_PARAMETER(pname);
  5922. UNUSED_PARAMETER(params);
  5923. Warning( "glGetHistogramParameteriv", " not available." );
  5924. }
  5925. static void REGAL_CALL glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum types, GLvoid *values)
  5926. {
  5927. UNUSED_PARAMETER(target);
  5928. UNUSED_PARAMETER(reset);
  5929. UNUSED_PARAMETER(format);
  5930. UNUSED_PARAMETER(types);
  5931. UNUSED_PARAMETER(values);
  5932. Warning( "glGetMinmax", " not available." );
  5933. }
  5934. static void REGAL_CALL glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat *params)
  5935. {
  5936. UNUSED_PARAMETER(target);
  5937. UNUSED_PARAMETER(pname);
  5938. UNUSED_PARAMETER(params);
  5939. Warning( "glGetMinmaxParameterfv", " not available." );
  5940. }
  5941. static void REGAL_CALL glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint *params)
  5942. {
  5943. UNUSED_PARAMETER(target);
  5944. UNUSED_PARAMETER(pname);
  5945. UNUSED_PARAMETER(params);
  5946. Warning( "glGetMinmaxParameteriv", " not available." );
  5947. }
  5948. static void REGAL_CALL glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span)
  5949. {
  5950. UNUSED_PARAMETER(target);
  5951. UNUSED_PARAMETER(format);
  5952. UNUSED_PARAMETER(type);
  5953. UNUSED_PARAMETER(row);
  5954. UNUSED_PARAMETER(column);
  5955. UNUSED_PARAMETER(span);
  5956. Warning( "glGetSeparableFilter", " not available." );
  5957. }
  5958. static void REGAL_CALL glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink)
  5959. {
  5960. UNUSED_PARAMETER(target);
  5961. UNUSED_PARAMETER(width);
  5962. UNUSED_PARAMETER(internalformat);
  5963. UNUSED_PARAMETER(sink);
  5964. Warning( "glHistogram", " not available." );
  5965. }
  5966. static void REGAL_CALL glMinmax(GLenum target, GLenum internalformat, GLboolean sink)
  5967. {
  5968. UNUSED_PARAMETER(target);
  5969. UNUSED_PARAMETER(internalformat);
  5970. UNUSED_PARAMETER(sink);
  5971. Warning( "glMinmax", " not available." );
  5972. }
  5973. static void REGAL_CALL glResetHistogram(GLenum target)
  5974. {
  5975. UNUSED_PARAMETER(target);
  5976. Warning( "glResetHistogram", " not available." );
  5977. }
  5978. static void REGAL_CALL glResetMinmax(GLenum target)
  5979. {
  5980. UNUSED_PARAMETER(target);
  5981. Warning( "glResetMinmax", " not available." );
  5982. }
  5983. static void REGAL_CALL glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
  5984. {
  5985. UNUSED_PARAMETER(target);
  5986. UNUSED_PARAMETER(internalformat);
  5987. UNUSED_PARAMETER(width);
  5988. UNUSED_PARAMETER(height);
  5989. UNUSED_PARAMETER(format);
  5990. UNUSED_PARAMETER(type);
  5991. UNUSED_PARAMETER(row);
  5992. UNUSED_PARAMETER(column);
  5993. Warning( "glSeparableFilter2D", " not available." );
  5994. }
  5995. // GL_ARB_indirect_parameters
  5996. static void REGAL_CALL glMultiDrawArraysIndirectCountARB(GLenum mode, const GLvoid *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride)
  5997. {
  5998. UNUSED_PARAMETER(mode);
  5999. UNUSED_PARAMETER(indirect);
  6000. UNUSED_PARAMETER(drawcount);
  6001. UNUSED_PARAMETER(maxdrawcount);
  6002. UNUSED_PARAMETER(stride);
  6003. Warning( "glMultiDrawArraysIndirectCountARB", " not available." );
  6004. }
  6005. static void REGAL_CALL glMultiDrawElementsIndirectCountARB(GLenum mode, GLenum type, const GLvoid *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride)
  6006. {
  6007. UNUSED_PARAMETER(mode);
  6008. UNUSED_PARAMETER(type);
  6009. UNUSED_PARAMETER(indirect);
  6010. UNUSED_PARAMETER(drawcount);
  6011. UNUSED_PARAMETER(maxdrawcount);
  6012. UNUSED_PARAMETER(stride);
  6013. Warning( "glMultiDrawElementsIndirectCountARB", " not available." );
  6014. }
  6015. // GL_ARB_instanced_arrays
  6016. static void REGAL_CALL glVertexAttribDivisorARB(GLuint index, GLuint divisor)
  6017. {
  6018. UNUSED_PARAMETER(index);
  6019. UNUSED_PARAMETER(divisor);
  6020. Warning( "glVertexAttribDivisorARB", " not available." );
  6021. }
  6022. // GL_ARB_internalformat_query
  6023. static void REGAL_CALL glGetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint *params)
  6024. {
  6025. UNUSED_PARAMETER(target);
  6026. UNUSED_PARAMETER(internalformat);
  6027. UNUSED_PARAMETER(pname);
  6028. UNUSED_PARAMETER(bufSize);
  6029. UNUSED_PARAMETER(params);
  6030. Warning( "glGetInternalformativ", " not available." );
  6031. }
  6032. // GL_ARB_internalformat_query2
  6033. static void REGAL_CALL glGetInternalformati64v(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint64 *params)
  6034. {
  6035. UNUSED_PARAMETER(target);
  6036. UNUSED_PARAMETER(internalformat);
  6037. UNUSED_PARAMETER(pname);
  6038. UNUSED_PARAMETER(bufSize);
  6039. UNUSED_PARAMETER(params);
  6040. Warning( "glGetInternalformati64v", " not available." );
  6041. }
  6042. // GL_ARB_invalidate_subdata
  6043. static void REGAL_CALL glInvalidateBufferData(GLuint buffer)
  6044. {
  6045. UNUSED_PARAMETER(buffer);
  6046. Warning( "glInvalidateBufferData", " not available." );
  6047. }
  6048. static void REGAL_CALL glInvalidateBufferSubData(GLuint buffer, GLintptr offset, GLsizeiptr length)
  6049. {
  6050. UNUSED_PARAMETER(buffer);
  6051. UNUSED_PARAMETER(offset);
  6052. UNUSED_PARAMETER(length);
  6053. Warning( "glInvalidateBufferSubData", " not available." );
  6054. }
  6055. static void REGAL_CALL glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments)
  6056. {
  6057. UNUSED_PARAMETER(target);
  6058. UNUSED_PARAMETER(numAttachments);
  6059. UNUSED_PARAMETER(attachments);
  6060. Warning( "glInvalidateFramebuffer", " not available." );
  6061. }
  6062. static void REGAL_CALL glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height)
  6063. {
  6064. UNUSED_PARAMETER(target);
  6065. UNUSED_PARAMETER(numAttachments);
  6066. UNUSED_PARAMETER(attachments);
  6067. UNUSED_PARAMETER(x);
  6068. UNUSED_PARAMETER(y);
  6069. UNUSED_PARAMETER(width);
  6070. UNUSED_PARAMETER(height);
  6071. Warning( "glInvalidateSubFramebuffer", " not available." );
  6072. }
  6073. static void REGAL_CALL glInvalidateTexImage(GLuint texture, GLint level)
  6074. {
  6075. UNUSED_PARAMETER(texture);
  6076. UNUSED_PARAMETER(level);
  6077. Warning( "glInvalidateTexImage", " not available." );
  6078. }
  6079. static void REGAL_CALL glInvalidateTexSubImage(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth)
  6080. {
  6081. UNUSED_PARAMETER(texture);
  6082. UNUSED_PARAMETER(level);
  6083. UNUSED_PARAMETER(xoffset);
  6084. UNUSED_PARAMETER(yoffset);
  6085. UNUSED_PARAMETER(zoffset);
  6086. UNUSED_PARAMETER(width);
  6087. UNUSED_PARAMETER(height);
  6088. UNUSED_PARAMETER(depth);
  6089. Warning( "glInvalidateTexSubImage", " not available." );
  6090. }
  6091. // GL_ARB_map_buffer_range
  6092. static void REGAL_CALL glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length)
  6093. {
  6094. UNUSED_PARAMETER(target);
  6095. UNUSED_PARAMETER(offset);
  6096. UNUSED_PARAMETER(length);
  6097. Warning( "glFlushMappedBufferRange", " not available." );
  6098. }
  6099. static GLvoid *REGAL_CALL glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
  6100. {
  6101. UNUSED_PARAMETER(target);
  6102. UNUSED_PARAMETER(offset);
  6103. UNUSED_PARAMETER(length);
  6104. UNUSED_PARAMETER(access);
  6105. Warning( "glMapBufferRange", " not available." );
  6106. return NULL;
  6107. }
  6108. // GL_ARB_matrix_palette
  6109. static void REGAL_CALL glCurrentPaletteMatrixARB(GLint index)
  6110. {
  6111. UNUSED_PARAMETER(index);
  6112. Warning( "glCurrentPaletteMatrixARB", " not available." );
  6113. }
  6114. static void REGAL_CALL glMatrixIndexPointerARB(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  6115. {
  6116. UNUSED_PARAMETER(size);
  6117. UNUSED_PARAMETER(type);
  6118. UNUSED_PARAMETER(stride);
  6119. UNUSED_PARAMETER(pointer);
  6120. Warning( "glMatrixIndexPointerARB", " not available." );
  6121. }
  6122. static void REGAL_CALL glMatrixIndexubvARB(GLint size, const GLubyte *indices)
  6123. {
  6124. UNUSED_PARAMETER(size);
  6125. UNUSED_PARAMETER(indices);
  6126. Warning( "glMatrixIndexubvARB", " not available." );
  6127. }
  6128. static void REGAL_CALL glMatrixIndexuivARB(GLint size, const GLuint *indices)
  6129. {
  6130. UNUSED_PARAMETER(size);
  6131. UNUSED_PARAMETER(indices);
  6132. Warning( "glMatrixIndexuivARB", " not available." );
  6133. }
  6134. static void REGAL_CALL glMatrixIndexusvARB(GLint size, const GLushort *indices)
  6135. {
  6136. UNUSED_PARAMETER(size);
  6137. UNUSED_PARAMETER(indices);
  6138. Warning( "glMatrixIndexusvARB", " not available." );
  6139. }
  6140. // GL_ARB_multi_bind
  6141. static void REGAL_CALL glBindBuffersBase(GLenum target, GLuint first, GLsizei count, const GLuint *buffers)
  6142. {
  6143. UNUSED_PARAMETER(target);
  6144. UNUSED_PARAMETER(first);
  6145. UNUSED_PARAMETER(count);
  6146. UNUSED_PARAMETER(buffers);
  6147. Warning( "glBindBuffersBase", " not available." );
  6148. }
  6149. static void REGAL_CALL glBindBuffersRange(GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes)
  6150. {
  6151. UNUSED_PARAMETER(target);
  6152. UNUSED_PARAMETER(first);
  6153. UNUSED_PARAMETER(count);
  6154. UNUSED_PARAMETER(buffers);
  6155. UNUSED_PARAMETER(offsets);
  6156. UNUSED_PARAMETER(sizes);
  6157. Warning( "glBindBuffersRange", " not available." );
  6158. }
  6159. static void REGAL_CALL glBindImageTextures(GLuint first, GLsizei count, const GLuint *textures)
  6160. {
  6161. UNUSED_PARAMETER(first);
  6162. UNUSED_PARAMETER(count);
  6163. UNUSED_PARAMETER(textures);
  6164. Warning( "glBindImageTextures", " not available." );
  6165. }
  6166. static void REGAL_CALL glBindSamplers(GLuint first, GLsizei count, const GLuint *samplers)
  6167. {
  6168. UNUSED_PARAMETER(first);
  6169. UNUSED_PARAMETER(count);
  6170. UNUSED_PARAMETER(samplers);
  6171. Warning( "glBindSamplers", " not available." );
  6172. }
  6173. static void REGAL_CALL glBindTextures(GLuint first, GLsizei count, const GLuint *textures)
  6174. {
  6175. UNUSED_PARAMETER(first);
  6176. UNUSED_PARAMETER(count);
  6177. UNUSED_PARAMETER(textures);
  6178. Warning( "glBindTextures", " not available." );
  6179. }
  6180. static void REGAL_CALL glBindVertexBuffers(GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides)
  6181. {
  6182. UNUSED_PARAMETER(first);
  6183. UNUSED_PARAMETER(count);
  6184. UNUSED_PARAMETER(buffers);
  6185. UNUSED_PARAMETER(offsets);
  6186. UNUSED_PARAMETER(strides);
  6187. Warning( "glBindVertexBuffers", " not available." );
  6188. }
  6189. // GL_ARB_multi_draw_indirect
  6190. static void REGAL_CALL glMultiDrawArraysIndirect(GLenum mode, const GLvoid *indirect, GLsizei primcount, GLsizei stride)
  6191. {
  6192. UNUSED_PARAMETER(mode);
  6193. UNUSED_PARAMETER(indirect);
  6194. UNUSED_PARAMETER(primcount);
  6195. UNUSED_PARAMETER(stride);
  6196. Warning( "glMultiDrawArraysIndirect", " not available." );
  6197. }
  6198. static void REGAL_CALL glMultiDrawElementsIndirect(GLenum mode, GLenum type, const GLvoid *indirect, GLsizei primcount, GLsizei stride)
  6199. {
  6200. UNUSED_PARAMETER(mode);
  6201. UNUSED_PARAMETER(type);
  6202. UNUSED_PARAMETER(indirect);
  6203. UNUSED_PARAMETER(primcount);
  6204. UNUSED_PARAMETER(stride);
  6205. Warning( "glMultiDrawElementsIndirect", " not available." );
  6206. }
  6207. // GL_ARB_multisample
  6208. static void REGAL_CALL glSampleCoverageARB(GLclampf value, GLboolean invert)
  6209. {
  6210. UNUSED_PARAMETER(value);
  6211. UNUSED_PARAMETER(invert);
  6212. Warning( "glSampleCoverageARB", " not available." );
  6213. }
  6214. // GL_ARB_multitexture
  6215. static void REGAL_CALL glActiveTextureARB(GLenum texture)
  6216. {
  6217. UNUSED_PARAMETER(texture);
  6218. Warning( "glActiveTextureARB", " not available." );
  6219. }
  6220. static void REGAL_CALL glClientActiveTextureARB(GLenum texture)
  6221. {
  6222. UNUSED_PARAMETER(texture);
  6223. Warning( "glClientActiveTextureARB", " not available." );
  6224. }
  6225. static void REGAL_CALL glMultiTexCoord1dARB(GLenum target, GLdouble s)
  6226. {
  6227. UNUSED_PARAMETER(target);
  6228. UNUSED_PARAMETER(s);
  6229. Warning( "glMultiTexCoord1dARB", " not available." );
  6230. }
  6231. static void REGAL_CALL glMultiTexCoord1dvARB(GLenum target, const GLdouble *v)
  6232. {
  6233. UNUSED_PARAMETER(target);
  6234. UNUSED_PARAMETER(v);
  6235. Warning( "glMultiTexCoord1dvARB", " not available." );
  6236. }
  6237. static void REGAL_CALL glMultiTexCoord1fARB(GLenum target, GLfloat s)
  6238. {
  6239. UNUSED_PARAMETER(target);
  6240. UNUSED_PARAMETER(s);
  6241. Warning( "glMultiTexCoord1fARB", " not available." );
  6242. }
  6243. static void REGAL_CALL glMultiTexCoord1fvARB(GLenum target, const GLfloat *v)
  6244. {
  6245. UNUSED_PARAMETER(target);
  6246. UNUSED_PARAMETER(v);
  6247. Warning( "glMultiTexCoord1fvARB", " not available." );
  6248. }
  6249. static void REGAL_CALL glMultiTexCoord1iARB(GLenum target, GLint s)
  6250. {
  6251. UNUSED_PARAMETER(target);
  6252. UNUSED_PARAMETER(s);
  6253. Warning( "glMultiTexCoord1iARB", " not available." );
  6254. }
  6255. static void REGAL_CALL glMultiTexCoord1ivARB(GLenum target, const GLint *v)
  6256. {
  6257. UNUSED_PARAMETER(target);
  6258. UNUSED_PARAMETER(v);
  6259. Warning( "glMultiTexCoord1ivARB", " not available." );
  6260. }
  6261. static void REGAL_CALL glMultiTexCoord1sARB(GLenum target, GLshort s)
  6262. {
  6263. UNUSED_PARAMETER(target);
  6264. UNUSED_PARAMETER(s);
  6265. Warning( "glMultiTexCoord1sARB", " not available." );
  6266. }
  6267. static void REGAL_CALL glMultiTexCoord1svARB(GLenum target, const GLshort *v)
  6268. {
  6269. UNUSED_PARAMETER(target);
  6270. UNUSED_PARAMETER(v);
  6271. Warning( "glMultiTexCoord1svARB", " not available." );
  6272. }
  6273. static void REGAL_CALL glMultiTexCoord2dARB(GLenum target, GLdouble s, GLdouble t)
  6274. {
  6275. UNUSED_PARAMETER(target);
  6276. UNUSED_PARAMETER(s);
  6277. UNUSED_PARAMETER(t);
  6278. Warning( "glMultiTexCoord2dARB", " not available." );
  6279. }
  6280. static void REGAL_CALL glMultiTexCoord2dvARB(GLenum target, const GLdouble *v)
  6281. {
  6282. UNUSED_PARAMETER(target);
  6283. UNUSED_PARAMETER(v);
  6284. Warning( "glMultiTexCoord2dvARB", " not available." );
  6285. }
  6286. static void REGAL_CALL glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t)
  6287. {
  6288. UNUSED_PARAMETER(target);
  6289. UNUSED_PARAMETER(s);
  6290. UNUSED_PARAMETER(t);
  6291. Warning( "glMultiTexCoord2fARB", " not available." );
  6292. }
  6293. static void REGAL_CALL glMultiTexCoord2fvARB(GLenum target, const GLfloat *v)
  6294. {
  6295. UNUSED_PARAMETER(target);
  6296. UNUSED_PARAMETER(v);
  6297. Warning( "glMultiTexCoord2fvARB", " not available." );
  6298. }
  6299. static void REGAL_CALL glMultiTexCoord2iARB(GLenum target, GLint s, GLint t)
  6300. {
  6301. UNUSED_PARAMETER(target);
  6302. UNUSED_PARAMETER(s);
  6303. UNUSED_PARAMETER(t);
  6304. Warning( "glMultiTexCoord2iARB", " not available." );
  6305. }
  6306. static void REGAL_CALL glMultiTexCoord2ivARB(GLenum target, const GLint *v)
  6307. {
  6308. UNUSED_PARAMETER(target);
  6309. UNUSED_PARAMETER(v);
  6310. Warning( "glMultiTexCoord2ivARB", " not available." );
  6311. }
  6312. static void REGAL_CALL glMultiTexCoord2sARB(GLenum target, GLshort s, GLshort t)
  6313. {
  6314. UNUSED_PARAMETER(target);
  6315. UNUSED_PARAMETER(s);
  6316. UNUSED_PARAMETER(t);
  6317. Warning( "glMultiTexCoord2sARB", " not available." );
  6318. }
  6319. static void REGAL_CALL glMultiTexCoord2svARB(GLenum target, const GLshort *v)
  6320. {
  6321. UNUSED_PARAMETER(target);
  6322. UNUSED_PARAMETER(v);
  6323. Warning( "glMultiTexCoord2svARB", " not available." );
  6324. }
  6325. static void REGAL_CALL glMultiTexCoord3dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r)
  6326. {
  6327. UNUSED_PARAMETER(target);
  6328. UNUSED_PARAMETER(s);
  6329. UNUSED_PARAMETER(t);
  6330. UNUSED_PARAMETER(r);
  6331. Warning( "glMultiTexCoord3dARB", " not available." );
  6332. }
  6333. static void REGAL_CALL glMultiTexCoord3dvARB(GLenum target, const GLdouble *v)
  6334. {
  6335. UNUSED_PARAMETER(target);
  6336. UNUSED_PARAMETER(v);
  6337. Warning( "glMultiTexCoord3dvARB", " not available." );
  6338. }
  6339. static void REGAL_CALL glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r)
  6340. {
  6341. UNUSED_PARAMETER(target);
  6342. UNUSED_PARAMETER(s);
  6343. UNUSED_PARAMETER(t);
  6344. UNUSED_PARAMETER(r);
  6345. Warning( "glMultiTexCoord3fARB", " not available." );
  6346. }
  6347. static void REGAL_CALL glMultiTexCoord3fvARB(GLenum target, const GLfloat *v)
  6348. {
  6349. UNUSED_PARAMETER(target);
  6350. UNUSED_PARAMETER(v);
  6351. Warning( "glMultiTexCoord3fvARB", " not available." );
  6352. }
  6353. static void REGAL_CALL glMultiTexCoord3iARB(GLenum target, GLint s, GLint t, GLint r)
  6354. {
  6355. UNUSED_PARAMETER(target);
  6356. UNUSED_PARAMETER(s);
  6357. UNUSED_PARAMETER(t);
  6358. UNUSED_PARAMETER(r);
  6359. Warning( "glMultiTexCoord3iARB", " not available." );
  6360. }
  6361. static void REGAL_CALL glMultiTexCoord3ivARB(GLenum target, const GLint *v)
  6362. {
  6363. UNUSED_PARAMETER(target);
  6364. UNUSED_PARAMETER(v);
  6365. Warning( "glMultiTexCoord3ivARB", " not available." );
  6366. }
  6367. static void REGAL_CALL glMultiTexCoord3sARB(GLenum target, GLshort s, GLshort t, GLshort r)
  6368. {
  6369. UNUSED_PARAMETER(target);
  6370. UNUSED_PARAMETER(s);
  6371. UNUSED_PARAMETER(t);
  6372. UNUSED_PARAMETER(r);
  6373. Warning( "glMultiTexCoord3sARB", " not available." );
  6374. }
  6375. static void REGAL_CALL glMultiTexCoord3svARB(GLenum target, const GLshort *v)
  6376. {
  6377. UNUSED_PARAMETER(target);
  6378. UNUSED_PARAMETER(v);
  6379. Warning( "glMultiTexCoord3svARB", " not available." );
  6380. }
  6381. static void REGAL_CALL glMultiTexCoord4dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q)
  6382. {
  6383. UNUSED_PARAMETER(target);
  6384. UNUSED_PARAMETER(s);
  6385. UNUSED_PARAMETER(t);
  6386. UNUSED_PARAMETER(r);
  6387. UNUSED_PARAMETER(q);
  6388. Warning( "glMultiTexCoord4dARB", " not available." );
  6389. }
  6390. static void REGAL_CALL glMultiTexCoord4dvARB(GLenum target, const GLdouble *v)
  6391. {
  6392. UNUSED_PARAMETER(target);
  6393. UNUSED_PARAMETER(v);
  6394. Warning( "glMultiTexCoord4dvARB", " not available." );
  6395. }
  6396. static void REGAL_CALL glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
  6397. {
  6398. UNUSED_PARAMETER(target);
  6399. UNUSED_PARAMETER(s);
  6400. UNUSED_PARAMETER(t);
  6401. UNUSED_PARAMETER(r);
  6402. UNUSED_PARAMETER(q);
  6403. Warning( "glMultiTexCoord4fARB", " not available." );
  6404. }
  6405. static void REGAL_CALL glMultiTexCoord4fvARB(GLenum target, const GLfloat *v)
  6406. {
  6407. UNUSED_PARAMETER(target);
  6408. UNUSED_PARAMETER(v);
  6409. Warning( "glMultiTexCoord4fvARB", " not available." );
  6410. }
  6411. static void REGAL_CALL glMultiTexCoord4iARB(GLenum target, GLint s, GLint t, GLint r, GLint q)
  6412. {
  6413. UNUSED_PARAMETER(target);
  6414. UNUSED_PARAMETER(s);
  6415. UNUSED_PARAMETER(t);
  6416. UNUSED_PARAMETER(r);
  6417. UNUSED_PARAMETER(q);
  6418. Warning( "glMultiTexCoord4iARB", " not available." );
  6419. }
  6420. static void REGAL_CALL glMultiTexCoord4ivARB(GLenum target, const GLint *v)
  6421. {
  6422. UNUSED_PARAMETER(target);
  6423. UNUSED_PARAMETER(v);
  6424. Warning( "glMultiTexCoord4ivARB", " not available." );
  6425. }
  6426. static void REGAL_CALL glMultiTexCoord4sARB(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q)
  6427. {
  6428. UNUSED_PARAMETER(target);
  6429. UNUSED_PARAMETER(s);
  6430. UNUSED_PARAMETER(t);
  6431. UNUSED_PARAMETER(r);
  6432. UNUSED_PARAMETER(q);
  6433. Warning( "glMultiTexCoord4sARB", " not available." );
  6434. }
  6435. static void REGAL_CALL glMultiTexCoord4svARB(GLenum target, const GLshort *v)
  6436. {
  6437. UNUSED_PARAMETER(target);
  6438. UNUSED_PARAMETER(v);
  6439. Warning( "glMultiTexCoord4svARB", " not available." );
  6440. }
  6441. // GL_ARB_occlusion_query
  6442. static void REGAL_CALL glBeginQueryARB(GLenum target, GLuint id)
  6443. {
  6444. UNUSED_PARAMETER(target);
  6445. UNUSED_PARAMETER(id);
  6446. Warning( "glBeginQueryARB", " not available." );
  6447. }
  6448. static void REGAL_CALL glDeleteQueriesARB(GLsizei n, const GLuint *ids)
  6449. {
  6450. UNUSED_PARAMETER(n);
  6451. UNUSED_PARAMETER(ids);
  6452. Warning( "glDeleteQueriesARB", " not available." );
  6453. }
  6454. static void REGAL_CALL glEndQueryARB(GLenum target)
  6455. {
  6456. UNUSED_PARAMETER(target);
  6457. Warning( "glEndQueryARB", " not available." );
  6458. }
  6459. static void REGAL_CALL glGenQueriesARB(GLsizei n, GLuint *ids)
  6460. {
  6461. UNUSED_PARAMETER(n);
  6462. UNUSED_PARAMETER(ids);
  6463. Warning( "glGenQueriesARB", " not available." );
  6464. }
  6465. static void REGAL_CALL glGetQueryObjectivARB(GLuint id, GLenum pname, GLint *params)
  6466. {
  6467. UNUSED_PARAMETER(id);
  6468. UNUSED_PARAMETER(pname);
  6469. UNUSED_PARAMETER(params);
  6470. Warning( "glGetQueryObjectivARB", " not available." );
  6471. }
  6472. static void REGAL_CALL glGetQueryObjectuivARB(GLuint id, GLenum pname, GLuint *params)
  6473. {
  6474. UNUSED_PARAMETER(id);
  6475. UNUSED_PARAMETER(pname);
  6476. UNUSED_PARAMETER(params);
  6477. Warning( "glGetQueryObjectuivARB", " not available." );
  6478. }
  6479. static void REGAL_CALL glGetQueryivARB(GLenum target, GLenum pname, GLint *params)
  6480. {
  6481. UNUSED_PARAMETER(target);
  6482. UNUSED_PARAMETER(pname);
  6483. UNUSED_PARAMETER(params);
  6484. Warning( "glGetQueryivARB", " not available." );
  6485. }
  6486. static GLboolean REGAL_CALL glIsQueryARB(GLuint id)
  6487. {
  6488. UNUSED_PARAMETER(id);
  6489. Warning( "glIsQueryARB", " not available." );
  6490. return GL_FALSE;
  6491. }
  6492. // GL_ARB_point_parameters
  6493. static void REGAL_CALL glPointParameterfARB(GLenum pname, GLfloat param)
  6494. {
  6495. UNUSED_PARAMETER(pname);
  6496. UNUSED_PARAMETER(param);
  6497. Warning( "glPointParameterfARB", " not available." );
  6498. }
  6499. static void REGAL_CALL glPointParameterfvARB(GLenum pname, const GLfloat *params)
  6500. {
  6501. UNUSED_PARAMETER(pname);
  6502. UNUSED_PARAMETER(params);
  6503. Warning( "glPointParameterfvARB", " not available." );
  6504. }
  6505. // GL_ARB_program_interface_query
  6506. static void REGAL_CALL glGetProgramInterfaceiv(GLuint program, GLenum programInterface, GLenum pname, GLint *params)
  6507. {
  6508. UNUSED_PARAMETER(program);
  6509. UNUSED_PARAMETER(programInterface);
  6510. UNUSED_PARAMETER(pname);
  6511. UNUSED_PARAMETER(params);
  6512. Warning( "glGetProgramInterfaceiv", " not available." );
  6513. }
  6514. static GLuint REGAL_CALL glGetProgramResourceIndex(GLuint program, GLenum programInterface, const GLchar *name)
  6515. {
  6516. UNUSED_PARAMETER(program);
  6517. UNUSED_PARAMETER(programInterface);
  6518. UNUSED_PARAMETER(name);
  6519. Warning( "glGetProgramResourceIndex", " not available." );
  6520. return 0;
  6521. }
  6522. static GLint REGAL_CALL glGetProgramResourceLocation(GLuint program, GLenum programInterface, const GLchar *name)
  6523. {
  6524. UNUSED_PARAMETER(program);
  6525. UNUSED_PARAMETER(programInterface);
  6526. UNUSED_PARAMETER(name);
  6527. Warning( "glGetProgramResourceLocation", " not available." );
  6528. return 0;
  6529. }
  6530. static GLint REGAL_CALL glGetProgramResourceLocationIndex(GLuint program, GLenum programInterface, const GLchar *name)
  6531. {
  6532. UNUSED_PARAMETER(program);
  6533. UNUSED_PARAMETER(programInterface);
  6534. UNUSED_PARAMETER(name);
  6535. Warning( "glGetProgramResourceLocationIndex", " not available." );
  6536. return 0;
  6537. }
  6538. static void REGAL_CALL glGetProgramResourceName(GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name)
  6539. {
  6540. UNUSED_PARAMETER(program);
  6541. UNUSED_PARAMETER(programInterface);
  6542. UNUSED_PARAMETER(index);
  6543. UNUSED_PARAMETER(bufSize);
  6544. UNUSED_PARAMETER(length);
  6545. UNUSED_PARAMETER(name);
  6546. Warning( "glGetProgramResourceName", " not available." );
  6547. }
  6548. static void REGAL_CALL glGetProgramResourceiv(GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params)
  6549. {
  6550. UNUSED_PARAMETER(program);
  6551. UNUSED_PARAMETER(programInterface);
  6552. UNUSED_PARAMETER(index);
  6553. UNUSED_PARAMETER(propCount);
  6554. UNUSED_PARAMETER(props);
  6555. UNUSED_PARAMETER(bufSize);
  6556. UNUSED_PARAMETER(length);
  6557. UNUSED_PARAMETER(params);
  6558. Warning( "glGetProgramResourceiv", " not available." );
  6559. }
  6560. // GL_ARB_provoking_vertex
  6561. static void REGAL_CALL glProvokingVertex(GLenum mode)
  6562. {
  6563. UNUSED_PARAMETER(mode);
  6564. Warning( "glProvokingVertex", " not available." );
  6565. }
  6566. // GL_ARB_robustness
  6567. static GLenum REGAL_CALL glGetGraphicsResetStatusARB(void)
  6568. {
  6569. Warning( "glGetGraphicsResetStatusARB", " not available." );
  6570. return 0;
  6571. }
  6572. static void REGAL_CALL glGetnColorTableARB(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *table)
  6573. {
  6574. UNUSED_PARAMETER(target);
  6575. UNUSED_PARAMETER(format);
  6576. UNUSED_PARAMETER(type);
  6577. UNUSED_PARAMETER(bufSize);
  6578. UNUSED_PARAMETER(table);
  6579. Warning( "glGetnColorTableARB", " not available." );
  6580. }
  6581. static void REGAL_CALL glGetnCompressedTexImageARB(GLenum target, GLint lod, GLsizei bufSize, GLvoid *img)
  6582. {
  6583. UNUSED_PARAMETER(target);
  6584. UNUSED_PARAMETER(lod);
  6585. UNUSED_PARAMETER(bufSize);
  6586. UNUSED_PARAMETER(img);
  6587. Warning( "glGetnCompressedTexImageARB", " not available." );
  6588. }
  6589. static void REGAL_CALL glGetnConvolutionFilterARB(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image)
  6590. {
  6591. UNUSED_PARAMETER(target);
  6592. UNUSED_PARAMETER(format);
  6593. UNUSED_PARAMETER(type);
  6594. UNUSED_PARAMETER(bufSize);
  6595. UNUSED_PARAMETER(image);
  6596. Warning( "glGetnConvolutionFilterARB", " not available." );
  6597. }
  6598. static void REGAL_CALL glGetnHistogramARB(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values)
  6599. {
  6600. UNUSED_PARAMETER(target);
  6601. UNUSED_PARAMETER(reset);
  6602. UNUSED_PARAMETER(format);
  6603. UNUSED_PARAMETER(type);
  6604. UNUSED_PARAMETER(bufSize);
  6605. UNUSED_PARAMETER(values);
  6606. Warning( "glGetnHistogramARB", " not available." );
  6607. }
  6608. static void REGAL_CALL glGetnMapdvARB(GLenum target, GLenum query, GLsizei bufSize, GLdouble *v)
  6609. {
  6610. UNUSED_PARAMETER(target);
  6611. UNUSED_PARAMETER(query);
  6612. UNUSED_PARAMETER(bufSize);
  6613. UNUSED_PARAMETER(v);
  6614. Warning( "glGetnMapdvARB", " not available." );
  6615. }
  6616. static void REGAL_CALL glGetnMapfvARB(GLenum target, GLenum query, GLsizei bufSize, GLfloat *v)
  6617. {
  6618. UNUSED_PARAMETER(target);
  6619. UNUSED_PARAMETER(query);
  6620. UNUSED_PARAMETER(bufSize);
  6621. UNUSED_PARAMETER(v);
  6622. Warning( "glGetnMapfvARB", " not available." );
  6623. }
  6624. static void REGAL_CALL glGetnMapivARB(GLenum target, GLenum query, GLsizei bufSize, GLint *v)
  6625. {
  6626. UNUSED_PARAMETER(target);
  6627. UNUSED_PARAMETER(query);
  6628. UNUSED_PARAMETER(bufSize);
  6629. UNUSED_PARAMETER(v);
  6630. Warning( "glGetnMapivARB", " not available." );
  6631. }
  6632. static void REGAL_CALL glGetnMinmaxARB(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values)
  6633. {
  6634. UNUSED_PARAMETER(target);
  6635. UNUSED_PARAMETER(reset);
  6636. UNUSED_PARAMETER(format);
  6637. UNUSED_PARAMETER(type);
  6638. UNUSED_PARAMETER(bufSize);
  6639. UNUSED_PARAMETER(values);
  6640. Warning( "glGetnMinmaxARB", " not available." );
  6641. }
  6642. static void REGAL_CALL glGetnPixelMapfvARB(GLenum map, GLsizei bufSize, GLfloat *values)
  6643. {
  6644. UNUSED_PARAMETER(map);
  6645. UNUSED_PARAMETER(bufSize);
  6646. UNUSED_PARAMETER(values);
  6647. Warning( "glGetnPixelMapfvARB", " not available." );
  6648. }
  6649. static void REGAL_CALL glGetnPixelMapuivARB(GLenum map, GLsizei bufSize, GLuint *values)
  6650. {
  6651. UNUSED_PARAMETER(map);
  6652. UNUSED_PARAMETER(bufSize);
  6653. UNUSED_PARAMETER(values);
  6654. Warning( "glGetnPixelMapuivARB", " not available." );
  6655. }
  6656. static void REGAL_CALL glGetnPixelMapusvARB(GLenum map, GLsizei bufSize, GLushort *values)
  6657. {
  6658. UNUSED_PARAMETER(map);
  6659. UNUSED_PARAMETER(bufSize);
  6660. UNUSED_PARAMETER(values);
  6661. Warning( "glGetnPixelMapusvARB", " not available." );
  6662. }
  6663. static void REGAL_CALL glGetnPolygonStippleARB(GLsizei bufSize, GLubyte *pattern)
  6664. {
  6665. UNUSED_PARAMETER(bufSize);
  6666. UNUSED_PARAMETER(pattern);
  6667. Warning( "glGetnPolygonStippleARB", " not available." );
  6668. }
  6669. static void REGAL_CALL glGetnSeparableFilterARB(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span)
  6670. {
  6671. UNUSED_PARAMETER(target);
  6672. UNUSED_PARAMETER(format);
  6673. UNUSED_PARAMETER(type);
  6674. UNUSED_PARAMETER(rowBufSize);
  6675. UNUSED_PARAMETER(row);
  6676. UNUSED_PARAMETER(columnBufSize);
  6677. UNUSED_PARAMETER(column);
  6678. UNUSED_PARAMETER(span);
  6679. Warning( "glGetnSeparableFilterARB", " not available." );
  6680. }
  6681. static void REGAL_CALL glGetnTexImageARB(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *img)
  6682. {
  6683. UNUSED_PARAMETER(target);
  6684. UNUSED_PARAMETER(level);
  6685. UNUSED_PARAMETER(format);
  6686. UNUSED_PARAMETER(type);
  6687. UNUSED_PARAMETER(bufSize);
  6688. UNUSED_PARAMETER(img);
  6689. Warning( "glGetnTexImageARB", " not available." );
  6690. }
  6691. static void REGAL_CALL glGetnUniformdvARB(GLuint program, GLint location, GLsizei bufSize, GLdouble *params)
  6692. {
  6693. UNUSED_PARAMETER(program);
  6694. UNUSED_PARAMETER(location);
  6695. UNUSED_PARAMETER(bufSize);
  6696. UNUSED_PARAMETER(params);
  6697. Warning( "glGetnUniformdvARB", " not available." );
  6698. }
  6699. static void REGAL_CALL glGetnUniformfvARB(GLuint program, GLint location, GLsizei bufSize, GLfloat *params)
  6700. {
  6701. UNUSED_PARAMETER(program);
  6702. UNUSED_PARAMETER(location);
  6703. UNUSED_PARAMETER(bufSize);
  6704. UNUSED_PARAMETER(params);
  6705. Warning( "glGetnUniformfvARB", " not available." );
  6706. }
  6707. static void REGAL_CALL glGetnUniformivARB(GLuint program, GLint location, GLsizei bufSize, GLint *params)
  6708. {
  6709. UNUSED_PARAMETER(program);
  6710. UNUSED_PARAMETER(location);
  6711. UNUSED_PARAMETER(bufSize);
  6712. UNUSED_PARAMETER(params);
  6713. Warning( "glGetnUniformivARB", " not available." );
  6714. }
  6715. static void REGAL_CALL glGetnUniformuivARB(GLuint program, GLint location, GLsizei bufSize, GLuint *params)
  6716. {
  6717. UNUSED_PARAMETER(program);
  6718. UNUSED_PARAMETER(location);
  6719. UNUSED_PARAMETER(bufSize);
  6720. UNUSED_PARAMETER(params);
  6721. Warning( "glGetnUniformuivARB", " not available." );
  6722. }
  6723. static void REGAL_CALL glReadnPixelsARB(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data)
  6724. {
  6725. UNUSED_PARAMETER(x);
  6726. UNUSED_PARAMETER(y);
  6727. UNUSED_PARAMETER(width);
  6728. UNUSED_PARAMETER(height);
  6729. UNUSED_PARAMETER(format);
  6730. UNUSED_PARAMETER(type);
  6731. UNUSED_PARAMETER(bufSize);
  6732. UNUSED_PARAMETER(data);
  6733. Warning( "glReadnPixelsARB", " not available." );
  6734. }
  6735. // GL_ARB_sample_shading
  6736. static void REGAL_CALL glMinSampleShading(GLclampf value)
  6737. {
  6738. UNUSED_PARAMETER(value);
  6739. Warning( "glMinSampleShading", " not available." );
  6740. }
  6741. static void REGAL_CALL glMinSampleShadingARB(GLclampf value)
  6742. {
  6743. UNUSED_PARAMETER(value);
  6744. Warning( "glMinSampleShadingARB", " not available." );
  6745. }
  6746. // GL_ARB_sampler_objects
  6747. static void REGAL_CALL glBindSampler(GLuint unit, GLuint sampler)
  6748. {
  6749. UNUSED_PARAMETER(unit);
  6750. UNUSED_PARAMETER(sampler);
  6751. Warning( "glBindSampler", " not available." );
  6752. }
  6753. static void REGAL_CALL glDeleteSamplers(GLsizei count, const GLuint *samplers)
  6754. {
  6755. UNUSED_PARAMETER(count);
  6756. UNUSED_PARAMETER(samplers);
  6757. Warning( "glDeleteSamplers", " not available." );
  6758. }
  6759. static void REGAL_CALL glGenSamplers(GLsizei count, GLuint *samplers)
  6760. {
  6761. UNUSED_PARAMETER(count);
  6762. UNUSED_PARAMETER(samplers);
  6763. Warning( "glGenSamplers", " not available." );
  6764. }
  6765. static void REGAL_CALL glGetSamplerParameterIiv(GLuint sampler, GLenum pname, GLint *params)
  6766. {
  6767. UNUSED_PARAMETER(sampler);
  6768. UNUSED_PARAMETER(pname);
  6769. UNUSED_PARAMETER(params);
  6770. Warning( "glGetSamplerParameterIiv", " not available." );
  6771. }
  6772. static void REGAL_CALL glGetSamplerParameterIuiv(GLuint sampler, GLenum pname, GLuint *params)
  6773. {
  6774. UNUSED_PARAMETER(sampler);
  6775. UNUSED_PARAMETER(pname);
  6776. UNUSED_PARAMETER(params);
  6777. Warning( "glGetSamplerParameterIuiv", " not available." );
  6778. }
  6779. static void REGAL_CALL glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat *params)
  6780. {
  6781. UNUSED_PARAMETER(sampler);
  6782. UNUSED_PARAMETER(pname);
  6783. UNUSED_PARAMETER(params);
  6784. Warning( "glGetSamplerParameterfv", " not available." );
  6785. }
  6786. static void REGAL_CALL glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint *params)
  6787. {
  6788. UNUSED_PARAMETER(sampler);
  6789. UNUSED_PARAMETER(pname);
  6790. UNUSED_PARAMETER(params);
  6791. Warning( "glGetSamplerParameteriv", " not available." );
  6792. }
  6793. static GLboolean REGAL_CALL glIsSampler(GLuint sampler)
  6794. {
  6795. UNUSED_PARAMETER(sampler);
  6796. Warning( "glIsSampler", " not available." );
  6797. return GL_FALSE;
  6798. }
  6799. static void REGAL_CALL glSamplerParameterIiv(GLuint sampler, GLenum pname, const GLint *params)
  6800. {
  6801. UNUSED_PARAMETER(sampler);
  6802. UNUSED_PARAMETER(pname);
  6803. UNUSED_PARAMETER(params);
  6804. Warning( "glSamplerParameterIiv", " not available." );
  6805. }
  6806. static void REGAL_CALL glSamplerParameterIuiv(GLuint sampler, GLenum pname, const GLuint *params)
  6807. {
  6808. UNUSED_PARAMETER(sampler);
  6809. UNUSED_PARAMETER(pname);
  6810. UNUSED_PARAMETER(params);
  6811. Warning( "glSamplerParameterIuiv", " not available." );
  6812. }
  6813. static void REGAL_CALL glSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param)
  6814. {
  6815. UNUSED_PARAMETER(sampler);
  6816. UNUSED_PARAMETER(pname);
  6817. UNUSED_PARAMETER(param);
  6818. Warning( "glSamplerParameterf", " not available." );
  6819. }
  6820. static void REGAL_CALL glSamplerParameterfv(GLuint sampler, GLenum pname, const GLfloat *params)
  6821. {
  6822. UNUSED_PARAMETER(sampler);
  6823. UNUSED_PARAMETER(pname);
  6824. UNUSED_PARAMETER(params);
  6825. Warning( "glSamplerParameterfv", " not available." );
  6826. }
  6827. static void REGAL_CALL glSamplerParameteri(GLuint sampler, GLenum pname, GLint param)
  6828. {
  6829. UNUSED_PARAMETER(sampler);
  6830. UNUSED_PARAMETER(pname);
  6831. UNUSED_PARAMETER(param);
  6832. Warning( "glSamplerParameteri", " not available." );
  6833. }
  6834. static void REGAL_CALL glSamplerParameteriv(GLuint sampler, GLenum pname, const GLint *params)
  6835. {
  6836. UNUSED_PARAMETER(sampler);
  6837. UNUSED_PARAMETER(pname);
  6838. UNUSED_PARAMETER(params);
  6839. Warning( "glSamplerParameteriv", " not available." );
  6840. }
  6841. // GL_ARB_separate_shader_objects
  6842. static void REGAL_CALL glActiveShaderProgram(GLuint pipeline, GLuint program)
  6843. {
  6844. UNUSED_PARAMETER(pipeline);
  6845. UNUSED_PARAMETER(program);
  6846. Warning( "glActiveShaderProgram", " not available." );
  6847. }
  6848. static void REGAL_CALL glBindProgramPipeline(GLuint pipeline)
  6849. {
  6850. UNUSED_PARAMETER(pipeline);
  6851. Warning( "glBindProgramPipeline", " not available." );
  6852. }
  6853. static GLuint REGAL_CALL glCreateShaderProgramv(GLenum type, GLsizei count, const GLchar * const *strings)
  6854. {
  6855. UNUSED_PARAMETER(type);
  6856. UNUSED_PARAMETER(count);
  6857. UNUSED_PARAMETER(strings);
  6858. Warning( "glCreateShaderProgramv", " not available." );
  6859. return 0;
  6860. }
  6861. static void REGAL_CALL glDeleteProgramPipelines(GLsizei n, const GLuint *pipelines)
  6862. {
  6863. UNUSED_PARAMETER(n);
  6864. UNUSED_PARAMETER(pipelines);
  6865. Warning( "glDeleteProgramPipelines", " not available." );
  6866. }
  6867. static void REGAL_CALL glGenProgramPipelines(GLsizei n, GLuint *pipelines)
  6868. {
  6869. UNUSED_PARAMETER(n);
  6870. UNUSED_PARAMETER(pipelines);
  6871. Warning( "glGenProgramPipelines", " not available." );
  6872. }
  6873. static void REGAL_CALL glGetProgramPipelineInfoLog(GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog)
  6874. {
  6875. UNUSED_PARAMETER(pipeline);
  6876. UNUSED_PARAMETER(bufSize);
  6877. UNUSED_PARAMETER(length);
  6878. UNUSED_PARAMETER(infoLog);
  6879. Warning( "glGetProgramPipelineInfoLog", " not available." );
  6880. }
  6881. static void REGAL_CALL glGetProgramPipelineiv(GLuint pipeline, GLenum pname, GLint *params)
  6882. {
  6883. UNUSED_PARAMETER(pipeline);
  6884. UNUSED_PARAMETER(pname);
  6885. UNUSED_PARAMETER(params);
  6886. Warning( "glGetProgramPipelineiv", " not available." );
  6887. }
  6888. static GLboolean REGAL_CALL glIsProgramPipeline(GLuint pipeline)
  6889. {
  6890. UNUSED_PARAMETER(pipeline);
  6891. Warning( "glIsProgramPipeline", " not available." );
  6892. return GL_FALSE;
  6893. }
  6894. static void REGAL_CALL glProgramUniform1d(GLuint program, GLint location, GLdouble x)
  6895. {
  6896. UNUSED_PARAMETER(program);
  6897. UNUSED_PARAMETER(location);
  6898. UNUSED_PARAMETER(x);
  6899. Warning( "glProgramUniform1d", " not available." );
  6900. }
  6901. static void REGAL_CALL glProgramUniform1dv(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  6902. {
  6903. UNUSED_PARAMETER(program);
  6904. UNUSED_PARAMETER(location);
  6905. UNUSED_PARAMETER(count);
  6906. UNUSED_PARAMETER(value);
  6907. Warning( "glProgramUniform1dv", " not available." );
  6908. }
  6909. static void REGAL_CALL glProgramUniform1f(GLuint program, GLint location, GLfloat x)
  6910. {
  6911. UNUSED_PARAMETER(program);
  6912. UNUSED_PARAMETER(location);
  6913. UNUSED_PARAMETER(x);
  6914. Warning( "glProgramUniform1f", " not available." );
  6915. }
  6916. static void REGAL_CALL glProgramUniform1fv(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  6917. {
  6918. UNUSED_PARAMETER(program);
  6919. UNUSED_PARAMETER(location);
  6920. UNUSED_PARAMETER(count);
  6921. UNUSED_PARAMETER(value);
  6922. Warning( "glProgramUniform1fv", " not available." );
  6923. }
  6924. static void REGAL_CALL glProgramUniform1i(GLuint program, GLint location, GLint x)
  6925. {
  6926. UNUSED_PARAMETER(program);
  6927. UNUSED_PARAMETER(location);
  6928. UNUSED_PARAMETER(x);
  6929. Warning( "glProgramUniform1i", " not available." );
  6930. }
  6931. static void REGAL_CALL glProgramUniform1iv(GLuint program, GLint location, GLsizei count, const GLint *value)
  6932. {
  6933. UNUSED_PARAMETER(program);
  6934. UNUSED_PARAMETER(location);
  6935. UNUSED_PARAMETER(count);
  6936. UNUSED_PARAMETER(value);
  6937. Warning( "glProgramUniform1iv", " not available." );
  6938. }
  6939. static void REGAL_CALL glProgramUniform1ui(GLuint program, GLint location, GLuint v0)
  6940. {
  6941. UNUSED_PARAMETER(program);
  6942. UNUSED_PARAMETER(location);
  6943. UNUSED_PARAMETER(v0);
  6944. Warning( "glProgramUniform1ui", " not available." );
  6945. }
  6946. static void REGAL_CALL glProgramUniform1uiv(GLuint program, GLint location, GLsizei count, const GLuint *value)
  6947. {
  6948. UNUSED_PARAMETER(program);
  6949. UNUSED_PARAMETER(location);
  6950. UNUSED_PARAMETER(count);
  6951. UNUSED_PARAMETER(value);
  6952. Warning( "glProgramUniform1uiv", " not available." );
  6953. }
  6954. static void REGAL_CALL glProgramUniform2d(GLuint program, GLint location, GLdouble x, GLdouble y)
  6955. {
  6956. UNUSED_PARAMETER(program);
  6957. UNUSED_PARAMETER(location);
  6958. UNUSED_PARAMETER(x);
  6959. UNUSED_PARAMETER(y);
  6960. Warning( "glProgramUniform2d", " not available." );
  6961. }
  6962. static void REGAL_CALL glProgramUniform2dv(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  6963. {
  6964. UNUSED_PARAMETER(program);
  6965. UNUSED_PARAMETER(location);
  6966. UNUSED_PARAMETER(count);
  6967. UNUSED_PARAMETER(value);
  6968. Warning( "glProgramUniform2dv", " not available." );
  6969. }
  6970. static void REGAL_CALL glProgramUniform2f(GLuint program, GLint location, GLfloat x, GLfloat y)
  6971. {
  6972. UNUSED_PARAMETER(program);
  6973. UNUSED_PARAMETER(location);
  6974. UNUSED_PARAMETER(x);
  6975. UNUSED_PARAMETER(y);
  6976. Warning( "glProgramUniform2f", " not available." );
  6977. }
  6978. static void REGAL_CALL glProgramUniform2fv(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  6979. {
  6980. UNUSED_PARAMETER(program);
  6981. UNUSED_PARAMETER(location);
  6982. UNUSED_PARAMETER(count);
  6983. UNUSED_PARAMETER(value);
  6984. Warning( "glProgramUniform2fv", " not available." );
  6985. }
  6986. static void REGAL_CALL glProgramUniform2i(GLuint program, GLint location, GLint x, GLint y)
  6987. {
  6988. UNUSED_PARAMETER(program);
  6989. UNUSED_PARAMETER(location);
  6990. UNUSED_PARAMETER(x);
  6991. UNUSED_PARAMETER(y);
  6992. Warning( "glProgramUniform2i", " not available." );
  6993. }
  6994. static void REGAL_CALL glProgramUniform2iv(GLuint program, GLint location, GLsizei count, const GLint *value)
  6995. {
  6996. UNUSED_PARAMETER(program);
  6997. UNUSED_PARAMETER(location);
  6998. UNUSED_PARAMETER(count);
  6999. UNUSED_PARAMETER(value);
  7000. Warning( "glProgramUniform2iv", " not available." );
  7001. }
  7002. static void REGAL_CALL glProgramUniform2ui(GLuint program, GLint location, GLuint x, GLuint y)
  7003. {
  7004. UNUSED_PARAMETER(program);
  7005. UNUSED_PARAMETER(location);
  7006. UNUSED_PARAMETER(x);
  7007. UNUSED_PARAMETER(y);
  7008. Warning( "glProgramUniform2ui", " not available." );
  7009. }
  7010. static void REGAL_CALL glProgramUniform2uiv(GLuint program, GLint location, GLsizei count, const GLuint *value)
  7011. {
  7012. UNUSED_PARAMETER(program);
  7013. UNUSED_PARAMETER(location);
  7014. UNUSED_PARAMETER(count);
  7015. UNUSED_PARAMETER(value);
  7016. Warning( "glProgramUniform2uiv", " not available." );
  7017. }
  7018. static void REGAL_CALL glProgramUniform3d(GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z)
  7019. {
  7020. UNUSED_PARAMETER(program);
  7021. UNUSED_PARAMETER(location);
  7022. UNUSED_PARAMETER(x);
  7023. UNUSED_PARAMETER(y);
  7024. UNUSED_PARAMETER(z);
  7025. Warning( "glProgramUniform3d", " not available." );
  7026. }
  7027. static void REGAL_CALL glProgramUniform3dv(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  7028. {
  7029. UNUSED_PARAMETER(program);
  7030. UNUSED_PARAMETER(location);
  7031. UNUSED_PARAMETER(count);
  7032. UNUSED_PARAMETER(value);
  7033. Warning( "glProgramUniform3dv", " not available." );
  7034. }
  7035. static void REGAL_CALL glProgramUniform3f(GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z)
  7036. {
  7037. UNUSED_PARAMETER(program);
  7038. UNUSED_PARAMETER(location);
  7039. UNUSED_PARAMETER(x);
  7040. UNUSED_PARAMETER(y);
  7041. UNUSED_PARAMETER(z);
  7042. Warning( "glProgramUniform3f", " not available." );
  7043. }
  7044. static void REGAL_CALL glProgramUniform3fv(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  7045. {
  7046. UNUSED_PARAMETER(program);
  7047. UNUSED_PARAMETER(location);
  7048. UNUSED_PARAMETER(count);
  7049. UNUSED_PARAMETER(value);
  7050. Warning( "glProgramUniform3fv", " not available." );
  7051. }
  7052. static void REGAL_CALL glProgramUniform3i(GLuint program, GLint location, GLint x, GLint y, GLint z)
  7053. {
  7054. UNUSED_PARAMETER(program);
  7055. UNUSED_PARAMETER(location);
  7056. UNUSED_PARAMETER(x);
  7057. UNUSED_PARAMETER(y);
  7058. UNUSED_PARAMETER(z);
  7059. Warning( "glProgramUniform3i", " not available." );
  7060. }
  7061. static void REGAL_CALL glProgramUniform3iv(GLuint program, GLint location, GLsizei count, const GLint *value)
  7062. {
  7063. UNUSED_PARAMETER(program);
  7064. UNUSED_PARAMETER(location);
  7065. UNUSED_PARAMETER(count);
  7066. UNUSED_PARAMETER(value);
  7067. Warning( "glProgramUniform3iv", " not available." );
  7068. }
  7069. static void REGAL_CALL glProgramUniform3ui(GLuint program, GLint location, GLuint x, GLuint y, GLuint z)
  7070. {
  7071. UNUSED_PARAMETER(program);
  7072. UNUSED_PARAMETER(location);
  7073. UNUSED_PARAMETER(x);
  7074. UNUSED_PARAMETER(y);
  7075. UNUSED_PARAMETER(z);
  7076. Warning( "glProgramUniform3ui", " not available." );
  7077. }
  7078. static void REGAL_CALL glProgramUniform3uiv(GLuint program, GLint location, GLsizei count, const GLuint *value)
  7079. {
  7080. UNUSED_PARAMETER(program);
  7081. UNUSED_PARAMETER(location);
  7082. UNUSED_PARAMETER(count);
  7083. UNUSED_PARAMETER(value);
  7084. Warning( "glProgramUniform3uiv", " not available." );
  7085. }
  7086. static void REGAL_CALL glProgramUniform4d(GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  7087. {
  7088. UNUSED_PARAMETER(program);
  7089. UNUSED_PARAMETER(location);
  7090. UNUSED_PARAMETER(x);
  7091. UNUSED_PARAMETER(y);
  7092. UNUSED_PARAMETER(z);
  7093. UNUSED_PARAMETER(w);
  7094. Warning( "glProgramUniform4d", " not available." );
  7095. }
  7096. static void REGAL_CALL glProgramUniform4dv(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  7097. {
  7098. UNUSED_PARAMETER(program);
  7099. UNUSED_PARAMETER(location);
  7100. UNUSED_PARAMETER(count);
  7101. UNUSED_PARAMETER(value);
  7102. Warning( "glProgramUniform4dv", " not available." );
  7103. }
  7104. static void REGAL_CALL glProgramUniform4f(GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  7105. {
  7106. UNUSED_PARAMETER(program);
  7107. UNUSED_PARAMETER(location);
  7108. UNUSED_PARAMETER(x);
  7109. UNUSED_PARAMETER(y);
  7110. UNUSED_PARAMETER(z);
  7111. UNUSED_PARAMETER(w);
  7112. Warning( "glProgramUniform4f", " not available." );
  7113. }
  7114. static void REGAL_CALL glProgramUniform4fv(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  7115. {
  7116. UNUSED_PARAMETER(program);
  7117. UNUSED_PARAMETER(location);
  7118. UNUSED_PARAMETER(count);
  7119. UNUSED_PARAMETER(value);
  7120. Warning( "glProgramUniform4fv", " not available." );
  7121. }
  7122. static void REGAL_CALL glProgramUniform4i(GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w)
  7123. {
  7124. UNUSED_PARAMETER(program);
  7125. UNUSED_PARAMETER(location);
  7126. UNUSED_PARAMETER(x);
  7127. UNUSED_PARAMETER(y);
  7128. UNUSED_PARAMETER(z);
  7129. UNUSED_PARAMETER(w);
  7130. Warning( "glProgramUniform4i", " not available." );
  7131. }
  7132. static void REGAL_CALL glProgramUniform4iv(GLuint program, GLint location, GLsizei count, const GLint *value)
  7133. {
  7134. UNUSED_PARAMETER(program);
  7135. UNUSED_PARAMETER(location);
  7136. UNUSED_PARAMETER(count);
  7137. UNUSED_PARAMETER(value);
  7138. Warning( "glProgramUniform4iv", " not available." );
  7139. }
  7140. static void REGAL_CALL glProgramUniform4ui(GLuint program, GLint location, GLuint x, GLuint y, GLuint z, GLuint w)
  7141. {
  7142. UNUSED_PARAMETER(program);
  7143. UNUSED_PARAMETER(location);
  7144. UNUSED_PARAMETER(x);
  7145. UNUSED_PARAMETER(y);
  7146. UNUSED_PARAMETER(z);
  7147. UNUSED_PARAMETER(w);
  7148. Warning( "glProgramUniform4ui", " not available." );
  7149. }
  7150. static void REGAL_CALL glProgramUniform4uiv(GLuint program, GLint location, GLsizei count, const GLuint *value)
  7151. {
  7152. UNUSED_PARAMETER(program);
  7153. UNUSED_PARAMETER(location);
  7154. UNUSED_PARAMETER(count);
  7155. UNUSED_PARAMETER(value);
  7156. Warning( "glProgramUniform4uiv", " not available." );
  7157. }
  7158. static void REGAL_CALL glProgramUniformMatrix2dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7159. {
  7160. UNUSED_PARAMETER(program);
  7161. UNUSED_PARAMETER(location);
  7162. UNUSED_PARAMETER(count);
  7163. UNUSED_PARAMETER(transpose);
  7164. UNUSED_PARAMETER(value);
  7165. Warning( "glProgramUniformMatrix2dv", " not available." );
  7166. }
  7167. static void REGAL_CALL glProgramUniformMatrix2fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7168. {
  7169. UNUSED_PARAMETER(program);
  7170. UNUSED_PARAMETER(location);
  7171. UNUSED_PARAMETER(count);
  7172. UNUSED_PARAMETER(transpose);
  7173. UNUSED_PARAMETER(value);
  7174. Warning( "glProgramUniformMatrix2fv", " not available." );
  7175. }
  7176. static void REGAL_CALL glProgramUniformMatrix2x3dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7177. {
  7178. UNUSED_PARAMETER(program);
  7179. UNUSED_PARAMETER(location);
  7180. UNUSED_PARAMETER(count);
  7181. UNUSED_PARAMETER(transpose);
  7182. UNUSED_PARAMETER(value);
  7183. Warning( "glProgramUniformMatrix2x3dv", " not available." );
  7184. }
  7185. static void REGAL_CALL glProgramUniformMatrix2x3fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7186. {
  7187. UNUSED_PARAMETER(program);
  7188. UNUSED_PARAMETER(location);
  7189. UNUSED_PARAMETER(count);
  7190. UNUSED_PARAMETER(transpose);
  7191. UNUSED_PARAMETER(value);
  7192. Warning( "glProgramUniformMatrix2x3fv", " not available." );
  7193. }
  7194. static void REGAL_CALL glProgramUniformMatrix2x4dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7195. {
  7196. UNUSED_PARAMETER(program);
  7197. UNUSED_PARAMETER(location);
  7198. UNUSED_PARAMETER(count);
  7199. UNUSED_PARAMETER(transpose);
  7200. UNUSED_PARAMETER(value);
  7201. Warning( "glProgramUniformMatrix2x4dv", " not available." );
  7202. }
  7203. static void REGAL_CALL glProgramUniformMatrix2x4fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7204. {
  7205. UNUSED_PARAMETER(program);
  7206. UNUSED_PARAMETER(location);
  7207. UNUSED_PARAMETER(count);
  7208. UNUSED_PARAMETER(transpose);
  7209. UNUSED_PARAMETER(value);
  7210. Warning( "glProgramUniformMatrix2x4fv", " not available." );
  7211. }
  7212. static void REGAL_CALL glProgramUniformMatrix3dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7213. {
  7214. UNUSED_PARAMETER(program);
  7215. UNUSED_PARAMETER(location);
  7216. UNUSED_PARAMETER(count);
  7217. UNUSED_PARAMETER(transpose);
  7218. UNUSED_PARAMETER(value);
  7219. Warning( "glProgramUniformMatrix3dv", " not available." );
  7220. }
  7221. static void REGAL_CALL glProgramUniformMatrix3fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7222. {
  7223. UNUSED_PARAMETER(program);
  7224. UNUSED_PARAMETER(location);
  7225. UNUSED_PARAMETER(count);
  7226. UNUSED_PARAMETER(transpose);
  7227. UNUSED_PARAMETER(value);
  7228. Warning( "glProgramUniformMatrix3fv", " not available." );
  7229. }
  7230. static void REGAL_CALL glProgramUniformMatrix3x2dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7231. {
  7232. UNUSED_PARAMETER(program);
  7233. UNUSED_PARAMETER(location);
  7234. UNUSED_PARAMETER(count);
  7235. UNUSED_PARAMETER(transpose);
  7236. UNUSED_PARAMETER(value);
  7237. Warning( "glProgramUniformMatrix3x2dv", " not available." );
  7238. }
  7239. static void REGAL_CALL glProgramUniformMatrix3x2fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7240. {
  7241. UNUSED_PARAMETER(program);
  7242. UNUSED_PARAMETER(location);
  7243. UNUSED_PARAMETER(count);
  7244. UNUSED_PARAMETER(transpose);
  7245. UNUSED_PARAMETER(value);
  7246. Warning( "glProgramUniformMatrix3x2fv", " not available." );
  7247. }
  7248. static void REGAL_CALL glProgramUniformMatrix3x4dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7249. {
  7250. UNUSED_PARAMETER(program);
  7251. UNUSED_PARAMETER(location);
  7252. UNUSED_PARAMETER(count);
  7253. UNUSED_PARAMETER(transpose);
  7254. UNUSED_PARAMETER(value);
  7255. Warning( "glProgramUniformMatrix3x4dv", " not available." );
  7256. }
  7257. static void REGAL_CALL glProgramUniformMatrix3x4fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7258. {
  7259. UNUSED_PARAMETER(program);
  7260. UNUSED_PARAMETER(location);
  7261. UNUSED_PARAMETER(count);
  7262. UNUSED_PARAMETER(transpose);
  7263. UNUSED_PARAMETER(value);
  7264. Warning( "glProgramUniformMatrix3x4fv", " not available." );
  7265. }
  7266. static void REGAL_CALL glProgramUniformMatrix4dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7267. {
  7268. UNUSED_PARAMETER(program);
  7269. UNUSED_PARAMETER(location);
  7270. UNUSED_PARAMETER(count);
  7271. UNUSED_PARAMETER(transpose);
  7272. UNUSED_PARAMETER(value);
  7273. Warning( "glProgramUniformMatrix4dv", " not available." );
  7274. }
  7275. static void REGAL_CALL glProgramUniformMatrix4fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7276. {
  7277. UNUSED_PARAMETER(program);
  7278. UNUSED_PARAMETER(location);
  7279. UNUSED_PARAMETER(count);
  7280. UNUSED_PARAMETER(transpose);
  7281. UNUSED_PARAMETER(value);
  7282. Warning( "glProgramUniformMatrix4fv", " not available." );
  7283. }
  7284. static void REGAL_CALL glProgramUniformMatrix4x2dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7285. {
  7286. UNUSED_PARAMETER(program);
  7287. UNUSED_PARAMETER(location);
  7288. UNUSED_PARAMETER(count);
  7289. UNUSED_PARAMETER(transpose);
  7290. UNUSED_PARAMETER(value);
  7291. Warning( "glProgramUniformMatrix4x2dv", " not available." );
  7292. }
  7293. static void REGAL_CALL glProgramUniformMatrix4x2fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7294. {
  7295. UNUSED_PARAMETER(program);
  7296. UNUSED_PARAMETER(location);
  7297. UNUSED_PARAMETER(count);
  7298. UNUSED_PARAMETER(transpose);
  7299. UNUSED_PARAMETER(value);
  7300. Warning( "glProgramUniformMatrix4x2fv", " not available." );
  7301. }
  7302. static void REGAL_CALL glProgramUniformMatrix4x3dv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  7303. {
  7304. UNUSED_PARAMETER(program);
  7305. UNUSED_PARAMETER(location);
  7306. UNUSED_PARAMETER(count);
  7307. UNUSED_PARAMETER(transpose);
  7308. UNUSED_PARAMETER(value);
  7309. Warning( "glProgramUniformMatrix4x3dv", " not available." );
  7310. }
  7311. static void REGAL_CALL glProgramUniformMatrix4x3fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7312. {
  7313. UNUSED_PARAMETER(program);
  7314. UNUSED_PARAMETER(location);
  7315. UNUSED_PARAMETER(count);
  7316. UNUSED_PARAMETER(transpose);
  7317. UNUSED_PARAMETER(value);
  7318. Warning( "glProgramUniformMatrix4x3fv", " not available." );
  7319. }
  7320. static void REGAL_CALL glUseProgramStages(GLuint pipeline, GLbitfield stages, GLuint program)
  7321. {
  7322. UNUSED_PARAMETER(pipeline);
  7323. UNUSED_PARAMETER(stages);
  7324. UNUSED_PARAMETER(program);
  7325. Warning( "glUseProgramStages", " not available." );
  7326. }
  7327. static void REGAL_CALL glValidateProgramPipeline(GLuint pipeline)
  7328. {
  7329. UNUSED_PARAMETER(pipeline);
  7330. Warning( "glValidateProgramPipeline", " not available." );
  7331. }
  7332. // GL_ARB_shader_atomic_counters
  7333. static void REGAL_CALL glGetActiveAtomicCounterBufferiv(GLuint program, GLuint bufferIndex, GLenum pname, GLint *params)
  7334. {
  7335. UNUSED_PARAMETER(program);
  7336. UNUSED_PARAMETER(bufferIndex);
  7337. UNUSED_PARAMETER(pname);
  7338. UNUSED_PARAMETER(params);
  7339. Warning( "glGetActiveAtomicCounterBufferiv", " not available." );
  7340. }
  7341. // GL_ARB_shader_image_load_store
  7342. static void REGAL_CALL glBindImageTexture(GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format)
  7343. {
  7344. UNUSED_PARAMETER(unit);
  7345. UNUSED_PARAMETER(texture);
  7346. UNUSED_PARAMETER(level);
  7347. UNUSED_PARAMETER(layered);
  7348. UNUSED_PARAMETER(layer);
  7349. UNUSED_PARAMETER(access);
  7350. UNUSED_PARAMETER(format);
  7351. Warning( "glBindImageTexture", " not available." );
  7352. }
  7353. static void REGAL_CALL glMemoryBarrier(GLbitfield barriers)
  7354. {
  7355. UNUSED_PARAMETER(barriers);
  7356. Warning( "glMemoryBarrier", " not available." );
  7357. }
  7358. // GL_ARB_shader_objects
  7359. static void REGAL_CALL glAttachObjectARB(GLhandleARB containerObj, GLhandleARB obj)
  7360. {
  7361. UNUSED_PARAMETER(containerObj);
  7362. UNUSED_PARAMETER(obj);
  7363. Warning( "glAttachObjectARB", " not available." );
  7364. }
  7365. static void REGAL_CALL glCompileShaderARB(GLhandleARB shaderObj)
  7366. {
  7367. UNUSED_PARAMETER(shaderObj);
  7368. Warning( "glCompileShaderARB", " not available." );
  7369. }
  7370. static GLhandleARB REGAL_CALL glCreateProgramObjectARB(void)
  7371. {
  7372. Warning( "glCreateProgramObjectARB", " not available." );
  7373. return 0;
  7374. }
  7375. static GLhandleARB REGAL_CALL glCreateShaderObjectARB(GLenum shaderType)
  7376. {
  7377. UNUSED_PARAMETER(shaderType);
  7378. Warning( "glCreateShaderObjectARB", " not available." );
  7379. return 0;
  7380. }
  7381. static void REGAL_CALL glDeleteObjectARB(GLhandleARB obj)
  7382. {
  7383. UNUSED_PARAMETER(obj);
  7384. Warning( "glDeleteObjectARB", " not available." );
  7385. }
  7386. static void REGAL_CALL glDetachObjectARB(GLhandleARB containerObj, GLhandleARB attachedObj)
  7387. {
  7388. UNUSED_PARAMETER(containerObj);
  7389. UNUSED_PARAMETER(attachedObj);
  7390. Warning( "glDetachObjectARB", " not available." );
  7391. }
  7392. static void REGAL_CALL glGetActiveUniformARB(GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name)
  7393. {
  7394. UNUSED_PARAMETER(programObj);
  7395. UNUSED_PARAMETER(index);
  7396. UNUSED_PARAMETER(maxLength);
  7397. UNUSED_PARAMETER(length);
  7398. UNUSED_PARAMETER(size);
  7399. UNUSED_PARAMETER(type);
  7400. UNUSED_PARAMETER(name);
  7401. Warning( "glGetActiveUniformARB", " not available." );
  7402. }
  7403. static void REGAL_CALL glGetAttachedObjectsARB(GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj)
  7404. {
  7405. UNUSED_PARAMETER(containerObj);
  7406. UNUSED_PARAMETER(maxCount);
  7407. UNUSED_PARAMETER(count);
  7408. UNUSED_PARAMETER(obj);
  7409. Warning( "glGetAttachedObjectsARB", " not available." );
  7410. }
  7411. static GLhandleARB REGAL_CALL glGetHandleARB(GLenum pname)
  7412. {
  7413. UNUSED_PARAMETER(pname);
  7414. Warning( "glGetHandleARB", " not available." );
  7415. return 0;
  7416. }
  7417. static void REGAL_CALL glGetInfoLogARB(GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog)
  7418. {
  7419. UNUSED_PARAMETER(obj);
  7420. UNUSED_PARAMETER(maxLength);
  7421. UNUSED_PARAMETER(length);
  7422. UNUSED_PARAMETER(infoLog);
  7423. Warning( "glGetInfoLogARB", " not available." );
  7424. }
  7425. static void REGAL_CALL glGetObjectParameterfvARB(GLhandleARB obj, GLenum pname, GLfloat *params)
  7426. {
  7427. UNUSED_PARAMETER(obj);
  7428. UNUSED_PARAMETER(pname);
  7429. UNUSED_PARAMETER(params);
  7430. Warning( "glGetObjectParameterfvARB", " not available." );
  7431. }
  7432. static void REGAL_CALL glGetObjectParameterivARB(GLhandleARB obj, GLenum pname, GLint *params)
  7433. {
  7434. UNUSED_PARAMETER(obj);
  7435. UNUSED_PARAMETER(pname);
  7436. UNUSED_PARAMETER(params);
  7437. Warning( "glGetObjectParameterivARB", " not available." );
  7438. }
  7439. static void REGAL_CALL glGetShaderSourceARB(GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source)
  7440. {
  7441. UNUSED_PARAMETER(obj);
  7442. UNUSED_PARAMETER(maxLength);
  7443. UNUSED_PARAMETER(length);
  7444. UNUSED_PARAMETER(source);
  7445. Warning( "glGetShaderSourceARB", " not available." );
  7446. }
  7447. static GLint REGAL_CALL glGetUniformLocationARB(GLhandleARB programObj, const GLcharARB *name)
  7448. {
  7449. UNUSED_PARAMETER(programObj);
  7450. UNUSED_PARAMETER(name);
  7451. Warning( "glGetUniformLocationARB", " not available." );
  7452. return 0;
  7453. }
  7454. static void REGAL_CALL glGetUniformfvARB(GLhandleARB programObj, GLint location, GLfloat *params)
  7455. {
  7456. UNUSED_PARAMETER(programObj);
  7457. UNUSED_PARAMETER(location);
  7458. UNUSED_PARAMETER(params);
  7459. Warning( "glGetUniformfvARB", " not available." );
  7460. }
  7461. static void REGAL_CALL glGetUniformivARB(GLhandleARB programObj, GLint location, GLint *params)
  7462. {
  7463. UNUSED_PARAMETER(programObj);
  7464. UNUSED_PARAMETER(location);
  7465. UNUSED_PARAMETER(params);
  7466. Warning( "glGetUniformivARB", " not available." );
  7467. }
  7468. static void REGAL_CALL glLinkProgramARB(GLhandleARB programObj)
  7469. {
  7470. UNUSED_PARAMETER(programObj);
  7471. Warning( "glLinkProgramARB", " not available." );
  7472. }
  7473. static void REGAL_CALL glShaderSourceARB(GLhandleARB shaderObj, GLsizei count, const GLcharARB ** const string, const GLint *length)
  7474. {
  7475. UNUSED_PARAMETER(shaderObj);
  7476. UNUSED_PARAMETER(count);
  7477. UNUSED_PARAMETER(string);
  7478. UNUSED_PARAMETER(length);
  7479. Warning( "glShaderSourceARB", " not available." );
  7480. }
  7481. static void REGAL_CALL glUniform1fARB(GLint location, GLfloat v0)
  7482. {
  7483. UNUSED_PARAMETER(location);
  7484. UNUSED_PARAMETER(v0);
  7485. Warning( "glUniform1fARB", " not available." );
  7486. }
  7487. static void REGAL_CALL glUniform1fvARB(GLint location, GLsizei count, const GLfloat *value)
  7488. {
  7489. UNUSED_PARAMETER(location);
  7490. UNUSED_PARAMETER(count);
  7491. UNUSED_PARAMETER(value);
  7492. Warning( "glUniform1fvARB", " not available." );
  7493. }
  7494. static void REGAL_CALL glUniform1iARB(GLint location, GLint v0)
  7495. {
  7496. UNUSED_PARAMETER(location);
  7497. UNUSED_PARAMETER(v0);
  7498. Warning( "glUniform1iARB", " not available." );
  7499. }
  7500. static void REGAL_CALL glUniform1ivARB(GLint location, GLsizei count, const GLint *value)
  7501. {
  7502. UNUSED_PARAMETER(location);
  7503. UNUSED_PARAMETER(count);
  7504. UNUSED_PARAMETER(value);
  7505. Warning( "glUniform1ivARB", " not available." );
  7506. }
  7507. static void REGAL_CALL glUniform2fARB(GLint location, GLfloat v0, GLfloat v1)
  7508. {
  7509. UNUSED_PARAMETER(location);
  7510. UNUSED_PARAMETER(v0);
  7511. UNUSED_PARAMETER(v1);
  7512. Warning( "glUniform2fARB", " not available." );
  7513. }
  7514. static void REGAL_CALL glUniform2fvARB(GLint location, GLsizei count, const GLfloat *value)
  7515. {
  7516. UNUSED_PARAMETER(location);
  7517. UNUSED_PARAMETER(count);
  7518. UNUSED_PARAMETER(value);
  7519. Warning( "glUniform2fvARB", " not available." );
  7520. }
  7521. static void REGAL_CALL glUniform2iARB(GLint location, GLint v0, GLint v1)
  7522. {
  7523. UNUSED_PARAMETER(location);
  7524. UNUSED_PARAMETER(v0);
  7525. UNUSED_PARAMETER(v1);
  7526. Warning( "glUniform2iARB", " not available." );
  7527. }
  7528. static void REGAL_CALL glUniform2ivARB(GLint location, GLsizei count, const GLint *value)
  7529. {
  7530. UNUSED_PARAMETER(location);
  7531. UNUSED_PARAMETER(count);
  7532. UNUSED_PARAMETER(value);
  7533. Warning( "glUniform2ivARB", " not available." );
  7534. }
  7535. static void REGAL_CALL glUniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2)
  7536. {
  7537. UNUSED_PARAMETER(location);
  7538. UNUSED_PARAMETER(v0);
  7539. UNUSED_PARAMETER(v1);
  7540. UNUSED_PARAMETER(v2);
  7541. Warning( "glUniform3fARB", " not available." );
  7542. }
  7543. static void REGAL_CALL glUniform3fvARB(GLint location, GLsizei count, const GLfloat *value)
  7544. {
  7545. UNUSED_PARAMETER(location);
  7546. UNUSED_PARAMETER(count);
  7547. UNUSED_PARAMETER(value);
  7548. Warning( "glUniform3fvARB", " not available." );
  7549. }
  7550. static void REGAL_CALL glUniform3iARB(GLint location, GLint v0, GLint v1, GLint v2)
  7551. {
  7552. UNUSED_PARAMETER(location);
  7553. UNUSED_PARAMETER(v0);
  7554. UNUSED_PARAMETER(v1);
  7555. UNUSED_PARAMETER(v2);
  7556. Warning( "glUniform3iARB", " not available." );
  7557. }
  7558. static void REGAL_CALL glUniform3ivARB(GLint location, GLsizei count, const GLint *value)
  7559. {
  7560. UNUSED_PARAMETER(location);
  7561. UNUSED_PARAMETER(count);
  7562. UNUSED_PARAMETER(value);
  7563. Warning( "glUniform3ivARB", " not available." );
  7564. }
  7565. static void REGAL_CALL glUniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3)
  7566. {
  7567. UNUSED_PARAMETER(location);
  7568. UNUSED_PARAMETER(v0);
  7569. UNUSED_PARAMETER(v1);
  7570. UNUSED_PARAMETER(v2);
  7571. UNUSED_PARAMETER(v3);
  7572. Warning( "glUniform4fARB", " not available." );
  7573. }
  7574. static void REGAL_CALL glUniform4fvARB(GLint location, GLsizei count, const GLfloat *value)
  7575. {
  7576. UNUSED_PARAMETER(location);
  7577. UNUSED_PARAMETER(count);
  7578. UNUSED_PARAMETER(value);
  7579. Warning( "glUniform4fvARB", " not available." );
  7580. }
  7581. static void REGAL_CALL glUniform4iARB(GLint location, GLint v0, GLint v1, GLint v2, GLint v3)
  7582. {
  7583. UNUSED_PARAMETER(location);
  7584. UNUSED_PARAMETER(v0);
  7585. UNUSED_PARAMETER(v1);
  7586. UNUSED_PARAMETER(v2);
  7587. UNUSED_PARAMETER(v3);
  7588. Warning( "glUniform4iARB", " not available." );
  7589. }
  7590. static void REGAL_CALL glUniform4ivARB(GLint location, GLsizei count, const GLint *value)
  7591. {
  7592. UNUSED_PARAMETER(location);
  7593. UNUSED_PARAMETER(count);
  7594. UNUSED_PARAMETER(value);
  7595. Warning( "glUniform4ivARB", " not available." );
  7596. }
  7597. static void REGAL_CALL glUniformMatrix2fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7598. {
  7599. UNUSED_PARAMETER(location);
  7600. UNUSED_PARAMETER(count);
  7601. UNUSED_PARAMETER(transpose);
  7602. UNUSED_PARAMETER(value);
  7603. Warning( "glUniformMatrix2fvARB", " not available." );
  7604. }
  7605. static void REGAL_CALL glUniformMatrix3fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7606. {
  7607. UNUSED_PARAMETER(location);
  7608. UNUSED_PARAMETER(count);
  7609. UNUSED_PARAMETER(transpose);
  7610. UNUSED_PARAMETER(value);
  7611. Warning( "glUniformMatrix3fvARB", " not available." );
  7612. }
  7613. static void REGAL_CALL glUniformMatrix4fvARB(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  7614. {
  7615. UNUSED_PARAMETER(location);
  7616. UNUSED_PARAMETER(count);
  7617. UNUSED_PARAMETER(transpose);
  7618. UNUSED_PARAMETER(value);
  7619. Warning( "glUniformMatrix4fvARB", " not available." );
  7620. }
  7621. static void REGAL_CALL glUseProgramObjectARB(GLhandleARB programObj)
  7622. {
  7623. UNUSED_PARAMETER(programObj);
  7624. Warning( "glUseProgramObjectARB", " not available." );
  7625. }
  7626. static void REGAL_CALL glValidateProgramARB(GLhandleARB programObj)
  7627. {
  7628. UNUSED_PARAMETER(programObj);
  7629. Warning( "glValidateProgramARB", " not available." );
  7630. }
  7631. // GL_ARB_shader_storage_buffer_object
  7632. static void REGAL_CALL glShaderStorageBlockBinding(GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding)
  7633. {
  7634. UNUSED_PARAMETER(program);
  7635. UNUSED_PARAMETER(storageBlockIndex);
  7636. UNUSED_PARAMETER(storageBlockBinding);
  7637. Warning( "glShaderStorageBlockBinding", " not available." );
  7638. }
  7639. // GL_ARB_shader_subroutine
  7640. static void REGAL_CALL glGetActiveSubroutineName(GLuint program, GLenum shaderType, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name)
  7641. {
  7642. UNUSED_PARAMETER(program);
  7643. UNUSED_PARAMETER(shaderType);
  7644. UNUSED_PARAMETER(index);
  7645. UNUSED_PARAMETER(bufSize);
  7646. UNUSED_PARAMETER(length);
  7647. UNUSED_PARAMETER(name);
  7648. Warning( "glGetActiveSubroutineName", " not available." );
  7649. }
  7650. static void REGAL_CALL glGetActiveSubroutineUniformName(GLuint program, GLenum shaderType, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name)
  7651. {
  7652. UNUSED_PARAMETER(program);
  7653. UNUSED_PARAMETER(shaderType);
  7654. UNUSED_PARAMETER(index);
  7655. UNUSED_PARAMETER(bufSize);
  7656. UNUSED_PARAMETER(length);
  7657. UNUSED_PARAMETER(name);
  7658. Warning( "glGetActiveSubroutineUniformName", " not available." );
  7659. }
  7660. static void REGAL_CALL glGetActiveSubroutineUniformiv(GLuint program, GLenum shaderType, GLuint index, GLenum pname, GLint *values)
  7661. {
  7662. UNUSED_PARAMETER(program);
  7663. UNUSED_PARAMETER(shaderType);
  7664. UNUSED_PARAMETER(index);
  7665. UNUSED_PARAMETER(pname);
  7666. UNUSED_PARAMETER(values);
  7667. Warning( "glGetActiveSubroutineUniformiv", " not available." );
  7668. }
  7669. static void REGAL_CALL glGetProgramStageiv(GLuint program, GLenum shaderType, GLenum pname, GLint *values)
  7670. {
  7671. UNUSED_PARAMETER(program);
  7672. UNUSED_PARAMETER(shaderType);
  7673. UNUSED_PARAMETER(pname);
  7674. UNUSED_PARAMETER(values);
  7675. Warning( "glGetProgramStageiv", " not available." );
  7676. }
  7677. static void REGAL_CALL glGetProgramSubroutineParameteruivNV(GLenum target, GLuint index, GLuint *params)
  7678. {
  7679. UNUSED_PARAMETER(target);
  7680. UNUSED_PARAMETER(index);
  7681. UNUSED_PARAMETER(params);
  7682. Warning( "glGetProgramSubroutineParameteruivNV", " not available." );
  7683. }
  7684. static GLuint REGAL_CALL glGetSubroutineIndex(GLuint program, GLenum shaderType, const GLchar *name)
  7685. {
  7686. UNUSED_PARAMETER(program);
  7687. UNUSED_PARAMETER(shaderType);
  7688. UNUSED_PARAMETER(name);
  7689. Warning( "glGetSubroutineIndex", " not available." );
  7690. return 0;
  7691. }
  7692. static GLint REGAL_CALL glGetSubroutineUniformLocation(GLuint program, GLenum shaderType, const GLchar *name)
  7693. {
  7694. UNUSED_PARAMETER(program);
  7695. UNUSED_PARAMETER(shaderType);
  7696. UNUSED_PARAMETER(name);
  7697. Warning( "glGetSubroutineUniformLocation", " not available." );
  7698. return 0;
  7699. }
  7700. static void REGAL_CALL glGetUniformSubroutineuiv(GLenum shaderType, GLint location, GLuint *params)
  7701. {
  7702. UNUSED_PARAMETER(shaderType);
  7703. UNUSED_PARAMETER(location);
  7704. UNUSED_PARAMETER(params);
  7705. Warning( "glGetUniformSubroutineuiv", " not available." );
  7706. }
  7707. static void REGAL_CALL glProgramSubroutineParametersuivNV(GLenum target, GLsizei count, const GLuint *params)
  7708. {
  7709. UNUSED_PARAMETER(target);
  7710. UNUSED_PARAMETER(count);
  7711. UNUSED_PARAMETER(params);
  7712. Warning( "glProgramSubroutineParametersuivNV", " not available." );
  7713. }
  7714. static void REGAL_CALL glUniformSubroutinesuiv(GLenum shaderType, GLsizei count, const GLuint *indices)
  7715. {
  7716. UNUSED_PARAMETER(shaderType);
  7717. UNUSED_PARAMETER(count);
  7718. UNUSED_PARAMETER(indices);
  7719. Warning( "glUniformSubroutinesuiv", " not available." );
  7720. }
  7721. // GL_ARB_shading_language_include
  7722. static void REGAL_CALL glCompileShaderIncludeARB(GLuint shader, GLsizei count, const GLchar **path, const GLint *length)
  7723. {
  7724. UNUSED_PARAMETER(shader);
  7725. UNUSED_PARAMETER(count);
  7726. UNUSED_PARAMETER(path);
  7727. UNUSED_PARAMETER(length);
  7728. Warning( "glCompileShaderIncludeARB", " not available." );
  7729. }
  7730. static void REGAL_CALL glDeleteNamedStringARB(GLint namelen, const GLchar *name)
  7731. {
  7732. UNUSED_PARAMETER(namelen);
  7733. UNUSED_PARAMETER(name);
  7734. Warning( "glDeleteNamedStringARB", " not available." );
  7735. }
  7736. static void REGAL_CALL glGetNamedStringARB(GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string)
  7737. {
  7738. UNUSED_PARAMETER(namelen);
  7739. UNUSED_PARAMETER(name);
  7740. UNUSED_PARAMETER(bufSize);
  7741. UNUSED_PARAMETER(stringlen);
  7742. UNUSED_PARAMETER(string);
  7743. Warning( "glGetNamedStringARB", " not available." );
  7744. }
  7745. static void REGAL_CALL glGetNamedStringivARB(GLint namelen, const GLchar *name, GLenum pname, GLint *params)
  7746. {
  7747. UNUSED_PARAMETER(namelen);
  7748. UNUSED_PARAMETER(name);
  7749. UNUSED_PARAMETER(pname);
  7750. UNUSED_PARAMETER(params);
  7751. Warning( "glGetNamedStringivARB", " not available." );
  7752. }
  7753. static GLboolean REGAL_CALL glIsNamedStringARB(GLint namelen, const GLchar *name)
  7754. {
  7755. UNUSED_PARAMETER(namelen);
  7756. UNUSED_PARAMETER(name);
  7757. Warning( "glIsNamedStringARB", " not available." );
  7758. return GL_FALSE;
  7759. }
  7760. static void REGAL_CALL glNamedStringARB(GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string)
  7761. {
  7762. UNUSED_PARAMETER(type);
  7763. UNUSED_PARAMETER(namelen);
  7764. UNUSED_PARAMETER(name);
  7765. UNUSED_PARAMETER(stringlen);
  7766. UNUSED_PARAMETER(string);
  7767. Warning( "glNamedStringARB", " not available." );
  7768. }
  7769. // GL_ARB_sparse_texture
  7770. static void REGAL_CALL glTexPageCommitmentARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit)
  7771. {
  7772. UNUSED_PARAMETER(target);
  7773. UNUSED_PARAMETER(level);
  7774. UNUSED_PARAMETER(xoffset);
  7775. UNUSED_PARAMETER(yoffset);
  7776. UNUSED_PARAMETER(zoffset);
  7777. UNUSED_PARAMETER(width);
  7778. UNUSED_PARAMETER(height);
  7779. UNUSED_PARAMETER(depth);
  7780. UNUSED_PARAMETER(commit);
  7781. Warning( "glTexPageCommitmentARB", " not available." );
  7782. }
  7783. static void REGAL_CALL glTexturePageCommitmentEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit)
  7784. {
  7785. UNUSED_PARAMETER(texture);
  7786. UNUSED_PARAMETER(target);
  7787. UNUSED_PARAMETER(level);
  7788. UNUSED_PARAMETER(xoffset);
  7789. UNUSED_PARAMETER(yoffset);
  7790. UNUSED_PARAMETER(zoffset);
  7791. UNUSED_PARAMETER(width);
  7792. UNUSED_PARAMETER(height);
  7793. UNUSED_PARAMETER(depth);
  7794. UNUSED_PARAMETER(commit);
  7795. Warning( "glTexturePageCommitmentEXT", " not available." );
  7796. }
  7797. // GL_ARB_sync
  7798. static GLenum REGAL_CALL glClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
  7799. {
  7800. UNUSED_PARAMETER(sync);
  7801. UNUSED_PARAMETER(flags);
  7802. UNUSED_PARAMETER(timeout);
  7803. Warning( "glClientWaitSync", " not available." );
  7804. return 0;
  7805. }
  7806. static void REGAL_CALL glDeleteSync(GLsync sync)
  7807. {
  7808. UNUSED_PARAMETER(sync);
  7809. Warning( "glDeleteSync", " not available." );
  7810. }
  7811. static GLsync REGAL_CALL glFenceSync(GLenum condition, GLbitfield flags)
  7812. {
  7813. UNUSED_PARAMETER(condition);
  7814. UNUSED_PARAMETER(flags);
  7815. Warning( "glFenceSync", " not available." );
  7816. return NULL;
  7817. }
  7818. static void REGAL_CALL glGetInteger64v(GLenum pname, GLint64 *params)
  7819. {
  7820. UNUSED_PARAMETER(pname);
  7821. UNUSED_PARAMETER(params);
  7822. Warning( "glGetInteger64v", " not available." );
  7823. }
  7824. static void REGAL_CALL glGetSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values)
  7825. {
  7826. UNUSED_PARAMETER(sync);
  7827. UNUSED_PARAMETER(pname);
  7828. UNUSED_PARAMETER(bufSize);
  7829. UNUSED_PARAMETER(length);
  7830. UNUSED_PARAMETER(values);
  7831. Warning( "glGetSynciv", " not available." );
  7832. }
  7833. static GLboolean REGAL_CALL glIsSync(GLsync sync)
  7834. {
  7835. UNUSED_PARAMETER(sync);
  7836. Warning( "glIsSync", " not available." );
  7837. return GL_FALSE;
  7838. }
  7839. static void REGAL_CALL glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
  7840. {
  7841. UNUSED_PARAMETER(sync);
  7842. UNUSED_PARAMETER(flags);
  7843. UNUSED_PARAMETER(timeout);
  7844. Warning( "glWaitSync", " not available." );
  7845. }
  7846. // GL_ARB_tessellation_shader
  7847. static void REGAL_CALL glPatchParameterfv(GLenum pname, const GLfloat *values)
  7848. {
  7849. UNUSED_PARAMETER(pname);
  7850. UNUSED_PARAMETER(values);
  7851. Warning( "glPatchParameterfv", " not available." );
  7852. }
  7853. static void REGAL_CALL glPatchParameteri(GLenum pname, GLint value)
  7854. {
  7855. UNUSED_PARAMETER(pname);
  7856. UNUSED_PARAMETER(value);
  7857. Warning( "glPatchParameteri", " not available." );
  7858. }
  7859. // GL_ARB_texture_buffer_object
  7860. static void REGAL_CALL glTexBufferARB(GLenum target, GLenum internalformat, GLuint buffer)
  7861. {
  7862. UNUSED_PARAMETER(target);
  7863. UNUSED_PARAMETER(internalformat);
  7864. UNUSED_PARAMETER(buffer);
  7865. Warning( "glTexBufferARB", " not available." );
  7866. }
  7867. // GL_ARB_texture_buffer_range
  7868. static void REGAL_CALL glTexBufferRange(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size)
  7869. {
  7870. UNUSED_PARAMETER(target);
  7871. UNUSED_PARAMETER(internalformat);
  7872. UNUSED_PARAMETER(buffer);
  7873. UNUSED_PARAMETER(offset);
  7874. UNUSED_PARAMETER(size);
  7875. Warning( "glTexBufferRange", " not available." );
  7876. }
  7877. static void REGAL_CALL glTextureBufferRangeEXT(GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size)
  7878. {
  7879. UNUSED_PARAMETER(texture);
  7880. UNUSED_PARAMETER(target);
  7881. UNUSED_PARAMETER(internalformat);
  7882. UNUSED_PARAMETER(buffer);
  7883. UNUSED_PARAMETER(offset);
  7884. UNUSED_PARAMETER(size);
  7885. Warning( "glTextureBufferRangeEXT", " not available." );
  7886. }
  7887. // GL_ARB_texture_compression
  7888. static void REGAL_CALL glCompressedTexImage1DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data)
  7889. {
  7890. UNUSED_PARAMETER(target);
  7891. UNUSED_PARAMETER(level);
  7892. UNUSED_PARAMETER(internalformat);
  7893. UNUSED_PARAMETER(width);
  7894. UNUSED_PARAMETER(border);
  7895. UNUSED_PARAMETER(imageSize);
  7896. UNUSED_PARAMETER(data);
  7897. Warning( "glCompressedTexImage1DARB", " not available." );
  7898. }
  7899. static void REGAL_CALL glCompressedTexImage2DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data)
  7900. {
  7901. UNUSED_PARAMETER(target);
  7902. UNUSED_PARAMETER(level);
  7903. UNUSED_PARAMETER(internalformat);
  7904. UNUSED_PARAMETER(width);
  7905. UNUSED_PARAMETER(height);
  7906. UNUSED_PARAMETER(border);
  7907. UNUSED_PARAMETER(imageSize);
  7908. UNUSED_PARAMETER(data);
  7909. Warning( "glCompressedTexImage2DARB", " not available." );
  7910. }
  7911. static void REGAL_CALL glCompressedTexImage3DARB(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data)
  7912. {
  7913. UNUSED_PARAMETER(target);
  7914. UNUSED_PARAMETER(level);
  7915. UNUSED_PARAMETER(internalformat);
  7916. UNUSED_PARAMETER(width);
  7917. UNUSED_PARAMETER(height);
  7918. UNUSED_PARAMETER(depth);
  7919. UNUSED_PARAMETER(border);
  7920. UNUSED_PARAMETER(imageSize);
  7921. UNUSED_PARAMETER(data);
  7922. Warning( "glCompressedTexImage3DARB", " not available." );
  7923. }
  7924. static void REGAL_CALL glCompressedTexSubImage1DARB(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data)
  7925. {
  7926. UNUSED_PARAMETER(target);
  7927. UNUSED_PARAMETER(level);
  7928. UNUSED_PARAMETER(xoffset);
  7929. UNUSED_PARAMETER(width);
  7930. UNUSED_PARAMETER(format);
  7931. UNUSED_PARAMETER(imageSize);
  7932. UNUSED_PARAMETER(data);
  7933. Warning( "glCompressedTexSubImage1DARB", " not available." );
  7934. }
  7935. static void REGAL_CALL glCompressedTexSubImage2DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data)
  7936. {
  7937. UNUSED_PARAMETER(target);
  7938. UNUSED_PARAMETER(level);
  7939. UNUSED_PARAMETER(xoffset);
  7940. UNUSED_PARAMETER(yoffset);
  7941. UNUSED_PARAMETER(width);
  7942. UNUSED_PARAMETER(height);
  7943. UNUSED_PARAMETER(format);
  7944. UNUSED_PARAMETER(imageSize);
  7945. UNUSED_PARAMETER(data);
  7946. Warning( "glCompressedTexSubImage2DARB", " not available." );
  7947. }
  7948. static void REGAL_CALL glCompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data)
  7949. {
  7950. UNUSED_PARAMETER(target);
  7951. UNUSED_PARAMETER(level);
  7952. UNUSED_PARAMETER(xoffset);
  7953. UNUSED_PARAMETER(yoffset);
  7954. UNUSED_PARAMETER(zoffset);
  7955. UNUSED_PARAMETER(width);
  7956. UNUSED_PARAMETER(height);
  7957. UNUSED_PARAMETER(depth);
  7958. UNUSED_PARAMETER(format);
  7959. UNUSED_PARAMETER(imageSize);
  7960. UNUSED_PARAMETER(data);
  7961. Warning( "glCompressedTexSubImage3DARB", " not available." );
  7962. }
  7963. static void REGAL_CALL glGetCompressedTexImageARB(GLenum target, GLint lod, GLvoid *img)
  7964. {
  7965. UNUSED_PARAMETER(target);
  7966. UNUSED_PARAMETER(lod);
  7967. UNUSED_PARAMETER(img);
  7968. Warning( "glGetCompressedTexImageARB", " not available." );
  7969. }
  7970. // GL_ARB_texture_multisample
  7971. static void REGAL_CALL glGetMultisamplefv(GLenum pname, GLuint index, GLfloat *val)
  7972. {
  7973. UNUSED_PARAMETER(pname);
  7974. UNUSED_PARAMETER(index);
  7975. UNUSED_PARAMETER(val);
  7976. Warning( "glGetMultisamplefv", " not available." );
  7977. }
  7978. static void REGAL_CALL glSampleMaski(GLuint index, GLbitfield mask)
  7979. {
  7980. UNUSED_PARAMETER(index);
  7981. UNUSED_PARAMETER(mask);
  7982. Warning( "glSampleMaski", " not available." );
  7983. }
  7984. static void REGAL_CALL glTexImage2DMultisample(GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations)
  7985. {
  7986. UNUSED_PARAMETER(target);
  7987. UNUSED_PARAMETER(samples);
  7988. UNUSED_PARAMETER(internalformat);
  7989. UNUSED_PARAMETER(width);
  7990. UNUSED_PARAMETER(height);
  7991. UNUSED_PARAMETER(fixedsamplelocations);
  7992. Warning( "glTexImage2DMultisample", " not available." );
  7993. }
  7994. static void REGAL_CALL glTexImage3DMultisample(GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations)
  7995. {
  7996. UNUSED_PARAMETER(target);
  7997. UNUSED_PARAMETER(samples);
  7998. UNUSED_PARAMETER(internalformat);
  7999. UNUSED_PARAMETER(width);
  8000. UNUSED_PARAMETER(height);
  8001. UNUSED_PARAMETER(depth);
  8002. UNUSED_PARAMETER(fixedsamplelocations);
  8003. Warning( "glTexImage3DMultisample", " not available." );
  8004. }
  8005. // GL_ARB_texture_storage
  8006. static void REGAL_CALL glTexStorage1D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width)
  8007. {
  8008. UNUSED_PARAMETER(target);
  8009. UNUSED_PARAMETER(levels);
  8010. UNUSED_PARAMETER(internalformat);
  8011. UNUSED_PARAMETER(width);
  8012. Warning( "glTexStorage1D", " not available." );
  8013. }
  8014. static void REGAL_CALL glTexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
  8015. {
  8016. UNUSED_PARAMETER(target);
  8017. UNUSED_PARAMETER(levels);
  8018. UNUSED_PARAMETER(internalformat);
  8019. UNUSED_PARAMETER(width);
  8020. UNUSED_PARAMETER(height);
  8021. Warning( "glTexStorage2D", " not available." );
  8022. }
  8023. static void REGAL_CALL glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth)
  8024. {
  8025. UNUSED_PARAMETER(target);
  8026. UNUSED_PARAMETER(levels);
  8027. UNUSED_PARAMETER(internalformat);
  8028. UNUSED_PARAMETER(width);
  8029. UNUSED_PARAMETER(height);
  8030. UNUSED_PARAMETER(depth);
  8031. Warning( "glTexStorage3D", " not available." );
  8032. }
  8033. static void REGAL_CALL glTextureStorage1DEXT(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width)
  8034. {
  8035. UNUSED_PARAMETER(texture);
  8036. UNUSED_PARAMETER(target);
  8037. UNUSED_PARAMETER(levels);
  8038. UNUSED_PARAMETER(internalformat);
  8039. UNUSED_PARAMETER(width);
  8040. Warning( "glTextureStorage1DEXT", " not available." );
  8041. }
  8042. static void REGAL_CALL glTextureStorage2DEXT(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
  8043. {
  8044. UNUSED_PARAMETER(texture);
  8045. UNUSED_PARAMETER(target);
  8046. UNUSED_PARAMETER(levels);
  8047. UNUSED_PARAMETER(internalformat);
  8048. UNUSED_PARAMETER(width);
  8049. UNUSED_PARAMETER(height);
  8050. Warning( "glTextureStorage2DEXT", " not available." );
  8051. }
  8052. static void REGAL_CALL glTextureStorage3DEXT(GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth)
  8053. {
  8054. UNUSED_PARAMETER(texture);
  8055. UNUSED_PARAMETER(target);
  8056. UNUSED_PARAMETER(levels);
  8057. UNUSED_PARAMETER(internalformat);
  8058. UNUSED_PARAMETER(width);
  8059. UNUSED_PARAMETER(height);
  8060. UNUSED_PARAMETER(depth);
  8061. Warning( "glTextureStorage3DEXT", " not available." );
  8062. }
  8063. // GL_ARB_texture_storage_multisample
  8064. static void REGAL_CALL glTexStorage2DMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations)
  8065. {
  8066. UNUSED_PARAMETER(target);
  8067. UNUSED_PARAMETER(samples);
  8068. UNUSED_PARAMETER(internalformat);
  8069. UNUSED_PARAMETER(width);
  8070. UNUSED_PARAMETER(height);
  8071. UNUSED_PARAMETER(fixedsamplelocations);
  8072. Warning( "glTexStorage2DMultisample", " not available." );
  8073. }
  8074. static void REGAL_CALL glTexStorage3DMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations)
  8075. {
  8076. UNUSED_PARAMETER(target);
  8077. UNUSED_PARAMETER(samples);
  8078. UNUSED_PARAMETER(internalformat);
  8079. UNUSED_PARAMETER(width);
  8080. UNUSED_PARAMETER(height);
  8081. UNUSED_PARAMETER(depth);
  8082. UNUSED_PARAMETER(fixedsamplelocations);
  8083. Warning( "glTexStorage3DMultisample", " not available." );
  8084. }
  8085. static void REGAL_CALL glTextureStorage2DMultisampleEXT(GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations)
  8086. {
  8087. UNUSED_PARAMETER(texture);
  8088. UNUSED_PARAMETER(target);
  8089. UNUSED_PARAMETER(samples);
  8090. UNUSED_PARAMETER(internalformat);
  8091. UNUSED_PARAMETER(width);
  8092. UNUSED_PARAMETER(height);
  8093. UNUSED_PARAMETER(fixedsamplelocations);
  8094. Warning( "glTextureStorage2DMultisampleEXT", " not available." );
  8095. }
  8096. static void REGAL_CALL glTextureStorage3DMultisampleEXT(GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations)
  8097. {
  8098. UNUSED_PARAMETER(texture);
  8099. UNUSED_PARAMETER(target);
  8100. UNUSED_PARAMETER(samples);
  8101. UNUSED_PARAMETER(internalformat);
  8102. UNUSED_PARAMETER(width);
  8103. UNUSED_PARAMETER(height);
  8104. UNUSED_PARAMETER(depth);
  8105. UNUSED_PARAMETER(fixedsamplelocations);
  8106. Warning( "glTextureStorage3DMultisampleEXT", " not available." );
  8107. }
  8108. // GL_ARB_texture_view
  8109. static void REGAL_CALL glTextureView(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers)
  8110. {
  8111. UNUSED_PARAMETER(texture);
  8112. UNUSED_PARAMETER(target);
  8113. UNUSED_PARAMETER(origtexture);
  8114. UNUSED_PARAMETER(internalformat);
  8115. UNUSED_PARAMETER(minlevel);
  8116. UNUSED_PARAMETER(numlevels);
  8117. UNUSED_PARAMETER(minlayer);
  8118. UNUSED_PARAMETER(numlayers);
  8119. Warning( "glTextureView", " not available." );
  8120. }
  8121. // GL_ARB_timer_query
  8122. static void REGAL_CALL glGetQueryObjecti64v(GLuint id, GLenum pname, GLint64 *params)
  8123. {
  8124. UNUSED_PARAMETER(id);
  8125. UNUSED_PARAMETER(pname);
  8126. UNUSED_PARAMETER(params);
  8127. Warning( "glGetQueryObjecti64v", " not available." );
  8128. }
  8129. static void REGAL_CALL glGetQueryObjectui64v(GLuint id, GLenum pname, GLuint64 *params)
  8130. {
  8131. UNUSED_PARAMETER(id);
  8132. UNUSED_PARAMETER(pname);
  8133. UNUSED_PARAMETER(params);
  8134. Warning( "glGetQueryObjectui64v", " not available." );
  8135. }
  8136. static void REGAL_CALL glQueryCounter(GLuint id, GLenum target)
  8137. {
  8138. UNUSED_PARAMETER(id);
  8139. UNUSED_PARAMETER(target);
  8140. Warning( "glQueryCounter", " not available." );
  8141. }
  8142. // GL_ARB_transform_feedback2
  8143. static void REGAL_CALL glBindTransformFeedback(GLenum target, GLuint id)
  8144. {
  8145. UNUSED_PARAMETER(target);
  8146. UNUSED_PARAMETER(id);
  8147. Warning( "glBindTransformFeedback", " not available." );
  8148. }
  8149. static void REGAL_CALL glDeleteTransformFeedbacks(GLsizei n, const GLuint *ids)
  8150. {
  8151. UNUSED_PARAMETER(n);
  8152. UNUSED_PARAMETER(ids);
  8153. Warning( "glDeleteTransformFeedbacks", " not available." );
  8154. }
  8155. static void REGAL_CALL glDrawTransformFeedback(GLenum mode, GLuint name)
  8156. {
  8157. UNUSED_PARAMETER(mode);
  8158. UNUSED_PARAMETER(name);
  8159. Warning( "glDrawTransformFeedback", " not available." );
  8160. }
  8161. static void REGAL_CALL glGenTransformFeedbacks(GLsizei n, GLuint *ids)
  8162. {
  8163. UNUSED_PARAMETER(n);
  8164. UNUSED_PARAMETER(ids);
  8165. Warning( "glGenTransformFeedbacks", " not available." );
  8166. }
  8167. static GLboolean REGAL_CALL glIsTransformFeedback(GLuint id)
  8168. {
  8169. UNUSED_PARAMETER(id);
  8170. Warning( "glIsTransformFeedback", " not available." );
  8171. return GL_FALSE;
  8172. }
  8173. static void REGAL_CALL glPauseTransformFeedback(void)
  8174. {
  8175. Warning( "glPauseTransformFeedback", " not available." );
  8176. }
  8177. static void REGAL_CALL glResumeTransformFeedback(void)
  8178. {
  8179. Warning( "glResumeTransformFeedback", " not available." );
  8180. }
  8181. // GL_ARB_transform_feedback3
  8182. static void REGAL_CALL glBeginQueryIndexed(GLenum target, GLuint index, GLuint id)
  8183. {
  8184. UNUSED_PARAMETER(target);
  8185. UNUSED_PARAMETER(index);
  8186. UNUSED_PARAMETER(id);
  8187. Warning( "glBeginQueryIndexed", " not available." );
  8188. }
  8189. static void REGAL_CALL glDrawTransformFeedbackStream(GLenum mode, GLuint id, GLuint stream)
  8190. {
  8191. UNUSED_PARAMETER(mode);
  8192. UNUSED_PARAMETER(id);
  8193. UNUSED_PARAMETER(stream);
  8194. Warning( "glDrawTransformFeedbackStream", " not available." );
  8195. }
  8196. static void REGAL_CALL glEndQueryIndexed(GLenum target, GLuint index)
  8197. {
  8198. UNUSED_PARAMETER(target);
  8199. UNUSED_PARAMETER(index);
  8200. Warning( "glEndQueryIndexed", " not available." );
  8201. }
  8202. static void REGAL_CALL glGetQueryIndexediv(GLenum target, GLuint index, GLenum pname, GLint *params)
  8203. {
  8204. UNUSED_PARAMETER(target);
  8205. UNUSED_PARAMETER(index);
  8206. UNUSED_PARAMETER(pname);
  8207. UNUSED_PARAMETER(params);
  8208. Warning( "glGetQueryIndexediv", " not available." );
  8209. }
  8210. // GL_ARB_transform_feedback_instanced
  8211. static void REGAL_CALL glDrawTransformFeedbackInstanced(GLenum mode, GLuint id, GLsizei primcount)
  8212. {
  8213. UNUSED_PARAMETER(mode);
  8214. UNUSED_PARAMETER(id);
  8215. UNUSED_PARAMETER(primcount);
  8216. Warning( "glDrawTransformFeedbackInstanced", " not available." );
  8217. }
  8218. static void REGAL_CALL glDrawTransformFeedbackStreamInstanced(GLenum mode, GLuint id, GLuint stream, GLsizei primcount)
  8219. {
  8220. UNUSED_PARAMETER(mode);
  8221. UNUSED_PARAMETER(id);
  8222. UNUSED_PARAMETER(stream);
  8223. UNUSED_PARAMETER(primcount);
  8224. Warning( "glDrawTransformFeedbackStreamInstanced", " not available." );
  8225. }
  8226. // GL_ARB_transpose_matrix
  8227. static void REGAL_CALL glLoadTransposeMatrixdARB(const GLdouble *m)
  8228. {
  8229. UNUSED_PARAMETER(m);
  8230. Warning( "glLoadTransposeMatrixdARB", " not available." );
  8231. }
  8232. static void REGAL_CALL glLoadTransposeMatrixfARB(const GLfloat *m)
  8233. {
  8234. UNUSED_PARAMETER(m);
  8235. Warning( "glLoadTransposeMatrixfARB", " not available." );
  8236. }
  8237. static void REGAL_CALL glMultTransposeMatrixdARB(const GLdouble *m)
  8238. {
  8239. UNUSED_PARAMETER(m);
  8240. Warning( "glMultTransposeMatrixdARB", " not available." );
  8241. }
  8242. static void REGAL_CALL glMultTransposeMatrixfARB(const GLfloat *m)
  8243. {
  8244. UNUSED_PARAMETER(m);
  8245. Warning( "glMultTransposeMatrixfARB", " not available." );
  8246. }
  8247. // GL_ARB_uniform_buffer_object
  8248. static void REGAL_CALL glBindBufferBase(GLenum target, GLuint index, GLuint buffer)
  8249. {
  8250. UNUSED_PARAMETER(target);
  8251. UNUSED_PARAMETER(index);
  8252. UNUSED_PARAMETER(buffer);
  8253. Warning( "glBindBufferBase", " not available." );
  8254. }
  8255. static void REGAL_CALL glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)
  8256. {
  8257. UNUSED_PARAMETER(target);
  8258. UNUSED_PARAMETER(index);
  8259. UNUSED_PARAMETER(buffer);
  8260. UNUSED_PARAMETER(offset);
  8261. UNUSED_PARAMETER(size);
  8262. Warning( "glBindBufferRange", " not available." );
  8263. }
  8264. static void REGAL_CALL glGetActiveUniformBlockName(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName)
  8265. {
  8266. UNUSED_PARAMETER(program);
  8267. UNUSED_PARAMETER(uniformBlockIndex);
  8268. UNUSED_PARAMETER(bufSize);
  8269. UNUSED_PARAMETER(length);
  8270. UNUSED_PARAMETER(uniformBlockName);
  8271. Warning( "glGetActiveUniformBlockName", " not available." );
  8272. }
  8273. static void REGAL_CALL glGetActiveUniformBlockiv(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params)
  8274. {
  8275. UNUSED_PARAMETER(program);
  8276. UNUSED_PARAMETER(uniformBlockIndex);
  8277. UNUSED_PARAMETER(pname);
  8278. UNUSED_PARAMETER(params);
  8279. Warning( "glGetActiveUniformBlockiv", " not available." );
  8280. }
  8281. static void REGAL_CALL glGetActiveUniformName(GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName)
  8282. {
  8283. UNUSED_PARAMETER(program);
  8284. UNUSED_PARAMETER(uniformIndex);
  8285. UNUSED_PARAMETER(bufSize);
  8286. UNUSED_PARAMETER(length);
  8287. UNUSED_PARAMETER(uniformName);
  8288. Warning( "glGetActiveUniformName", " not available." );
  8289. }
  8290. static void REGAL_CALL glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params)
  8291. {
  8292. UNUSED_PARAMETER(program);
  8293. UNUSED_PARAMETER(uniformCount);
  8294. UNUSED_PARAMETER(uniformIndices);
  8295. UNUSED_PARAMETER(pname);
  8296. UNUSED_PARAMETER(params);
  8297. Warning( "glGetActiveUniformsiv", " not available." );
  8298. }
  8299. static void REGAL_CALL glGetIntegeri_v(GLenum target, GLuint index, GLint *data)
  8300. {
  8301. UNUSED_PARAMETER(target);
  8302. UNUSED_PARAMETER(index);
  8303. UNUSED_PARAMETER(data);
  8304. Warning( "glGetIntegeri_v", " not available." );
  8305. }
  8306. static GLuint REGAL_CALL glGetUniformBlockIndex(GLuint program, const GLchar *uniformBlockName)
  8307. {
  8308. UNUSED_PARAMETER(program);
  8309. UNUSED_PARAMETER(uniformBlockName);
  8310. Warning( "glGetUniformBlockIndex", " not available." );
  8311. return 0;
  8312. }
  8313. static void REGAL_CALL glGetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar * const *uniformNames, GLuint *uniformIndices)
  8314. {
  8315. UNUSED_PARAMETER(program);
  8316. UNUSED_PARAMETER(uniformCount);
  8317. UNUSED_PARAMETER(uniformNames);
  8318. UNUSED_PARAMETER(uniformIndices);
  8319. Warning( "glGetUniformIndices", " not available." );
  8320. }
  8321. static void REGAL_CALL glUniformBlockBinding(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding)
  8322. {
  8323. UNUSED_PARAMETER(program);
  8324. UNUSED_PARAMETER(uniformBlockIndex);
  8325. UNUSED_PARAMETER(uniformBlockBinding);
  8326. Warning( "glUniformBlockBinding", " not available." );
  8327. }
  8328. // GL_ARB_vertex_array_object
  8329. static void REGAL_CALL glBindVertexArray(GLuint array)
  8330. {
  8331. UNUSED_PARAMETER(array);
  8332. Warning( "glBindVertexArray", " not available." );
  8333. }
  8334. static void REGAL_CALL glDeleteVertexArrays(GLsizei n, const GLuint *arrays)
  8335. {
  8336. UNUSED_PARAMETER(n);
  8337. UNUSED_PARAMETER(arrays);
  8338. Warning( "glDeleteVertexArrays", " not available." );
  8339. }
  8340. static void REGAL_CALL glGenVertexArrays(GLsizei n, GLuint *arrays)
  8341. {
  8342. UNUSED_PARAMETER(n);
  8343. UNUSED_PARAMETER(arrays);
  8344. Warning( "glGenVertexArrays", " not available." );
  8345. }
  8346. static GLboolean REGAL_CALL glIsVertexArray(GLuint array)
  8347. {
  8348. UNUSED_PARAMETER(array);
  8349. Warning( "glIsVertexArray", " not available." );
  8350. return GL_FALSE;
  8351. }
  8352. // GL_ARB_vertex_attrib_64bit
  8353. static void REGAL_CALL glGetVertexAttribLdv(GLuint index, GLenum pname, GLdouble *params)
  8354. {
  8355. UNUSED_PARAMETER(index);
  8356. UNUSED_PARAMETER(pname);
  8357. UNUSED_PARAMETER(params);
  8358. Warning( "glGetVertexAttribLdv", " not available." );
  8359. }
  8360. static void REGAL_CALL glVertexAttribL1d(GLuint index, GLdouble x)
  8361. {
  8362. UNUSED_PARAMETER(index);
  8363. UNUSED_PARAMETER(x);
  8364. Warning( "glVertexAttribL1d", " not available." );
  8365. }
  8366. static void REGAL_CALL glVertexAttribL1dv(GLuint index, const GLdouble *v)
  8367. {
  8368. UNUSED_PARAMETER(index);
  8369. UNUSED_PARAMETER(v);
  8370. Warning( "glVertexAttribL1dv", " not available." );
  8371. }
  8372. static void REGAL_CALL glVertexAttribL2d(GLuint index, GLdouble x, GLdouble y)
  8373. {
  8374. UNUSED_PARAMETER(index);
  8375. UNUSED_PARAMETER(x);
  8376. UNUSED_PARAMETER(y);
  8377. Warning( "glVertexAttribL2d", " not available." );
  8378. }
  8379. static void REGAL_CALL glVertexAttribL2dv(GLuint index, const GLdouble *v)
  8380. {
  8381. UNUSED_PARAMETER(index);
  8382. UNUSED_PARAMETER(v);
  8383. Warning( "glVertexAttribL2dv", " not available." );
  8384. }
  8385. static void REGAL_CALL glVertexAttribL3d(GLuint index, GLdouble x, GLdouble y, GLdouble z)
  8386. {
  8387. UNUSED_PARAMETER(index);
  8388. UNUSED_PARAMETER(x);
  8389. UNUSED_PARAMETER(y);
  8390. UNUSED_PARAMETER(z);
  8391. Warning( "glVertexAttribL3d", " not available." );
  8392. }
  8393. static void REGAL_CALL glVertexAttribL3dv(GLuint index, const GLdouble *v)
  8394. {
  8395. UNUSED_PARAMETER(index);
  8396. UNUSED_PARAMETER(v);
  8397. Warning( "glVertexAttribL3dv", " not available." );
  8398. }
  8399. static void REGAL_CALL glVertexAttribL4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  8400. {
  8401. UNUSED_PARAMETER(index);
  8402. UNUSED_PARAMETER(x);
  8403. UNUSED_PARAMETER(y);
  8404. UNUSED_PARAMETER(z);
  8405. UNUSED_PARAMETER(w);
  8406. Warning( "glVertexAttribL4d", " not available." );
  8407. }
  8408. static void REGAL_CALL glVertexAttribL4dv(GLuint index, const GLdouble *v)
  8409. {
  8410. UNUSED_PARAMETER(index);
  8411. UNUSED_PARAMETER(v);
  8412. Warning( "glVertexAttribL4dv", " not available." );
  8413. }
  8414. static void REGAL_CALL glVertexAttribLPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  8415. {
  8416. UNUSED_PARAMETER(index);
  8417. UNUSED_PARAMETER(size);
  8418. UNUSED_PARAMETER(type);
  8419. UNUSED_PARAMETER(stride);
  8420. UNUSED_PARAMETER(pointer);
  8421. Warning( "glVertexAttribLPointer", " not available." );
  8422. }
  8423. // GL_ARB_vertex_attrib_binding
  8424. static void REGAL_CALL glBindVertexBuffer(GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride)
  8425. {
  8426. UNUSED_PARAMETER(bindingindex);
  8427. UNUSED_PARAMETER(buffer);
  8428. UNUSED_PARAMETER(offset);
  8429. UNUSED_PARAMETER(stride);
  8430. Warning( "glBindVertexBuffer", " not available." );
  8431. }
  8432. static void REGAL_CALL glVertexArrayBindVertexBufferEXT(GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride)
  8433. {
  8434. UNUSED_PARAMETER(vaobj);
  8435. UNUSED_PARAMETER(bindingindex);
  8436. UNUSED_PARAMETER(buffer);
  8437. UNUSED_PARAMETER(offset);
  8438. UNUSED_PARAMETER(stride);
  8439. Warning( "glVertexArrayBindVertexBufferEXT", " not available." );
  8440. }
  8441. static void REGAL_CALL glVertexArrayVertexAttribBindingEXT(GLuint vaobj, GLuint attribindex, GLuint bindingindex)
  8442. {
  8443. UNUSED_PARAMETER(vaobj);
  8444. UNUSED_PARAMETER(attribindex);
  8445. UNUSED_PARAMETER(bindingindex);
  8446. Warning( "glVertexArrayVertexAttribBindingEXT", " not available." );
  8447. }
  8448. static void REGAL_CALL glVertexArrayVertexAttribFormatEXT(GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset)
  8449. {
  8450. UNUSED_PARAMETER(vaobj);
  8451. UNUSED_PARAMETER(attribindex);
  8452. UNUSED_PARAMETER(size);
  8453. UNUSED_PARAMETER(type);
  8454. UNUSED_PARAMETER(normalized);
  8455. UNUSED_PARAMETER(relativeoffset);
  8456. Warning( "glVertexArrayVertexAttribFormatEXT", " not available." );
  8457. }
  8458. static void REGAL_CALL glVertexArrayVertexAttribIFormatEXT(GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset)
  8459. {
  8460. UNUSED_PARAMETER(vaobj);
  8461. UNUSED_PARAMETER(attribindex);
  8462. UNUSED_PARAMETER(size);
  8463. UNUSED_PARAMETER(type);
  8464. UNUSED_PARAMETER(relativeoffset);
  8465. Warning( "glVertexArrayVertexAttribIFormatEXT", " not available." );
  8466. }
  8467. static void REGAL_CALL glVertexArrayVertexAttribLFormatEXT(GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset)
  8468. {
  8469. UNUSED_PARAMETER(vaobj);
  8470. UNUSED_PARAMETER(attribindex);
  8471. UNUSED_PARAMETER(size);
  8472. UNUSED_PARAMETER(type);
  8473. UNUSED_PARAMETER(relativeoffset);
  8474. Warning( "glVertexArrayVertexAttribLFormatEXT", " not available." );
  8475. }
  8476. static void REGAL_CALL glVertexArrayVertexBindingDivisorEXT(GLuint vaobj, GLuint bindingindex, GLuint divisor)
  8477. {
  8478. UNUSED_PARAMETER(vaobj);
  8479. UNUSED_PARAMETER(bindingindex);
  8480. UNUSED_PARAMETER(divisor);
  8481. Warning( "glVertexArrayVertexBindingDivisorEXT", " not available." );
  8482. }
  8483. static void REGAL_CALL glVertexAttribBinding(GLuint attribindex, GLuint bindingindex)
  8484. {
  8485. UNUSED_PARAMETER(attribindex);
  8486. UNUSED_PARAMETER(bindingindex);
  8487. Warning( "glVertexAttribBinding", " not available." );
  8488. }
  8489. static void REGAL_CALL glVertexAttribFormat(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset)
  8490. {
  8491. UNUSED_PARAMETER(attribindex);
  8492. UNUSED_PARAMETER(size);
  8493. UNUSED_PARAMETER(type);
  8494. UNUSED_PARAMETER(normalized);
  8495. UNUSED_PARAMETER(relativeoffset);
  8496. Warning( "glVertexAttribFormat", " not available." );
  8497. }
  8498. static void REGAL_CALL glVertexAttribIFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset)
  8499. {
  8500. UNUSED_PARAMETER(attribindex);
  8501. UNUSED_PARAMETER(size);
  8502. UNUSED_PARAMETER(type);
  8503. UNUSED_PARAMETER(relativeoffset);
  8504. Warning( "glVertexAttribIFormat", " not available." );
  8505. }
  8506. static void REGAL_CALL glVertexAttribLFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset)
  8507. {
  8508. UNUSED_PARAMETER(attribindex);
  8509. UNUSED_PARAMETER(size);
  8510. UNUSED_PARAMETER(type);
  8511. UNUSED_PARAMETER(relativeoffset);
  8512. Warning( "glVertexAttribLFormat", " not available." );
  8513. }
  8514. static void REGAL_CALL glVertexBindingDivisor(GLuint bindingindex, GLuint divisor)
  8515. {
  8516. UNUSED_PARAMETER(bindingindex);
  8517. UNUSED_PARAMETER(divisor);
  8518. Warning( "glVertexBindingDivisor", " not available." );
  8519. }
  8520. // GL_ARB_vertex_blend
  8521. static void REGAL_CALL glVertexBlendARB(GLint count)
  8522. {
  8523. UNUSED_PARAMETER(count);
  8524. Warning( "glVertexBlendARB", " not available." );
  8525. }
  8526. static void REGAL_CALL glWeightPointerARB(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  8527. {
  8528. UNUSED_PARAMETER(size);
  8529. UNUSED_PARAMETER(type);
  8530. UNUSED_PARAMETER(stride);
  8531. UNUSED_PARAMETER(pointer);
  8532. Warning( "glWeightPointerARB", " not available." );
  8533. }
  8534. static void REGAL_CALL glWeightbvARB(GLint size, const GLbyte *weights)
  8535. {
  8536. UNUSED_PARAMETER(size);
  8537. UNUSED_PARAMETER(weights);
  8538. Warning( "glWeightbvARB", " not available." );
  8539. }
  8540. static void REGAL_CALL glWeightdvARB(GLint size, const GLdouble *weights)
  8541. {
  8542. UNUSED_PARAMETER(size);
  8543. UNUSED_PARAMETER(weights);
  8544. Warning( "glWeightdvARB", " not available." );
  8545. }
  8546. static void REGAL_CALL glWeightfvARB(GLint size, const GLfloat *weights)
  8547. {
  8548. UNUSED_PARAMETER(size);
  8549. UNUSED_PARAMETER(weights);
  8550. Warning( "glWeightfvARB", " not available." );
  8551. }
  8552. static void REGAL_CALL glWeightivARB(GLint size, const GLint *weights)
  8553. {
  8554. UNUSED_PARAMETER(size);
  8555. UNUSED_PARAMETER(weights);
  8556. Warning( "glWeightivARB", " not available." );
  8557. }
  8558. static void REGAL_CALL glWeightsvARB(GLint size, const GLshort *weights)
  8559. {
  8560. UNUSED_PARAMETER(size);
  8561. UNUSED_PARAMETER(weights);
  8562. Warning( "glWeightsvARB", " not available." );
  8563. }
  8564. static void REGAL_CALL glWeightubvARB(GLint size, const GLubyte *weights)
  8565. {
  8566. UNUSED_PARAMETER(size);
  8567. UNUSED_PARAMETER(weights);
  8568. Warning( "glWeightubvARB", " not available." );
  8569. }
  8570. static void REGAL_CALL glWeightuivARB(GLint size, const GLuint *weights)
  8571. {
  8572. UNUSED_PARAMETER(size);
  8573. UNUSED_PARAMETER(weights);
  8574. Warning( "glWeightuivARB", " not available." );
  8575. }
  8576. static void REGAL_CALL glWeightusvARB(GLint size, const GLushort *weights)
  8577. {
  8578. UNUSED_PARAMETER(size);
  8579. UNUSED_PARAMETER(weights);
  8580. Warning( "glWeightusvARB", " not available." );
  8581. }
  8582. // GL_ARB_vertex_buffer_object
  8583. static void REGAL_CALL glBindBufferARB(GLenum target, GLuint buffer)
  8584. {
  8585. UNUSED_PARAMETER(target);
  8586. UNUSED_PARAMETER(buffer);
  8587. Warning( "glBindBufferARB", " not available." );
  8588. }
  8589. static void REGAL_CALL glBufferDataARB(GLenum target, GLsizeiptrARB size, const GLvoid *data, GLenum usage)
  8590. {
  8591. UNUSED_PARAMETER(target);
  8592. UNUSED_PARAMETER(size);
  8593. UNUSED_PARAMETER(data);
  8594. UNUSED_PARAMETER(usage);
  8595. Warning( "glBufferDataARB", " not available." );
  8596. }
  8597. static void REGAL_CALL glBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data)
  8598. {
  8599. UNUSED_PARAMETER(target);
  8600. UNUSED_PARAMETER(offset);
  8601. UNUSED_PARAMETER(size);
  8602. UNUSED_PARAMETER(data);
  8603. Warning( "glBufferSubDataARB", " not available." );
  8604. }
  8605. static void REGAL_CALL glDeleteBuffersARB(GLsizei n, const GLuint *buffers)
  8606. {
  8607. UNUSED_PARAMETER(n);
  8608. UNUSED_PARAMETER(buffers);
  8609. Warning( "glDeleteBuffersARB", " not available." );
  8610. }
  8611. static void REGAL_CALL glGenBuffersARB(GLsizei n, GLuint *buffers)
  8612. {
  8613. UNUSED_PARAMETER(n);
  8614. UNUSED_PARAMETER(buffers);
  8615. Warning( "glGenBuffersARB", " not available." );
  8616. }
  8617. static void REGAL_CALL glGetBufferParameterivARB(GLenum target, GLenum pname, GLint *params)
  8618. {
  8619. UNUSED_PARAMETER(target);
  8620. UNUSED_PARAMETER(pname);
  8621. UNUSED_PARAMETER(params);
  8622. Warning( "glGetBufferParameterivARB", " not available." );
  8623. }
  8624. static void REGAL_CALL glGetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params)
  8625. {
  8626. UNUSED_PARAMETER(target);
  8627. UNUSED_PARAMETER(pname);
  8628. UNUSED_PARAMETER(params);
  8629. Warning( "glGetBufferPointervARB", " not available." );
  8630. }
  8631. static void REGAL_CALL glGetBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid *data)
  8632. {
  8633. UNUSED_PARAMETER(target);
  8634. UNUSED_PARAMETER(offset);
  8635. UNUSED_PARAMETER(size);
  8636. UNUSED_PARAMETER(data);
  8637. Warning( "glGetBufferSubDataARB", " not available." );
  8638. }
  8639. static GLboolean REGAL_CALL glIsBufferARB(GLuint buffer)
  8640. {
  8641. UNUSED_PARAMETER(buffer);
  8642. Warning( "glIsBufferARB", " not available." );
  8643. return GL_FALSE;
  8644. }
  8645. static GLvoid *REGAL_CALL glMapBufferARB(GLenum target, GLenum access)
  8646. {
  8647. UNUSED_PARAMETER(target);
  8648. UNUSED_PARAMETER(access);
  8649. Warning( "glMapBufferARB", " not available." );
  8650. return NULL;
  8651. }
  8652. static GLboolean REGAL_CALL glUnmapBufferARB(GLenum target)
  8653. {
  8654. UNUSED_PARAMETER(target);
  8655. Warning( "glUnmapBufferARB", " not available." );
  8656. return GL_FALSE;
  8657. }
  8658. // GL_ARB_vertex_program
  8659. static void REGAL_CALL glBindProgramARB(GLenum target, GLuint program)
  8660. {
  8661. UNUSED_PARAMETER(target);
  8662. UNUSED_PARAMETER(program);
  8663. Warning( "glBindProgramARB", " not available." );
  8664. }
  8665. static void REGAL_CALL glDeleteProgramsARB(GLsizei n, const GLuint *programs)
  8666. {
  8667. UNUSED_PARAMETER(n);
  8668. UNUSED_PARAMETER(programs);
  8669. Warning( "glDeleteProgramsARB", " not available." );
  8670. }
  8671. static void REGAL_CALL glDisableVertexAttribArrayARB(GLuint index)
  8672. {
  8673. UNUSED_PARAMETER(index);
  8674. Warning( "glDisableVertexAttribArrayARB", " not available." );
  8675. }
  8676. static void REGAL_CALL glEnableVertexAttribArrayARB(GLuint index)
  8677. {
  8678. UNUSED_PARAMETER(index);
  8679. Warning( "glEnableVertexAttribArrayARB", " not available." );
  8680. }
  8681. static void REGAL_CALL glGenProgramsARB(GLsizei n, GLuint *programs)
  8682. {
  8683. UNUSED_PARAMETER(n);
  8684. UNUSED_PARAMETER(programs);
  8685. Warning( "glGenProgramsARB", " not available." );
  8686. }
  8687. static void REGAL_CALL glGetProgramEnvParameterdvARB(GLenum target, GLuint index, GLdouble *params)
  8688. {
  8689. UNUSED_PARAMETER(target);
  8690. UNUSED_PARAMETER(index);
  8691. UNUSED_PARAMETER(params);
  8692. Warning( "glGetProgramEnvParameterdvARB", " not available." );
  8693. }
  8694. static void REGAL_CALL glGetProgramEnvParameterfvARB(GLenum target, GLuint index, GLfloat *params)
  8695. {
  8696. UNUSED_PARAMETER(target);
  8697. UNUSED_PARAMETER(index);
  8698. UNUSED_PARAMETER(params);
  8699. Warning( "glGetProgramEnvParameterfvARB", " not available." );
  8700. }
  8701. static void REGAL_CALL glGetProgramLocalParameterdvARB(GLenum target, GLuint index, GLdouble *params)
  8702. {
  8703. UNUSED_PARAMETER(target);
  8704. UNUSED_PARAMETER(index);
  8705. UNUSED_PARAMETER(params);
  8706. Warning( "glGetProgramLocalParameterdvARB", " not available." );
  8707. }
  8708. static void REGAL_CALL glGetProgramLocalParameterfvARB(GLenum target, GLuint index, GLfloat *params)
  8709. {
  8710. UNUSED_PARAMETER(target);
  8711. UNUSED_PARAMETER(index);
  8712. UNUSED_PARAMETER(params);
  8713. Warning( "glGetProgramLocalParameterfvARB", " not available." );
  8714. }
  8715. static void REGAL_CALL glGetProgramStringARB(GLenum target, GLenum pname, GLvoid *string)
  8716. {
  8717. UNUSED_PARAMETER(target);
  8718. UNUSED_PARAMETER(pname);
  8719. UNUSED_PARAMETER(string);
  8720. Warning( "glGetProgramStringARB", " not available." );
  8721. }
  8722. static void REGAL_CALL glGetProgramivARB(GLenum target, GLenum pname, GLint *params)
  8723. {
  8724. UNUSED_PARAMETER(target);
  8725. UNUSED_PARAMETER(pname);
  8726. UNUSED_PARAMETER(params);
  8727. Warning( "glGetProgramivARB", " not available." );
  8728. }
  8729. static void REGAL_CALL glGetVertexAttribPointervARB(GLuint index, GLenum pname, GLvoid **pointer)
  8730. {
  8731. UNUSED_PARAMETER(index);
  8732. UNUSED_PARAMETER(pname);
  8733. UNUSED_PARAMETER(pointer);
  8734. Warning( "glGetVertexAttribPointervARB", " not available." );
  8735. }
  8736. static void REGAL_CALL glGetVertexAttribdvARB(GLuint index, GLenum pname, GLdouble *params)
  8737. {
  8738. UNUSED_PARAMETER(index);
  8739. UNUSED_PARAMETER(pname);
  8740. UNUSED_PARAMETER(params);
  8741. Warning( "glGetVertexAttribdvARB", " not available." );
  8742. }
  8743. static void REGAL_CALL glGetVertexAttribfvARB(GLuint index, GLenum pname, GLfloat *params)
  8744. {
  8745. UNUSED_PARAMETER(index);
  8746. UNUSED_PARAMETER(pname);
  8747. UNUSED_PARAMETER(params);
  8748. Warning( "glGetVertexAttribfvARB", " not available." );
  8749. }
  8750. static void REGAL_CALL glGetVertexAttribivARB(GLuint index, GLenum pname, GLint *params)
  8751. {
  8752. UNUSED_PARAMETER(index);
  8753. UNUSED_PARAMETER(pname);
  8754. UNUSED_PARAMETER(params);
  8755. Warning( "glGetVertexAttribivARB", " not available." );
  8756. }
  8757. static GLboolean REGAL_CALL glIsProgramARB(GLuint program)
  8758. {
  8759. UNUSED_PARAMETER(program);
  8760. Warning( "glIsProgramARB", " not available." );
  8761. return GL_FALSE;
  8762. }
  8763. static void REGAL_CALL glProgramEnvParameter4dARB(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  8764. {
  8765. UNUSED_PARAMETER(target);
  8766. UNUSED_PARAMETER(index);
  8767. UNUSED_PARAMETER(x);
  8768. UNUSED_PARAMETER(y);
  8769. UNUSED_PARAMETER(z);
  8770. UNUSED_PARAMETER(w);
  8771. Warning( "glProgramEnvParameter4dARB", " not available." );
  8772. }
  8773. static void REGAL_CALL glProgramEnvParameter4dvARB(GLenum target, GLuint index, const GLdouble *params)
  8774. {
  8775. UNUSED_PARAMETER(target);
  8776. UNUSED_PARAMETER(index);
  8777. UNUSED_PARAMETER(params);
  8778. Warning( "glProgramEnvParameter4dvARB", " not available." );
  8779. }
  8780. static void REGAL_CALL glProgramEnvParameter4fARB(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  8781. {
  8782. UNUSED_PARAMETER(target);
  8783. UNUSED_PARAMETER(index);
  8784. UNUSED_PARAMETER(x);
  8785. UNUSED_PARAMETER(y);
  8786. UNUSED_PARAMETER(z);
  8787. UNUSED_PARAMETER(w);
  8788. Warning( "glProgramEnvParameter4fARB", " not available." );
  8789. }
  8790. static void REGAL_CALL glProgramEnvParameter4fvARB(GLenum target, GLuint index, const GLfloat *params)
  8791. {
  8792. UNUSED_PARAMETER(target);
  8793. UNUSED_PARAMETER(index);
  8794. UNUSED_PARAMETER(params);
  8795. Warning( "glProgramEnvParameter4fvARB", " not available." );
  8796. }
  8797. static void REGAL_CALL glProgramLocalParameter4dARB(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  8798. {
  8799. UNUSED_PARAMETER(target);
  8800. UNUSED_PARAMETER(index);
  8801. UNUSED_PARAMETER(x);
  8802. UNUSED_PARAMETER(y);
  8803. UNUSED_PARAMETER(z);
  8804. UNUSED_PARAMETER(w);
  8805. Warning( "glProgramLocalParameter4dARB", " not available." );
  8806. }
  8807. static void REGAL_CALL glProgramLocalParameter4dvARB(GLenum target, GLuint index, const GLdouble *params)
  8808. {
  8809. UNUSED_PARAMETER(target);
  8810. UNUSED_PARAMETER(index);
  8811. UNUSED_PARAMETER(params);
  8812. Warning( "glProgramLocalParameter4dvARB", " not available." );
  8813. }
  8814. static void REGAL_CALL glProgramLocalParameter4fARB(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  8815. {
  8816. UNUSED_PARAMETER(target);
  8817. UNUSED_PARAMETER(index);
  8818. UNUSED_PARAMETER(x);
  8819. UNUSED_PARAMETER(y);
  8820. UNUSED_PARAMETER(z);
  8821. UNUSED_PARAMETER(w);
  8822. Warning( "glProgramLocalParameter4fARB", " not available." );
  8823. }
  8824. static void REGAL_CALL glProgramLocalParameter4fvARB(GLenum target, GLuint index, const GLfloat *params)
  8825. {
  8826. UNUSED_PARAMETER(target);
  8827. UNUSED_PARAMETER(index);
  8828. UNUSED_PARAMETER(params);
  8829. Warning( "glProgramLocalParameter4fvARB", " not available." );
  8830. }
  8831. static void REGAL_CALL glProgramStringARB(GLenum target, GLenum format, GLsizei len, const GLvoid *string)
  8832. {
  8833. UNUSED_PARAMETER(target);
  8834. UNUSED_PARAMETER(format);
  8835. UNUSED_PARAMETER(len);
  8836. UNUSED_PARAMETER(string);
  8837. Warning( "glProgramStringARB", " not available." );
  8838. }
  8839. static void REGAL_CALL glVertexAttrib1dARB(GLuint index, GLdouble x)
  8840. {
  8841. UNUSED_PARAMETER(index);
  8842. UNUSED_PARAMETER(x);
  8843. Warning( "glVertexAttrib1dARB", " not available." );
  8844. }
  8845. static void REGAL_CALL glVertexAttrib1dvARB(GLuint index, const GLdouble *v)
  8846. {
  8847. UNUSED_PARAMETER(index);
  8848. UNUSED_PARAMETER(v);
  8849. Warning( "glVertexAttrib1dvARB", " not available." );
  8850. }
  8851. static void REGAL_CALL glVertexAttrib1fARB(GLuint index, GLfloat x)
  8852. {
  8853. UNUSED_PARAMETER(index);
  8854. UNUSED_PARAMETER(x);
  8855. Warning( "glVertexAttrib1fARB", " not available." );
  8856. }
  8857. static void REGAL_CALL glVertexAttrib1fvARB(GLuint index, const GLfloat *v)
  8858. {
  8859. UNUSED_PARAMETER(index);
  8860. UNUSED_PARAMETER(v);
  8861. Warning( "glVertexAttrib1fvARB", " not available." );
  8862. }
  8863. static void REGAL_CALL glVertexAttrib1sARB(GLuint index, GLshort x)
  8864. {
  8865. UNUSED_PARAMETER(index);
  8866. UNUSED_PARAMETER(x);
  8867. Warning( "glVertexAttrib1sARB", " not available." );
  8868. }
  8869. static void REGAL_CALL glVertexAttrib1svARB(GLuint index, const GLshort *v)
  8870. {
  8871. UNUSED_PARAMETER(index);
  8872. UNUSED_PARAMETER(v);
  8873. Warning( "glVertexAttrib1svARB", " not available." );
  8874. }
  8875. static void REGAL_CALL glVertexAttrib2dARB(GLuint index, GLdouble x, GLdouble y)
  8876. {
  8877. UNUSED_PARAMETER(index);
  8878. UNUSED_PARAMETER(x);
  8879. UNUSED_PARAMETER(y);
  8880. Warning( "glVertexAttrib2dARB", " not available." );
  8881. }
  8882. static void REGAL_CALL glVertexAttrib2dvARB(GLuint index, const GLdouble *v)
  8883. {
  8884. UNUSED_PARAMETER(index);
  8885. UNUSED_PARAMETER(v);
  8886. Warning( "glVertexAttrib2dvARB", " not available." );
  8887. }
  8888. static void REGAL_CALL glVertexAttrib2fARB(GLuint index, GLfloat x, GLfloat y)
  8889. {
  8890. UNUSED_PARAMETER(index);
  8891. UNUSED_PARAMETER(x);
  8892. UNUSED_PARAMETER(y);
  8893. Warning( "glVertexAttrib2fARB", " not available." );
  8894. }
  8895. static void REGAL_CALL glVertexAttrib2fvARB(GLuint index, const GLfloat *v)
  8896. {
  8897. UNUSED_PARAMETER(index);
  8898. UNUSED_PARAMETER(v);
  8899. Warning( "glVertexAttrib2fvARB", " not available." );
  8900. }
  8901. static void REGAL_CALL glVertexAttrib2sARB(GLuint index, GLshort x, GLshort y)
  8902. {
  8903. UNUSED_PARAMETER(index);
  8904. UNUSED_PARAMETER(x);
  8905. UNUSED_PARAMETER(y);
  8906. Warning( "glVertexAttrib2sARB", " not available." );
  8907. }
  8908. static void REGAL_CALL glVertexAttrib2svARB(GLuint index, const GLshort *v)
  8909. {
  8910. UNUSED_PARAMETER(index);
  8911. UNUSED_PARAMETER(v);
  8912. Warning( "glVertexAttrib2svARB", " not available." );
  8913. }
  8914. static void REGAL_CALL glVertexAttrib3dARB(GLuint index, GLdouble x, GLdouble y, GLdouble z)
  8915. {
  8916. UNUSED_PARAMETER(index);
  8917. UNUSED_PARAMETER(x);
  8918. UNUSED_PARAMETER(y);
  8919. UNUSED_PARAMETER(z);
  8920. Warning( "glVertexAttrib3dARB", " not available." );
  8921. }
  8922. static void REGAL_CALL glVertexAttrib3dvARB(GLuint index, const GLdouble *v)
  8923. {
  8924. UNUSED_PARAMETER(index);
  8925. UNUSED_PARAMETER(v);
  8926. Warning( "glVertexAttrib3dvARB", " not available." );
  8927. }
  8928. static void REGAL_CALL glVertexAttrib3fARB(GLuint index, GLfloat x, GLfloat y, GLfloat z)
  8929. {
  8930. UNUSED_PARAMETER(index);
  8931. UNUSED_PARAMETER(x);
  8932. UNUSED_PARAMETER(y);
  8933. UNUSED_PARAMETER(z);
  8934. Warning( "glVertexAttrib3fARB", " not available." );
  8935. }
  8936. static void REGAL_CALL glVertexAttrib3fvARB(GLuint index, const GLfloat *v)
  8937. {
  8938. UNUSED_PARAMETER(index);
  8939. UNUSED_PARAMETER(v);
  8940. Warning( "glVertexAttrib3fvARB", " not available." );
  8941. }
  8942. static void REGAL_CALL glVertexAttrib3sARB(GLuint index, GLshort x, GLshort y, GLshort z)
  8943. {
  8944. UNUSED_PARAMETER(index);
  8945. UNUSED_PARAMETER(x);
  8946. UNUSED_PARAMETER(y);
  8947. UNUSED_PARAMETER(z);
  8948. Warning( "glVertexAttrib3sARB", " not available." );
  8949. }
  8950. static void REGAL_CALL glVertexAttrib3svARB(GLuint index, const GLshort *v)
  8951. {
  8952. UNUSED_PARAMETER(index);
  8953. UNUSED_PARAMETER(v);
  8954. Warning( "glVertexAttrib3svARB", " not available." );
  8955. }
  8956. static void REGAL_CALL glVertexAttrib4NbvARB(GLuint index, const GLbyte *v)
  8957. {
  8958. UNUSED_PARAMETER(index);
  8959. UNUSED_PARAMETER(v);
  8960. Warning( "glVertexAttrib4NbvARB", " not available." );
  8961. }
  8962. static void REGAL_CALL glVertexAttrib4NivARB(GLuint index, const GLint *v)
  8963. {
  8964. UNUSED_PARAMETER(index);
  8965. UNUSED_PARAMETER(v);
  8966. Warning( "glVertexAttrib4NivARB", " not available." );
  8967. }
  8968. static void REGAL_CALL glVertexAttrib4NsvARB(GLuint index, const GLshort *v)
  8969. {
  8970. UNUSED_PARAMETER(index);
  8971. UNUSED_PARAMETER(v);
  8972. Warning( "glVertexAttrib4NsvARB", " not available." );
  8973. }
  8974. static void REGAL_CALL glVertexAttrib4NubARB(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w)
  8975. {
  8976. UNUSED_PARAMETER(index);
  8977. UNUSED_PARAMETER(x);
  8978. UNUSED_PARAMETER(y);
  8979. UNUSED_PARAMETER(z);
  8980. UNUSED_PARAMETER(w);
  8981. Warning( "glVertexAttrib4NubARB", " not available." );
  8982. }
  8983. static void REGAL_CALL glVertexAttrib4NubvARB(GLuint index, const GLubyte *v)
  8984. {
  8985. UNUSED_PARAMETER(index);
  8986. UNUSED_PARAMETER(v);
  8987. Warning( "glVertexAttrib4NubvARB", " not available." );
  8988. }
  8989. static void REGAL_CALL glVertexAttrib4NuivARB(GLuint index, const GLuint *v)
  8990. {
  8991. UNUSED_PARAMETER(index);
  8992. UNUSED_PARAMETER(v);
  8993. Warning( "glVertexAttrib4NuivARB", " not available." );
  8994. }
  8995. static void REGAL_CALL glVertexAttrib4NusvARB(GLuint index, const GLushort *v)
  8996. {
  8997. UNUSED_PARAMETER(index);
  8998. UNUSED_PARAMETER(v);
  8999. Warning( "glVertexAttrib4NusvARB", " not available." );
  9000. }
  9001. static void REGAL_CALL glVertexAttrib4bvARB(GLuint index, const GLbyte *v)
  9002. {
  9003. UNUSED_PARAMETER(index);
  9004. UNUSED_PARAMETER(v);
  9005. Warning( "glVertexAttrib4bvARB", " not available." );
  9006. }
  9007. static void REGAL_CALL glVertexAttrib4dARB(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  9008. {
  9009. UNUSED_PARAMETER(index);
  9010. UNUSED_PARAMETER(x);
  9011. UNUSED_PARAMETER(y);
  9012. UNUSED_PARAMETER(z);
  9013. UNUSED_PARAMETER(w);
  9014. Warning( "glVertexAttrib4dARB", " not available." );
  9015. }
  9016. static void REGAL_CALL glVertexAttrib4dvARB(GLuint index, const GLdouble *v)
  9017. {
  9018. UNUSED_PARAMETER(index);
  9019. UNUSED_PARAMETER(v);
  9020. Warning( "glVertexAttrib4dvARB", " not available." );
  9021. }
  9022. static void REGAL_CALL glVertexAttrib4fARB(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  9023. {
  9024. UNUSED_PARAMETER(index);
  9025. UNUSED_PARAMETER(x);
  9026. UNUSED_PARAMETER(y);
  9027. UNUSED_PARAMETER(z);
  9028. UNUSED_PARAMETER(w);
  9029. Warning( "glVertexAttrib4fARB", " not available." );
  9030. }
  9031. static void REGAL_CALL glVertexAttrib4fvARB(GLuint index, const GLfloat *v)
  9032. {
  9033. UNUSED_PARAMETER(index);
  9034. UNUSED_PARAMETER(v);
  9035. Warning( "glVertexAttrib4fvARB", " not available." );
  9036. }
  9037. static void REGAL_CALL glVertexAttrib4ivARB(GLuint index, const GLint *v)
  9038. {
  9039. UNUSED_PARAMETER(index);
  9040. UNUSED_PARAMETER(v);
  9041. Warning( "glVertexAttrib4ivARB", " not available." );
  9042. }
  9043. static void REGAL_CALL glVertexAttrib4sARB(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w)
  9044. {
  9045. UNUSED_PARAMETER(index);
  9046. UNUSED_PARAMETER(x);
  9047. UNUSED_PARAMETER(y);
  9048. UNUSED_PARAMETER(z);
  9049. UNUSED_PARAMETER(w);
  9050. Warning( "glVertexAttrib4sARB", " not available." );
  9051. }
  9052. static void REGAL_CALL glVertexAttrib4svARB(GLuint index, const GLshort *v)
  9053. {
  9054. UNUSED_PARAMETER(index);
  9055. UNUSED_PARAMETER(v);
  9056. Warning( "glVertexAttrib4svARB", " not available." );
  9057. }
  9058. static void REGAL_CALL glVertexAttrib4ubvARB(GLuint index, const GLubyte *v)
  9059. {
  9060. UNUSED_PARAMETER(index);
  9061. UNUSED_PARAMETER(v);
  9062. Warning( "glVertexAttrib4ubvARB", " not available." );
  9063. }
  9064. static void REGAL_CALL glVertexAttrib4uivARB(GLuint index, const GLuint *v)
  9065. {
  9066. UNUSED_PARAMETER(index);
  9067. UNUSED_PARAMETER(v);
  9068. Warning( "glVertexAttrib4uivARB", " not available." );
  9069. }
  9070. static void REGAL_CALL glVertexAttrib4usvARB(GLuint index, const GLushort *v)
  9071. {
  9072. UNUSED_PARAMETER(index);
  9073. UNUSED_PARAMETER(v);
  9074. Warning( "glVertexAttrib4usvARB", " not available." );
  9075. }
  9076. static void REGAL_CALL glVertexAttribPointerARB(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer)
  9077. {
  9078. UNUSED_PARAMETER(index);
  9079. UNUSED_PARAMETER(size);
  9080. UNUSED_PARAMETER(type);
  9081. UNUSED_PARAMETER(normalized);
  9082. UNUSED_PARAMETER(stride);
  9083. UNUSED_PARAMETER(pointer);
  9084. Warning( "glVertexAttribPointerARB", " not available." );
  9085. }
  9086. // GL_ARB_vertex_shader
  9087. static void REGAL_CALL glBindAttribLocationARB(GLhandleARB programObj, GLuint index, const GLcharARB *name)
  9088. {
  9089. UNUSED_PARAMETER(programObj);
  9090. UNUSED_PARAMETER(index);
  9091. UNUSED_PARAMETER(name);
  9092. Warning( "glBindAttribLocationARB", " not available." );
  9093. }
  9094. static void REGAL_CALL glGetActiveAttribARB(GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name)
  9095. {
  9096. UNUSED_PARAMETER(programObj);
  9097. UNUSED_PARAMETER(index);
  9098. UNUSED_PARAMETER(maxLength);
  9099. UNUSED_PARAMETER(length);
  9100. UNUSED_PARAMETER(size);
  9101. UNUSED_PARAMETER(type);
  9102. UNUSED_PARAMETER(name);
  9103. Warning( "glGetActiveAttribARB", " not available." );
  9104. }
  9105. static GLint REGAL_CALL glGetAttribLocationARB(GLhandleARB programObj, const GLcharARB *name)
  9106. {
  9107. UNUSED_PARAMETER(programObj);
  9108. UNUSED_PARAMETER(name);
  9109. Warning( "glGetAttribLocationARB", " not available." );
  9110. return 0;
  9111. }
  9112. // GL_ARB_vertex_type_2_10_10_10_rev
  9113. static void REGAL_CALL glColorP3ui(GLenum type, GLuint color)
  9114. {
  9115. UNUSED_PARAMETER(type);
  9116. UNUSED_PARAMETER(color);
  9117. Warning( "glColorP3ui", " not available." );
  9118. }
  9119. static void REGAL_CALL glColorP3uiv(GLenum type, const GLuint *color)
  9120. {
  9121. UNUSED_PARAMETER(type);
  9122. UNUSED_PARAMETER(color);
  9123. Warning( "glColorP3uiv", " not available." );
  9124. }
  9125. static void REGAL_CALL glColorP4ui(GLenum type, GLuint color)
  9126. {
  9127. UNUSED_PARAMETER(type);
  9128. UNUSED_PARAMETER(color);
  9129. Warning( "glColorP4ui", " not available." );
  9130. }
  9131. static void REGAL_CALL glColorP4uiv(GLenum type, const GLuint *color)
  9132. {
  9133. UNUSED_PARAMETER(type);
  9134. UNUSED_PARAMETER(color);
  9135. Warning( "glColorP4uiv", " not available." );
  9136. }
  9137. static void REGAL_CALL glMultiTexCoordP1ui(GLenum texture, GLenum type, GLuint coords)
  9138. {
  9139. UNUSED_PARAMETER(texture);
  9140. UNUSED_PARAMETER(type);
  9141. UNUSED_PARAMETER(coords);
  9142. Warning( "glMultiTexCoordP1ui", " not available." );
  9143. }
  9144. static void REGAL_CALL glMultiTexCoordP1uiv(GLenum texture, GLenum type, const GLuint *coords)
  9145. {
  9146. UNUSED_PARAMETER(texture);
  9147. UNUSED_PARAMETER(type);
  9148. UNUSED_PARAMETER(coords);
  9149. Warning( "glMultiTexCoordP1uiv", " not available." );
  9150. }
  9151. static void REGAL_CALL glMultiTexCoordP2ui(GLenum texture, GLenum type, GLuint coords)
  9152. {
  9153. UNUSED_PARAMETER(texture);
  9154. UNUSED_PARAMETER(type);
  9155. UNUSED_PARAMETER(coords);
  9156. Warning( "glMultiTexCoordP2ui", " not available." );
  9157. }
  9158. static void REGAL_CALL glMultiTexCoordP2uiv(GLenum texture, GLenum type, const GLuint *coords)
  9159. {
  9160. UNUSED_PARAMETER(texture);
  9161. UNUSED_PARAMETER(type);
  9162. UNUSED_PARAMETER(coords);
  9163. Warning( "glMultiTexCoordP2uiv", " not available." );
  9164. }
  9165. static void REGAL_CALL glMultiTexCoordP3ui(GLenum texture, GLenum type, GLuint coords)
  9166. {
  9167. UNUSED_PARAMETER(texture);
  9168. UNUSED_PARAMETER(type);
  9169. UNUSED_PARAMETER(coords);
  9170. Warning( "glMultiTexCoordP3ui", " not available." );
  9171. }
  9172. static void REGAL_CALL glMultiTexCoordP3uiv(GLenum texture, GLenum type, const GLuint *coords)
  9173. {
  9174. UNUSED_PARAMETER(texture);
  9175. UNUSED_PARAMETER(type);
  9176. UNUSED_PARAMETER(coords);
  9177. Warning( "glMultiTexCoordP3uiv", " not available." );
  9178. }
  9179. static void REGAL_CALL glMultiTexCoordP4ui(GLenum texture, GLenum type, GLuint coords)
  9180. {
  9181. UNUSED_PARAMETER(texture);
  9182. UNUSED_PARAMETER(type);
  9183. UNUSED_PARAMETER(coords);
  9184. Warning( "glMultiTexCoordP4ui", " not available." );
  9185. }
  9186. static void REGAL_CALL glMultiTexCoordP4uiv(GLenum texture, GLenum type, const GLuint *coords)
  9187. {
  9188. UNUSED_PARAMETER(texture);
  9189. UNUSED_PARAMETER(type);
  9190. UNUSED_PARAMETER(coords);
  9191. Warning( "glMultiTexCoordP4uiv", " not available." );
  9192. }
  9193. static void REGAL_CALL glNormalP3ui(GLenum type, GLuint coords)
  9194. {
  9195. UNUSED_PARAMETER(type);
  9196. UNUSED_PARAMETER(coords);
  9197. Warning( "glNormalP3ui", " not available." );
  9198. }
  9199. static void REGAL_CALL glNormalP3uiv(GLenum type, const GLuint *coords)
  9200. {
  9201. UNUSED_PARAMETER(type);
  9202. UNUSED_PARAMETER(coords);
  9203. Warning( "glNormalP3uiv", " not available." );
  9204. }
  9205. static void REGAL_CALL glSecondaryColorP3ui(GLenum type, GLuint color)
  9206. {
  9207. UNUSED_PARAMETER(type);
  9208. UNUSED_PARAMETER(color);
  9209. Warning( "glSecondaryColorP3ui", " not available." );
  9210. }
  9211. static void REGAL_CALL glSecondaryColorP3uiv(GLenum type, const GLuint *color)
  9212. {
  9213. UNUSED_PARAMETER(type);
  9214. UNUSED_PARAMETER(color);
  9215. Warning( "glSecondaryColorP3uiv", " not available." );
  9216. }
  9217. static void REGAL_CALL glTexCoordP1ui(GLenum type, GLuint coords)
  9218. {
  9219. UNUSED_PARAMETER(type);
  9220. UNUSED_PARAMETER(coords);
  9221. Warning( "glTexCoordP1ui", " not available." );
  9222. }
  9223. static void REGAL_CALL glTexCoordP1uiv(GLenum type, const GLuint *coords)
  9224. {
  9225. UNUSED_PARAMETER(type);
  9226. UNUSED_PARAMETER(coords);
  9227. Warning( "glTexCoordP1uiv", " not available." );
  9228. }
  9229. static void REGAL_CALL glTexCoordP2ui(GLenum type, GLuint coords)
  9230. {
  9231. UNUSED_PARAMETER(type);
  9232. UNUSED_PARAMETER(coords);
  9233. Warning( "glTexCoordP2ui", " not available." );
  9234. }
  9235. static void REGAL_CALL glTexCoordP2uiv(GLenum type, const GLuint *coords)
  9236. {
  9237. UNUSED_PARAMETER(type);
  9238. UNUSED_PARAMETER(coords);
  9239. Warning( "glTexCoordP2uiv", " not available." );
  9240. }
  9241. static void REGAL_CALL glTexCoordP3ui(GLenum type, GLuint coords)
  9242. {
  9243. UNUSED_PARAMETER(type);
  9244. UNUSED_PARAMETER(coords);
  9245. Warning( "glTexCoordP3ui", " not available." );
  9246. }
  9247. static void REGAL_CALL glTexCoordP3uiv(GLenum type, const GLuint *coords)
  9248. {
  9249. UNUSED_PARAMETER(type);
  9250. UNUSED_PARAMETER(coords);
  9251. Warning( "glTexCoordP3uiv", " not available." );
  9252. }
  9253. static void REGAL_CALL glTexCoordP4ui(GLenum type, GLuint coords)
  9254. {
  9255. UNUSED_PARAMETER(type);
  9256. UNUSED_PARAMETER(coords);
  9257. Warning( "glTexCoordP4ui", " not available." );
  9258. }
  9259. static void REGAL_CALL glTexCoordP4uiv(GLenum type, const GLuint *coords)
  9260. {
  9261. UNUSED_PARAMETER(type);
  9262. UNUSED_PARAMETER(coords);
  9263. Warning( "glTexCoordP4uiv", " not available." );
  9264. }
  9265. static void REGAL_CALL glVertexAttribP1ui(GLuint index, GLenum type, GLboolean normalized, GLuint value)
  9266. {
  9267. UNUSED_PARAMETER(index);
  9268. UNUSED_PARAMETER(type);
  9269. UNUSED_PARAMETER(normalized);
  9270. UNUSED_PARAMETER(value);
  9271. Warning( "glVertexAttribP1ui", " not available." );
  9272. }
  9273. static void REGAL_CALL glVertexAttribP1uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)
  9274. {
  9275. UNUSED_PARAMETER(index);
  9276. UNUSED_PARAMETER(type);
  9277. UNUSED_PARAMETER(normalized);
  9278. UNUSED_PARAMETER(value);
  9279. Warning( "glVertexAttribP1uiv", " not available." );
  9280. }
  9281. static void REGAL_CALL glVertexAttribP2ui(GLuint index, GLenum type, GLboolean normalized, GLuint value)
  9282. {
  9283. UNUSED_PARAMETER(index);
  9284. UNUSED_PARAMETER(type);
  9285. UNUSED_PARAMETER(normalized);
  9286. UNUSED_PARAMETER(value);
  9287. Warning( "glVertexAttribP2ui", " not available." );
  9288. }
  9289. static void REGAL_CALL glVertexAttribP2uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)
  9290. {
  9291. UNUSED_PARAMETER(index);
  9292. UNUSED_PARAMETER(type);
  9293. UNUSED_PARAMETER(normalized);
  9294. UNUSED_PARAMETER(value);
  9295. Warning( "glVertexAttribP2uiv", " not available." );
  9296. }
  9297. static void REGAL_CALL glVertexAttribP3ui(GLuint index, GLenum type, GLboolean normalized, GLuint value)
  9298. {
  9299. UNUSED_PARAMETER(index);
  9300. UNUSED_PARAMETER(type);
  9301. UNUSED_PARAMETER(normalized);
  9302. UNUSED_PARAMETER(value);
  9303. Warning( "glVertexAttribP3ui", " not available." );
  9304. }
  9305. static void REGAL_CALL glVertexAttribP3uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)
  9306. {
  9307. UNUSED_PARAMETER(index);
  9308. UNUSED_PARAMETER(type);
  9309. UNUSED_PARAMETER(normalized);
  9310. UNUSED_PARAMETER(value);
  9311. Warning( "glVertexAttribP3uiv", " not available." );
  9312. }
  9313. static void REGAL_CALL glVertexAttribP4ui(GLuint index, GLenum type, GLboolean normalized, GLuint value)
  9314. {
  9315. UNUSED_PARAMETER(index);
  9316. UNUSED_PARAMETER(type);
  9317. UNUSED_PARAMETER(normalized);
  9318. UNUSED_PARAMETER(value);
  9319. Warning( "glVertexAttribP4ui", " not available." );
  9320. }
  9321. static void REGAL_CALL glVertexAttribP4uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)
  9322. {
  9323. UNUSED_PARAMETER(index);
  9324. UNUSED_PARAMETER(type);
  9325. UNUSED_PARAMETER(normalized);
  9326. UNUSED_PARAMETER(value);
  9327. Warning( "glVertexAttribP4uiv", " not available." );
  9328. }
  9329. static void REGAL_CALL glVertexP2ui(GLenum type, GLuint coords)
  9330. {
  9331. UNUSED_PARAMETER(type);
  9332. UNUSED_PARAMETER(coords);
  9333. Warning( "glVertexP2ui", " not available." );
  9334. }
  9335. static void REGAL_CALL glVertexP2uiv(GLenum type, const GLuint *coords)
  9336. {
  9337. UNUSED_PARAMETER(type);
  9338. UNUSED_PARAMETER(coords);
  9339. Warning( "glVertexP2uiv", " not available." );
  9340. }
  9341. static void REGAL_CALL glVertexP3ui(GLenum type, GLuint coords)
  9342. {
  9343. UNUSED_PARAMETER(type);
  9344. UNUSED_PARAMETER(coords);
  9345. Warning( "glVertexP3ui", " not available." );
  9346. }
  9347. static void REGAL_CALL glVertexP3uiv(GLenum type, const GLuint *coords)
  9348. {
  9349. UNUSED_PARAMETER(type);
  9350. UNUSED_PARAMETER(coords);
  9351. Warning( "glVertexP3uiv", " not available." );
  9352. }
  9353. static void REGAL_CALL glVertexP4ui(GLenum type, GLuint coords)
  9354. {
  9355. UNUSED_PARAMETER(type);
  9356. UNUSED_PARAMETER(coords);
  9357. Warning( "glVertexP4ui", " not available." );
  9358. }
  9359. static void REGAL_CALL glVertexP4uiv(GLenum type, const GLuint *coords)
  9360. {
  9361. UNUSED_PARAMETER(type);
  9362. UNUSED_PARAMETER(coords);
  9363. Warning( "glVertexP4uiv", " not available." );
  9364. }
  9365. // GL_ARB_viewport_array
  9366. static void REGAL_CALL glDepthRangeArrayv(GLuint first, GLsizei count, const GLclampd *v)
  9367. {
  9368. UNUSED_PARAMETER(first);
  9369. UNUSED_PARAMETER(count);
  9370. UNUSED_PARAMETER(v);
  9371. Warning( "glDepthRangeArrayv", " not available." );
  9372. }
  9373. static void REGAL_CALL glDepthRangeIndexed(GLuint index, GLclampd n, GLclampd f)
  9374. {
  9375. UNUSED_PARAMETER(index);
  9376. UNUSED_PARAMETER(n);
  9377. UNUSED_PARAMETER(f);
  9378. Warning( "glDepthRangeIndexed", " not available." );
  9379. }
  9380. static void REGAL_CALL glGetDoublei_v(GLenum target, GLuint index, GLdouble *v)
  9381. {
  9382. UNUSED_PARAMETER(target);
  9383. UNUSED_PARAMETER(index);
  9384. UNUSED_PARAMETER(v);
  9385. Warning( "glGetDoublei_v", " not available." );
  9386. }
  9387. static void REGAL_CALL glGetFloati_v(GLenum target, GLuint index, GLfloat *v)
  9388. {
  9389. UNUSED_PARAMETER(target);
  9390. UNUSED_PARAMETER(index);
  9391. UNUSED_PARAMETER(v);
  9392. Warning( "glGetFloati_v", " not available." );
  9393. }
  9394. static void REGAL_CALL glScissorArrayv(GLuint first, GLsizei count, const GLint *v)
  9395. {
  9396. UNUSED_PARAMETER(first);
  9397. UNUSED_PARAMETER(count);
  9398. UNUSED_PARAMETER(v);
  9399. Warning( "glScissorArrayv", " not available." );
  9400. }
  9401. static void REGAL_CALL glScissorIndexed(GLuint index, GLint left, GLint bottom, GLint width, GLint height)
  9402. {
  9403. UNUSED_PARAMETER(index);
  9404. UNUSED_PARAMETER(left);
  9405. UNUSED_PARAMETER(bottom);
  9406. UNUSED_PARAMETER(width);
  9407. UNUSED_PARAMETER(height);
  9408. Warning( "glScissorIndexed", " not available." );
  9409. }
  9410. static void REGAL_CALL glScissorIndexedv(GLuint index, const GLint *v)
  9411. {
  9412. UNUSED_PARAMETER(index);
  9413. UNUSED_PARAMETER(v);
  9414. Warning( "glScissorIndexedv", " not available." );
  9415. }
  9416. static void REGAL_CALL glViewportArrayv(GLuint first, GLsizei count, const GLfloat *v)
  9417. {
  9418. UNUSED_PARAMETER(first);
  9419. UNUSED_PARAMETER(count);
  9420. UNUSED_PARAMETER(v);
  9421. Warning( "glViewportArrayv", " not available." );
  9422. }
  9423. static void REGAL_CALL glViewportIndexedf(GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h)
  9424. {
  9425. UNUSED_PARAMETER(index);
  9426. UNUSED_PARAMETER(x);
  9427. UNUSED_PARAMETER(y);
  9428. UNUSED_PARAMETER(w);
  9429. UNUSED_PARAMETER(h);
  9430. Warning( "glViewportIndexedf", " not available." );
  9431. }
  9432. static void REGAL_CALL glViewportIndexedfv(GLuint index, const GLfloat *v)
  9433. {
  9434. UNUSED_PARAMETER(index);
  9435. UNUSED_PARAMETER(v);
  9436. Warning( "glViewportIndexedfv", " not available." );
  9437. }
  9438. // GL_ARB_window_pos
  9439. static void REGAL_CALL glWindowPos2dARB(GLdouble x, GLdouble y)
  9440. {
  9441. UNUSED_PARAMETER(x);
  9442. UNUSED_PARAMETER(y);
  9443. Warning( "glWindowPos2dARB", " not available." );
  9444. }
  9445. static void REGAL_CALL glWindowPos2dvARB(const GLdouble *p)
  9446. {
  9447. UNUSED_PARAMETER(p);
  9448. Warning( "glWindowPos2dvARB", " not available." );
  9449. }
  9450. static void REGAL_CALL glWindowPos2fARB(GLfloat x, GLfloat y)
  9451. {
  9452. UNUSED_PARAMETER(x);
  9453. UNUSED_PARAMETER(y);
  9454. Warning( "glWindowPos2fARB", " not available." );
  9455. }
  9456. static void REGAL_CALL glWindowPos2fvARB(const GLfloat *p)
  9457. {
  9458. UNUSED_PARAMETER(p);
  9459. Warning( "glWindowPos2fvARB", " not available." );
  9460. }
  9461. static void REGAL_CALL glWindowPos2iARB(GLint x, GLint y)
  9462. {
  9463. UNUSED_PARAMETER(x);
  9464. UNUSED_PARAMETER(y);
  9465. Warning( "glWindowPos2iARB", " not available." );
  9466. }
  9467. static void REGAL_CALL glWindowPos2ivARB(const GLint *p)
  9468. {
  9469. UNUSED_PARAMETER(p);
  9470. Warning( "glWindowPos2ivARB", " not available." );
  9471. }
  9472. static void REGAL_CALL glWindowPos2sARB(GLshort x, GLshort y)
  9473. {
  9474. UNUSED_PARAMETER(x);
  9475. UNUSED_PARAMETER(y);
  9476. Warning( "glWindowPos2sARB", " not available." );
  9477. }
  9478. static void REGAL_CALL glWindowPos2svARB(const GLshort *p)
  9479. {
  9480. UNUSED_PARAMETER(p);
  9481. Warning( "glWindowPos2svARB", " not available." );
  9482. }
  9483. static void REGAL_CALL glWindowPos3dARB(GLdouble x, GLdouble y, GLdouble z)
  9484. {
  9485. UNUSED_PARAMETER(x);
  9486. UNUSED_PARAMETER(y);
  9487. UNUSED_PARAMETER(z);
  9488. Warning( "glWindowPos3dARB", " not available." );
  9489. }
  9490. static void REGAL_CALL glWindowPos3dvARB(const GLdouble *p)
  9491. {
  9492. UNUSED_PARAMETER(p);
  9493. Warning( "glWindowPos3dvARB", " not available." );
  9494. }
  9495. static void REGAL_CALL glWindowPos3fARB(GLfloat x, GLfloat y, GLfloat z)
  9496. {
  9497. UNUSED_PARAMETER(x);
  9498. UNUSED_PARAMETER(y);
  9499. UNUSED_PARAMETER(z);
  9500. Warning( "glWindowPos3fARB", " not available." );
  9501. }
  9502. static void REGAL_CALL glWindowPos3fvARB(const GLfloat *p)
  9503. {
  9504. UNUSED_PARAMETER(p);
  9505. Warning( "glWindowPos3fvARB", " not available." );
  9506. }
  9507. static void REGAL_CALL glWindowPos3iARB(GLint x, GLint y, GLint z)
  9508. {
  9509. UNUSED_PARAMETER(x);
  9510. UNUSED_PARAMETER(y);
  9511. UNUSED_PARAMETER(z);
  9512. Warning( "glWindowPos3iARB", " not available." );
  9513. }
  9514. static void REGAL_CALL glWindowPos3ivARB(const GLint *p)
  9515. {
  9516. UNUSED_PARAMETER(p);
  9517. Warning( "glWindowPos3ivARB", " not available." );
  9518. }
  9519. static void REGAL_CALL glWindowPos3sARB(GLshort x, GLshort y, GLshort z)
  9520. {
  9521. UNUSED_PARAMETER(x);
  9522. UNUSED_PARAMETER(y);
  9523. UNUSED_PARAMETER(z);
  9524. Warning( "glWindowPos3sARB", " not available." );
  9525. }
  9526. static void REGAL_CALL glWindowPos3svARB(const GLshort *p)
  9527. {
  9528. UNUSED_PARAMETER(p);
  9529. Warning( "glWindowPos3svARB", " not available." );
  9530. }
  9531. // GL_ATI_draw_buffers
  9532. static void REGAL_CALL glDrawBuffersATI(GLsizei n, const GLenum *bufs)
  9533. {
  9534. UNUSED_PARAMETER(n);
  9535. UNUSED_PARAMETER(bufs);
  9536. Warning( "glDrawBuffersATI", " not available." );
  9537. }
  9538. // GL_ATI_element_array
  9539. static void REGAL_CALL glDrawElementArrayATI(GLenum mode, GLsizei count)
  9540. {
  9541. UNUSED_PARAMETER(mode);
  9542. UNUSED_PARAMETER(count);
  9543. Warning( "glDrawElementArrayATI", " not available." );
  9544. }
  9545. static void REGAL_CALL glDrawRangeElementArrayATI(GLenum mode, GLuint start, GLuint end, GLsizei count)
  9546. {
  9547. UNUSED_PARAMETER(mode);
  9548. UNUSED_PARAMETER(start);
  9549. UNUSED_PARAMETER(end);
  9550. UNUSED_PARAMETER(count);
  9551. Warning( "glDrawRangeElementArrayATI", " not available." );
  9552. }
  9553. static void REGAL_CALL glElementPointerATI(GLenum type, const GLvoid *pointer)
  9554. {
  9555. UNUSED_PARAMETER(type);
  9556. UNUSED_PARAMETER(pointer);
  9557. Warning( "glElementPointerATI", " not available." );
  9558. }
  9559. // GL_ATI_envmap_bumpmap
  9560. static void REGAL_CALL glGetTexBumpParameterfvATI(GLenum pname, GLfloat *param)
  9561. {
  9562. UNUSED_PARAMETER(pname);
  9563. UNUSED_PARAMETER(param);
  9564. Warning( "glGetTexBumpParameterfvATI", " not available." );
  9565. }
  9566. static void REGAL_CALL glGetTexBumpParameterivATI(GLenum pname, GLint *param)
  9567. {
  9568. UNUSED_PARAMETER(pname);
  9569. UNUSED_PARAMETER(param);
  9570. Warning( "glGetTexBumpParameterivATI", " not available." );
  9571. }
  9572. static void REGAL_CALL glTexBumpParameterfvATI(GLenum pname, const GLfloat *param)
  9573. {
  9574. UNUSED_PARAMETER(pname);
  9575. UNUSED_PARAMETER(param);
  9576. Warning( "glTexBumpParameterfvATI", " not available." );
  9577. }
  9578. static void REGAL_CALL glTexBumpParameterivATI(GLenum pname, const GLint *param)
  9579. {
  9580. UNUSED_PARAMETER(pname);
  9581. UNUSED_PARAMETER(param);
  9582. Warning( "glTexBumpParameterivATI", " not available." );
  9583. }
  9584. // GL_ATI_fragment_shader
  9585. static void REGAL_CALL glAlphaFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod)
  9586. {
  9587. UNUSED_PARAMETER(op);
  9588. UNUSED_PARAMETER(dst);
  9589. UNUSED_PARAMETER(dstMod);
  9590. UNUSED_PARAMETER(arg1);
  9591. UNUSED_PARAMETER(arg1Rep);
  9592. UNUSED_PARAMETER(arg1Mod);
  9593. Warning( "glAlphaFragmentOp1ATI", " not available." );
  9594. }
  9595. static void REGAL_CALL glAlphaFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod)
  9596. {
  9597. UNUSED_PARAMETER(op);
  9598. UNUSED_PARAMETER(dst);
  9599. UNUSED_PARAMETER(dstMod);
  9600. UNUSED_PARAMETER(arg1);
  9601. UNUSED_PARAMETER(arg1Rep);
  9602. UNUSED_PARAMETER(arg1Mod);
  9603. UNUSED_PARAMETER(arg2);
  9604. UNUSED_PARAMETER(arg2Rep);
  9605. UNUSED_PARAMETER(arg2Mod);
  9606. Warning( "glAlphaFragmentOp2ATI", " not available." );
  9607. }
  9608. static void REGAL_CALL glAlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod)
  9609. {
  9610. UNUSED_PARAMETER(op);
  9611. UNUSED_PARAMETER(dst);
  9612. UNUSED_PARAMETER(dstMod);
  9613. UNUSED_PARAMETER(arg1);
  9614. UNUSED_PARAMETER(arg1Rep);
  9615. UNUSED_PARAMETER(arg1Mod);
  9616. UNUSED_PARAMETER(arg2);
  9617. UNUSED_PARAMETER(arg2Rep);
  9618. UNUSED_PARAMETER(arg2Mod);
  9619. UNUSED_PARAMETER(arg3);
  9620. UNUSED_PARAMETER(arg3Rep);
  9621. UNUSED_PARAMETER(arg3Mod);
  9622. Warning( "glAlphaFragmentOp3ATI", " not available." );
  9623. }
  9624. static void REGAL_CALL glBeginFragmentShaderATI(void)
  9625. {
  9626. Warning( "glBeginFragmentShaderATI", " not available." );
  9627. }
  9628. static void REGAL_CALL glBindFragmentShaderATI(GLuint id)
  9629. {
  9630. UNUSED_PARAMETER(id);
  9631. Warning( "glBindFragmentShaderATI", " not available." );
  9632. }
  9633. static void REGAL_CALL glColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod)
  9634. {
  9635. UNUSED_PARAMETER(op);
  9636. UNUSED_PARAMETER(dst);
  9637. UNUSED_PARAMETER(dstMask);
  9638. UNUSED_PARAMETER(dstMod);
  9639. UNUSED_PARAMETER(arg1);
  9640. UNUSED_PARAMETER(arg1Rep);
  9641. UNUSED_PARAMETER(arg1Mod);
  9642. Warning( "glColorFragmentOp1ATI", " not available." );
  9643. }
  9644. static void REGAL_CALL glColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod)
  9645. {
  9646. UNUSED_PARAMETER(op);
  9647. UNUSED_PARAMETER(dst);
  9648. UNUSED_PARAMETER(dstMask);
  9649. UNUSED_PARAMETER(dstMod);
  9650. UNUSED_PARAMETER(arg1);
  9651. UNUSED_PARAMETER(arg1Rep);
  9652. UNUSED_PARAMETER(arg1Mod);
  9653. UNUSED_PARAMETER(arg2);
  9654. UNUSED_PARAMETER(arg2Rep);
  9655. UNUSED_PARAMETER(arg2Mod);
  9656. Warning( "glColorFragmentOp2ATI", " not available." );
  9657. }
  9658. static void REGAL_CALL glColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod)
  9659. {
  9660. UNUSED_PARAMETER(op);
  9661. UNUSED_PARAMETER(dst);
  9662. UNUSED_PARAMETER(dstMask);
  9663. UNUSED_PARAMETER(dstMod);
  9664. UNUSED_PARAMETER(arg1);
  9665. UNUSED_PARAMETER(arg1Rep);
  9666. UNUSED_PARAMETER(arg1Mod);
  9667. UNUSED_PARAMETER(arg2);
  9668. UNUSED_PARAMETER(arg2Rep);
  9669. UNUSED_PARAMETER(arg2Mod);
  9670. UNUSED_PARAMETER(arg3);
  9671. UNUSED_PARAMETER(arg3Rep);
  9672. UNUSED_PARAMETER(arg3Mod);
  9673. Warning( "glColorFragmentOp3ATI", " not available." );
  9674. }
  9675. static void REGAL_CALL glDeleteFragmentShaderATI(GLuint id)
  9676. {
  9677. UNUSED_PARAMETER(id);
  9678. Warning( "glDeleteFragmentShaderATI", " not available." );
  9679. }
  9680. static void REGAL_CALL glEndFragmentShaderATI(void)
  9681. {
  9682. Warning( "glEndFragmentShaderATI", " not available." );
  9683. }
  9684. static GLuint REGAL_CALL glGenFragmentShadersATI(GLuint range)
  9685. {
  9686. UNUSED_PARAMETER(range);
  9687. Warning( "glGenFragmentShadersATI", " not available." );
  9688. return 0;
  9689. }
  9690. static void REGAL_CALL glPassTexCoordATI(GLuint dst, GLuint coord, GLenum swizzle)
  9691. {
  9692. UNUSED_PARAMETER(dst);
  9693. UNUSED_PARAMETER(coord);
  9694. UNUSED_PARAMETER(swizzle);
  9695. Warning( "glPassTexCoordATI", " not available." );
  9696. }
  9697. static void REGAL_CALL glSampleMapATI(GLuint dst, GLuint interp, GLenum swizzle)
  9698. {
  9699. UNUSED_PARAMETER(dst);
  9700. UNUSED_PARAMETER(interp);
  9701. UNUSED_PARAMETER(swizzle);
  9702. Warning( "glSampleMapATI", " not available." );
  9703. }
  9704. static void REGAL_CALL glSetFragmentShaderConstantATI(GLuint dst, const GLfloat *value)
  9705. {
  9706. UNUSED_PARAMETER(dst);
  9707. UNUSED_PARAMETER(value);
  9708. Warning( "glSetFragmentShaderConstantATI", " not available." );
  9709. }
  9710. // GL_ATI_map_object_buffer
  9711. static GLvoid *REGAL_CALL glMapObjectBufferATI(GLuint buffer)
  9712. {
  9713. UNUSED_PARAMETER(buffer);
  9714. Warning( "glMapObjectBufferATI", " not available." );
  9715. return NULL;
  9716. }
  9717. static void REGAL_CALL glUnmapObjectBufferATI(GLuint buffer)
  9718. {
  9719. UNUSED_PARAMETER(buffer);
  9720. Warning( "glUnmapObjectBufferATI", " not available." );
  9721. }
  9722. // GL_ATI_pn_triangles
  9723. static void REGAL_CALL glPNTrianglesfATI(GLenum pname, GLfloat param)
  9724. {
  9725. UNUSED_PARAMETER(pname);
  9726. UNUSED_PARAMETER(param);
  9727. Warning( "glPNTrianglesfATI", " not available." );
  9728. }
  9729. static void REGAL_CALL glPNTrianglesiATI(GLenum pname, GLint param)
  9730. {
  9731. UNUSED_PARAMETER(pname);
  9732. UNUSED_PARAMETER(param);
  9733. Warning( "glPNTrianglesiATI", " not available." );
  9734. }
  9735. // GL_ATI_separate_stencil
  9736. static void REGAL_CALL glStencilFuncSeparateATI(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask)
  9737. {
  9738. UNUSED_PARAMETER(frontfunc);
  9739. UNUSED_PARAMETER(backfunc);
  9740. UNUSED_PARAMETER(ref);
  9741. UNUSED_PARAMETER(mask);
  9742. Warning( "glStencilFuncSeparateATI", " not available." );
  9743. }
  9744. static void REGAL_CALL glStencilOpSeparateATI(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass)
  9745. {
  9746. UNUSED_PARAMETER(face);
  9747. UNUSED_PARAMETER(sfail);
  9748. UNUSED_PARAMETER(dpfail);
  9749. UNUSED_PARAMETER(dppass);
  9750. Warning( "glStencilOpSeparateATI", " not available." );
  9751. }
  9752. // GL_ATI_vertex_array_object
  9753. static void REGAL_CALL glArrayObjectATI(GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset)
  9754. {
  9755. UNUSED_PARAMETER(array);
  9756. UNUSED_PARAMETER(size);
  9757. UNUSED_PARAMETER(type);
  9758. UNUSED_PARAMETER(stride);
  9759. UNUSED_PARAMETER(buffer);
  9760. UNUSED_PARAMETER(offset);
  9761. Warning( "glArrayObjectATI", " not available." );
  9762. }
  9763. static void REGAL_CALL glFreeObjectBufferATI(GLuint buffer)
  9764. {
  9765. UNUSED_PARAMETER(buffer);
  9766. Warning( "glFreeObjectBufferATI", " not available." );
  9767. }
  9768. static void REGAL_CALL glGetArrayObjectfvATI(GLenum array, GLenum pname, GLfloat *params)
  9769. {
  9770. UNUSED_PARAMETER(array);
  9771. UNUSED_PARAMETER(pname);
  9772. UNUSED_PARAMETER(params);
  9773. Warning( "glGetArrayObjectfvATI", " not available." );
  9774. }
  9775. static void REGAL_CALL glGetArrayObjectivATI(GLenum array, GLenum pname, GLint *params)
  9776. {
  9777. UNUSED_PARAMETER(array);
  9778. UNUSED_PARAMETER(pname);
  9779. UNUSED_PARAMETER(params);
  9780. Warning( "glGetArrayObjectivATI", " not available." );
  9781. }
  9782. static void REGAL_CALL glGetObjectBufferfvATI(GLuint buffer, GLenum pname, GLfloat *params)
  9783. {
  9784. UNUSED_PARAMETER(buffer);
  9785. UNUSED_PARAMETER(pname);
  9786. UNUSED_PARAMETER(params);
  9787. Warning( "glGetObjectBufferfvATI", " not available." );
  9788. }
  9789. static void REGAL_CALL glGetObjectBufferivATI(GLuint buffer, GLenum pname, GLint *params)
  9790. {
  9791. UNUSED_PARAMETER(buffer);
  9792. UNUSED_PARAMETER(pname);
  9793. UNUSED_PARAMETER(params);
  9794. Warning( "glGetObjectBufferivATI", " not available." );
  9795. }
  9796. static void REGAL_CALL glGetVariantArrayObjectfvATI(GLuint id, GLenum pname, GLfloat *params)
  9797. {
  9798. UNUSED_PARAMETER(id);
  9799. UNUSED_PARAMETER(pname);
  9800. UNUSED_PARAMETER(params);
  9801. Warning( "glGetVariantArrayObjectfvATI", " not available." );
  9802. }
  9803. static void REGAL_CALL glGetVariantArrayObjectivATI(GLuint id, GLenum pname, GLint *params)
  9804. {
  9805. UNUSED_PARAMETER(id);
  9806. UNUSED_PARAMETER(pname);
  9807. UNUSED_PARAMETER(params);
  9808. Warning( "glGetVariantArrayObjectivATI", " not available." );
  9809. }
  9810. static GLboolean REGAL_CALL glIsObjectBufferATI(GLuint buffer)
  9811. {
  9812. UNUSED_PARAMETER(buffer);
  9813. Warning( "glIsObjectBufferATI", " not available." );
  9814. return GL_FALSE;
  9815. }
  9816. static GLuint REGAL_CALL glNewObjectBufferATI(GLsizei size, const GLvoid *pointer, GLenum usage)
  9817. {
  9818. UNUSED_PARAMETER(size);
  9819. UNUSED_PARAMETER(pointer);
  9820. UNUSED_PARAMETER(usage);
  9821. Warning( "glNewObjectBufferATI", " not available." );
  9822. return 0;
  9823. }
  9824. static void REGAL_CALL glUpdateObjectBufferATI(GLuint buffer, GLuint offset, GLsizei size, const GLvoid *pointer, GLenum preserve)
  9825. {
  9826. UNUSED_PARAMETER(buffer);
  9827. UNUSED_PARAMETER(offset);
  9828. UNUSED_PARAMETER(size);
  9829. UNUSED_PARAMETER(pointer);
  9830. UNUSED_PARAMETER(preserve);
  9831. Warning( "glUpdateObjectBufferATI", " not available." );
  9832. }
  9833. static void REGAL_CALL glVariantArrayObjectATI(GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset)
  9834. {
  9835. UNUSED_PARAMETER(id);
  9836. UNUSED_PARAMETER(type);
  9837. UNUSED_PARAMETER(stride);
  9838. UNUSED_PARAMETER(buffer);
  9839. UNUSED_PARAMETER(offset);
  9840. Warning( "glVariantArrayObjectATI", " not available." );
  9841. }
  9842. // GL_ATI_vertex_attrib_array_object
  9843. static void REGAL_CALL glGetVertexAttribArrayObjectfvATI(GLuint index, GLenum pname, GLfloat *params)
  9844. {
  9845. UNUSED_PARAMETER(index);
  9846. UNUSED_PARAMETER(pname);
  9847. UNUSED_PARAMETER(params);
  9848. Warning( "glGetVertexAttribArrayObjectfvATI", " not available." );
  9849. }
  9850. static void REGAL_CALL glGetVertexAttribArrayObjectivATI(GLuint index, GLenum pname, GLint *params)
  9851. {
  9852. UNUSED_PARAMETER(index);
  9853. UNUSED_PARAMETER(pname);
  9854. UNUSED_PARAMETER(params);
  9855. Warning( "glGetVertexAttribArrayObjectivATI", " not available." );
  9856. }
  9857. static void REGAL_CALL glVertexAttribArrayObjectATI(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset)
  9858. {
  9859. UNUSED_PARAMETER(index);
  9860. UNUSED_PARAMETER(size);
  9861. UNUSED_PARAMETER(type);
  9862. UNUSED_PARAMETER(normalized);
  9863. UNUSED_PARAMETER(stride);
  9864. UNUSED_PARAMETER(buffer);
  9865. UNUSED_PARAMETER(offset);
  9866. Warning( "glVertexAttribArrayObjectATI", " not available." );
  9867. }
  9868. // GL_ATI_vertex_streams
  9869. static void REGAL_CALL glClientActiveVertexStreamATI(GLenum stream)
  9870. {
  9871. UNUSED_PARAMETER(stream);
  9872. Warning( "glClientActiveVertexStreamATI", " not available." );
  9873. }
  9874. static void REGAL_CALL glNormalStream3bATI(GLenum stream, GLbyte x, GLbyte y, GLbyte z)
  9875. {
  9876. UNUSED_PARAMETER(stream);
  9877. UNUSED_PARAMETER(x);
  9878. UNUSED_PARAMETER(y);
  9879. UNUSED_PARAMETER(z);
  9880. Warning( "glNormalStream3bATI", " not available." );
  9881. }
  9882. static void REGAL_CALL glNormalStream3bvATI(GLenum stream, const GLbyte *coords)
  9883. {
  9884. UNUSED_PARAMETER(stream);
  9885. UNUSED_PARAMETER(coords);
  9886. Warning( "glNormalStream3bvATI", " not available." );
  9887. }
  9888. static void REGAL_CALL glNormalStream3dATI(GLenum stream, GLdouble x, GLdouble y, GLdouble z)
  9889. {
  9890. UNUSED_PARAMETER(stream);
  9891. UNUSED_PARAMETER(x);
  9892. UNUSED_PARAMETER(y);
  9893. UNUSED_PARAMETER(z);
  9894. Warning( "glNormalStream3dATI", " not available." );
  9895. }
  9896. static void REGAL_CALL glNormalStream3dvATI(GLenum stream, const GLdouble *coords)
  9897. {
  9898. UNUSED_PARAMETER(stream);
  9899. UNUSED_PARAMETER(coords);
  9900. Warning( "glNormalStream3dvATI", " not available." );
  9901. }
  9902. static void REGAL_CALL glNormalStream3fATI(GLenum stream, GLfloat x, GLfloat y, GLfloat z)
  9903. {
  9904. UNUSED_PARAMETER(stream);
  9905. UNUSED_PARAMETER(x);
  9906. UNUSED_PARAMETER(y);
  9907. UNUSED_PARAMETER(z);
  9908. Warning( "glNormalStream3fATI", " not available." );
  9909. }
  9910. static void REGAL_CALL glNormalStream3fvATI(GLenum stream, const GLfloat *coords)
  9911. {
  9912. UNUSED_PARAMETER(stream);
  9913. UNUSED_PARAMETER(coords);
  9914. Warning( "glNormalStream3fvATI", " not available." );
  9915. }
  9916. static void REGAL_CALL glNormalStream3iATI(GLenum stream, GLint x, GLint y, GLint z)
  9917. {
  9918. UNUSED_PARAMETER(stream);
  9919. UNUSED_PARAMETER(x);
  9920. UNUSED_PARAMETER(y);
  9921. UNUSED_PARAMETER(z);
  9922. Warning( "glNormalStream3iATI", " not available." );
  9923. }
  9924. static void REGAL_CALL glNormalStream3ivATI(GLenum stream, const GLint *coords)
  9925. {
  9926. UNUSED_PARAMETER(stream);
  9927. UNUSED_PARAMETER(coords);
  9928. Warning( "glNormalStream3ivATI", " not available." );
  9929. }
  9930. static void REGAL_CALL glNormalStream3sATI(GLenum stream, GLshort x, GLshort y, GLshort z)
  9931. {
  9932. UNUSED_PARAMETER(stream);
  9933. UNUSED_PARAMETER(x);
  9934. UNUSED_PARAMETER(y);
  9935. UNUSED_PARAMETER(z);
  9936. Warning( "glNormalStream3sATI", " not available." );
  9937. }
  9938. static void REGAL_CALL glNormalStream3svATI(GLenum stream, const GLshort *coords)
  9939. {
  9940. UNUSED_PARAMETER(stream);
  9941. UNUSED_PARAMETER(coords);
  9942. Warning( "glNormalStream3svATI", " not available." );
  9943. }
  9944. static void REGAL_CALL glVertexBlendEnvfATI(GLenum pname, GLfloat param)
  9945. {
  9946. UNUSED_PARAMETER(pname);
  9947. UNUSED_PARAMETER(param);
  9948. Warning( "glVertexBlendEnvfATI", " not available." );
  9949. }
  9950. static void REGAL_CALL glVertexBlendEnviATI(GLenum pname, GLint param)
  9951. {
  9952. UNUSED_PARAMETER(pname);
  9953. UNUSED_PARAMETER(param);
  9954. Warning( "glVertexBlendEnviATI", " not available." );
  9955. }
  9956. static void REGAL_CALL glVertexStream1dATI(GLenum stream, GLdouble x)
  9957. {
  9958. UNUSED_PARAMETER(stream);
  9959. UNUSED_PARAMETER(x);
  9960. Warning( "glVertexStream1dATI", " not available." );
  9961. }
  9962. static void REGAL_CALL glVertexStream1dvATI(GLenum stream, const GLdouble *coords)
  9963. {
  9964. UNUSED_PARAMETER(stream);
  9965. UNUSED_PARAMETER(coords);
  9966. Warning( "glVertexStream1dvATI", " not available." );
  9967. }
  9968. static void REGAL_CALL glVertexStream1fATI(GLenum stream, GLfloat x)
  9969. {
  9970. UNUSED_PARAMETER(stream);
  9971. UNUSED_PARAMETER(x);
  9972. Warning( "glVertexStream1fATI", " not available." );
  9973. }
  9974. static void REGAL_CALL glVertexStream1fvATI(GLenum stream, const GLfloat *coords)
  9975. {
  9976. UNUSED_PARAMETER(stream);
  9977. UNUSED_PARAMETER(coords);
  9978. Warning( "glVertexStream1fvATI", " not available." );
  9979. }
  9980. static void REGAL_CALL glVertexStream1iATI(GLenum stream, GLint x)
  9981. {
  9982. UNUSED_PARAMETER(stream);
  9983. UNUSED_PARAMETER(x);
  9984. Warning( "glVertexStream1iATI", " not available." );
  9985. }
  9986. static void REGAL_CALL glVertexStream1ivATI(GLenum stream, const GLint *coords)
  9987. {
  9988. UNUSED_PARAMETER(stream);
  9989. UNUSED_PARAMETER(coords);
  9990. Warning( "glVertexStream1ivATI", " not available." );
  9991. }
  9992. static void REGAL_CALL glVertexStream1sATI(GLenum stream, GLshort x)
  9993. {
  9994. UNUSED_PARAMETER(stream);
  9995. UNUSED_PARAMETER(x);
  9996. Warning( "glVertexStream1sATI", " not available." );
  9997. }
  9998. static void REGAL_CALL glVertexStream1svATI(GLenum stream, const GLshort *coords)
  9999. {
  10000. UNUSED_PARAMETER(stream);
  10001. UNUSED_PARAMETER(coords);
  10002. Warning( "glVertexStream1svATI", " not available." );
  10003. }
  10004. static void REGAL_CALL glVertexStream2dATI(GLenum stream, GLdouble x, GLdouble y)
  10005. {
  10006. UNUSED_PARAMETER(stream);
  10007. UNUSED_PARAMETER(x);
  10008. UNUSED_PARAMETER(y);
  10009. Warning( "glVertexStream2dATI", " not available." );
  10010. }
  10011. static void REGAL_CALL glVertexStream2dvATI(GLenum stream, const GLdouble *coords)
  10012. {
  10013. UNUSED_PARAMETER(stream);
  10014. UNUSED_PARAMETER(coords);
  10015. Warning( "glVertexStream2dvATI", " not available." );
  10016. }
  10017. static void REGAL_CALL glVertexStream2fATI(GLenum stream, GLfloat x, GLfloat y)
  10018. {
  10019. UNUSED_PARAMETER(stream);
  10020. UNUSED_PARAMETER(x);
  10021. UNUSED_PARAMETER(y);
  10022. Warning( "glVertexStream2fATI", " not available." );
  10023. }
  10024. static void REGAL_CALL glVertexStream2fvATI(GLenum stream, const GLfloat *coords)
  10025. {
  10026. UNUSED_PARAMETER(stream);
  10027. UNUSED_PARAMETER(coords);
  10028. Warning( "glVertexStream2fvATI", " not available." );
  10029. }
  10030. static void REGAL_CALL glVertexStream2iATI(GLenum stream, GLint x, GLint y)
  10031. {
  10032. UNUSED_PARAMETER(stream);
  10033. UNUSED_PARAMETER(x);
  10034. UNUSED_PARAMETER(y);
  10035. Warning( "glVertexStream2iATI", " not available." );
  10036. }
  10037. static void REGAL_CALL glVertexStream2ivATI(GLenum stream, const GLint *coords)
  10038. {
  10039. UNUSED_PARAMETER(stream);
  10040. UNUSED_PARAMETER(coords);
  10041. Warning( "glVertexStream2ivATI", " not available." );
  10042. }
  10043. static void REGAL_CALL glVertexStream2sATI(GLenum stream, GLshort x, GLshort y)
  10044. {
  10045. UNUSED_PARAMETER(stream);
  10046. UNUSED_PARAMETER(x);
  10047. UNUSED_PARAMETER(y);
  10048. Warning( "glVertexStream2sATI", " not available." );
  10049. }
  10050. static void REGAL_CALL glVertexStream2svATI(GLenum stream, const GLshort *coords)
  10051. {
  10052. UNUSED_PARAMETER(stream);
  10053. UNUSED_PARAMETER(coords);
  10054. Warning( "glVertexStream2svATI", " not available." );
  10055. }
  10056. static void REGAL_CALL glVertexStream3dATI(GLenum stream, GLdouble x, GLdouble y, GLdouble z)
  10057. {
  10058. UNUSED_PARAMETER(stream);
  10059. UNUSED_PARAMETER(x);
  10060. UNUSED_PARAMETER(y);
  10061. UNUSED_PARAMETER(z);
  10062. Warning( "glVertexStream3dATI", " not available." );
  10063. }
  10064. static void REGAL_CALL glVertexStream3dvATI(GLenum stream, const GLdouble *coords)
  10065. {
  10066. UNUSED_PARAMETER(stream);
  10067. UNUSED_PARAMETER(coords);
  10068. Warning( "glVertexStream3dvATI", " not available." );
  10069. }
  10070. static void REGAL_CALL glVertexStream3fATI(GLenum stream, GLfloat x, GLfloat y, GLfloat z)
  10071. {
  10072. UNUSED_PARAMETER(stream);
  10073. UNUSED_PARAMETER(x);
  10074. UNUSED_PARAMETER(y);
  10075. UNUSED_PARAMETER(z);
  10076. Warning( "glVertexStream3fATI", " not available." );
  10077. }
  10078. static void REGAL_CALL glVertexStream3fvATI(GLenum stream, const GLfloat *coords)
  10079. {
  10080. UNUSED_PARAMETER(stream);
  10081. UNUSED_PARAMETER(coords);
  10082. Warning( "glVertexStream3fvATI", " not available." );
  10083. }
  10084. static void REGAL_CALL glVertexStream3iATI(GLenum stream, GLint x, GLint y, GLint z)
  10085. {
  10086. UNUSED_PARAMETER(stream);
  10087. UNUSED_PARAMETER(x);
  10088. UNUSED_PARAMETER(y);
  10089. UNUSED_PARAMETER(z);
  10090. Warning( "glVertexStream3iATI", " not available." );
  10091. }
  10092. static void REGAL_CALL glVertexStream3ivATI(GLenum stream, const GLint *coords)
  10093. {
  10094. UNUSED_PARAMETER(stream);
  10095. UNUSED_PARAMETER(coords);
  10096. Warning( "glVertexStream3ivATI", " not available." );
  10097. }
  10098. static void REGAL_CALL glVertexStream3sATI(GLenum stream, GLshort x, GLshort y, GLshort z)
  10099. {
  10100. UNUSED_PARAMETER(stream);
  10101. UNUSED_PARAMETER(x);
  10102. UNUSED_PARAMETER(y);
  10103. UNUSED_PARAMETER(z);
  10104. Warning( "glVertexStream3sATI", " not available." );
  10105. }
  10106. static void REGAL_CALL glVertexStream3svATI(GLenum stream, const GLshort *coords)
  10107. {
  10108. UNUSED_PARAMETER(stream);
  10109. UNUSED_PARAMETER(coords);
  10110. Warning( "glVertexStream3svATI", " not available." );
  10111. }
  10112. static void REGAL_CALL glVertexStream4dATI(GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  10113. {
  10114. UNUSED_PARAMETER(stream);
  10115. UNUSED_PARAMETER(x);
  10116. UNUSED_PARAMETER(y);
  10117. UNUSED_PARAMETER(z);
  10118. UNUSED_PARAMETER(w);
  10119. Warning( "glVertexStream4dATI", " not available." );
  10120. }
  10121. static void REGAL_CALL glVertexStream4dvATI(GLenum stream, const GLdouble *coords)
  10122. {
  10123. UNUSED_PARAMETER(stream);
  10124. UNUSED_PARAMETER(coords);
  10125. Warning( "glVertexStream4dvATI", " not available." );
  10126. }
  10127. static void REGAL_CALL glVertexStream4fATI(GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  10128. {
  10129. UNUSED_PARAMETER(stream);
  10130. UNUSED_PARAMETER(x);
  10131. UNUSED_PARAMETER(y);
  10132. UNUSED_PARAMETER(z);
  10133. UNUSED_PARAMETER(w);
  10134. Warning( "glVertexStream4fATI", " not available." );
  10135. }
  10136. static void REGAL_CALL glVertexStream4fvATI(GLenum stream, const GLfloat *coords)
  10137. {
  10138. UNUSED_PARAMETER(stream);
  10139. UNUSED_PARAMETER(coords);
  10140. Warning( "glVertexStream4fvATI", " not available." );
  10141. }
  10142. static void REGAL_CALL glVertexStream4iATI(GLenum stream, GLint x, GLint y, GLint z, GLint w)
  10143. {
  10144. UNUSED_PARAMETER(stream);
  10145. UNUSED_PARAMETER(x);
  10146. UNUSED_PARAMETER(y);
  10147. UNUSED_PARAMETER(z);
  10148. UNUSED_PARAMETER(w);
  10149. Warning( "glVertexStream4iATI", " not available." );
  10150. }
  10151. static void REGAL_CALL glVertexStream4ivATI(GLenum stream, const GLint *coords)
  10152. {
  10153. UNUSED_PARAMETER(stream);
  10154. UNUSED_PARAMETER(coords);
  10155. Warning( "glVertexStream4ivATI", " not available." );
  10156. }
  10157. static void REGAL_CALL glVertexStream4sATI(GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w)
  10158. {
  10159. UNUSED_PARAMETER(stream);
  10160. UNUSED_PARAMETER(x);
  10161. UNUSED_PARAMETER(y);
  10162. UNUSED_PARAMETER(z);
  10163. UNUSED_PARAMETER(w);
  10164. Warning( "glVertexStream4sATI", " not available." );
  10165. }
  10166. static void REGAL_CALL glVertexStream4svATI(GLenum stream, const GLshort *coords)
  10167. {
  10168. UNUSED_PARAMETER(stream);
  10169. UNUSED_PARAMETER(coords);
  10170. Warning( "glVertexStream4svATI", " not available." );
  10171. }
  10172. // GL_EXT_bindable_uniform
  10173. static GLint REGAL_CALL glGetUniformBufferSizeEXT(GLuint program, GLint location)
  10174. {
  10175. UNUSED_PARAMETER(program);
  10176. UNUSED_PARAMETER(location);
  10177. Warning( "glGetUniformBufferSizeEXT", " not available." );
  10178. return 0;
  10179. }
  10180. static GLintptr REGAL_CALL glGetUniformOffsetEXT(GLuint program, GLint location)
  10181. {
  10182. UNUSED_PARAMETER(program);
  10183. UNUSED_PARAMETER(location);
  10184. Warning( "glGetUniformOffsetEXT", " not available." );
  10185. return 0;
  10186. }
  10187. static void REGAL_CALL glUniformBufferEXT(GLuint program, GLint location, GLuint buffer)
  10188. {
  10189. UNUSED_PARAMETER(program);
  10190. UNUSED_PARAMETER(location);
  10191. UNUSED_PARAMETER(buffer);
  10192. Warning( "glUniformBufferEXT", " not available." );
  10193. }
  10194. // GL_EXT_blend_color
  10195. static void REGAL_CALL glBlendColorEXT(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
  10196. {
  10197. UNUSED_PARAMETER(red);
  10198. UNUSED_PARAMETER(green);
  10199. UNUSED_PARAMETER(blue);
  10200. UNUSED_PARAMETER(alpha);
  10201. Warning( "glBlendColorEXT", " not available." );
  10202. }
  10203. // GL_EXT_blend_equation_separate
  10204. static void REGAL_CALL glBlendEquationSeparateEXT(GLenum modeRGB, GLenum modeAlpha)
  10205. {
  10206. UNUSED_PARAMETER(modeRGB);
  10207. UNUSED_PARAMETER(modeAlpha);
  10208. Warning( "glBlendEquationSeparateEXT", " not available." );
  10209. }
  10210. // GL_EXT_blend_func_separate
  10211. static void REGAL_CALL glBlendFuncSeparateEXT(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)
  10212. {
  10213. UNUSED_PARAMETER(sfactorRGB);
  10214. UNUSED_PARAMETER(dfactorRGB);
  10215. UNUSED_PARAMETER(sfactorAlpha);
  10216. UNUSED_PARAMETER(dfactorAlpha);
  10217. Warning( "glBlendFuncSeparateEXT", " not available." );
  10218. }
  10219. // GL_EXT_blend_minmax
  10220. static void REGAL_CALL glBlendEquationEXT(GLenum mode)
  10221. {
  10222. UNUSED_PARAMETER(mode);
  10223. Warning( "glBlendEquationEXT", " not available." );
  10224. }
  10225. // GL_EXT_color_subtable
  10226. static void REGAL_CALL glColorSubTableEXT(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *table)
  10227. {
  10228. UNUSED_PARAMETER(target);
  10229. UNUSED_PARAMETER(start);
  10230. UNUSED_PARAMETER(count);
  10231. UNUSED_PARAMETER(format);
  10232. UNUSED_PARAMETER(type);
  10233. UNUSED_PARAMETER(table);
  10234. Warning( "glColorSubTableEXT", " not available." );
  10235. }
  10236. static void REGAL_CALL glCopyColorSubTableEXT(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width)
  10237. {
  10238. UNUSED_PARAMETER(target);
  10239. UNUSED_PARAMETER(start);
  10240. UNUSED_PARAMETER(x);
  10241. UNUSED_PARAMETER(y);
  10242. UNUSED_PARAMETER(width);
  10243. Warning( "glCopyColorSubTableEXT", " not available." );
  10244. }
  10245. // GL_EXT_compiled_vertex_array
  10246. static void REGAL_CALL glLockArraysEXT(GLint first, GLsizei count)
  10247. {
  10248. UNUSED_PARAMETER(first);
  10249. UNUSED_PARAMETER(count);
  10250. Warning( "glLockArraysEXT", " not available." );
  10251. }
  10252. static void REGAL_CALL glUnlockArraysEXT(void)
  10253. {
  10254. Warning( "glUnlockArraysEXT", " not available." );
  10255. }
  10256. // GL_EXT_convolution
  10257. static void REGAL_CALL glConvolutionFilter1DEXT(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image)
  10258. {
  10259. UNUSED_PARAMETER(target);
  10260. UNUSED_PARAMETER(internalformat);
  10261. UNUSED_PARAMETER(width);
  10262. UNUSED_PARAMETER(format);
  10263. UNUSED_PARAMETER(type);
  10264. UNUSED_PARAMETER(image);
  10265. Warning( "glConvolutionFilter1DEXT", " not available." );
  10266. }
  10267. static void REGAL_CALL glConvolutionFilter2DEXT(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image)
  10268. {
  10269. UNUSED_PARAMETER(target);
  10270. UNUSED_PARAMETER(internalformat);
  10271. UNUSED_PARAMETER(width);
  10272. UNUSED_PARAMETER(height);
  10273. UNUSED_PARAMETER(format);
  10274. UNUSED_PARAMETER(type);
  10275. UNUSED_PARAMETER(image);
  10276. Warning( "glConvolutionFilter2DEXT", " not available." );
  10277. }
  10278. static void REGAL_CALL glConvolutionParameterfEXT(GLenum target, GLenum pname, GLfloat param)
  10279. {
  10280. UNUSED_PARAMETER(target);
  10281. UNUSED_PARAMETER(pname);
  10282. UNUSED_PARAMETER(param);
  10283. Warning( "glConvolutionParameterfEXT", " not available." );
  10284. }
  10285. static void REGAL_CALL glConvolutionParameterfvEXT(GLenum target, GLenum pname, const GLfloat *params)
  10286. {
  10287. UNUSED_PARAMETER(target);
  10288. UNUSED_PARAMETER(pname);
  10289. UNUSED_PARAMETER(params);
  10290. Warning( "glConvolutionParameterfvEXT", " not available." );
  10291. }
  10292. static void REGAL_CALL glConvolutionParameteriEXT(GLenum target, GLenum pname, GLint param)
  10293. {
  10294. UNUSED_PARAMETER(target);
  10295. UNUSED_PARAMETER(pname);
  10296. UNUSED_PARAMETER(param);
  10297. Warning( "glConvolutionParameteriEXT", " not available." );
  10298. }
  10299. static void REGAL_CALL glConvolutionParameterivEXT(GLenum target, GLenum pname, const GLint *params)
  10300. {
  10301. UNUSED_PARAMETER(target);
  10302. UNUSED_PARAMETER(pname);
  10303. UNUSED_PARAMETER(params);
  10304. Warning( "glConvolutionParameterivEXT", " not available." );
  10305. }
  10306. static void REGAL_CALL glCopyConvolutionFilter1DEXT(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width)
  10307. {
  10308. UNUSED_PARAMETER(target);
  10309. UNUSED_PARAMETER(internalformat);
  10310. UNUSED_PARAMETER(x);
  10311. UNUSED_PARAMETER(y);
  10312. UNUSED_PARAMETER(width);
  10313. Warning( "glCopyConvolutionFilter1DEXT", " not available." );
  10314. }
  10315. static void REGAL_CALL glCopyConvolutionFilter2DEXT(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height)
  10316. {
  10317. UNUSED_PARAMETER(target);
  10318. UNUSED_PARAMETER(internalformat);
  10319. UNUSED_PARAMETER(x);
  10320. UNUSED_PARAMETER(y);
  10321. UNUSED_PARAMETER(width);
  10322. UNUSED_PARAMETER(height);
  10323. Warning( "glCopyConvolutionFilter2DEXT", " not available." );
  10324. }
  10325. static void REGAL_CALL glGetConvolutionFilterEXT(GLenum target, GLenum format, GLenum type, GLvoid *image)
  10326. {
  10327. UNUSED_PARAMETER(target);
  10328. UNUSED_PARAMETER(format);
  10329. UNUSED_PARAMETER(type);
  10330. UNUSED_PARAMETER(image);
  10331. Warning( "glGetConvolutionFilterEXT", " not available." );
  10332. }
  10333. static void REGAL_CALL glGetConvolutionParameterfvEXT(GLenum target, GLenum pname, GLfloat *params)
  10334. {
  10335. UNUSED_PARAMETER(target);
  10336. UNUSED_PARAMETER(pname);
  10337. UNUSED_PARAMETER(params);
  10338. Warning( "glGetConvolutionParameterfvEXT", " not available." );
  10339. }
  10340. static void REGAL_CALL glGetConvolutionParameterivEXT(GLenum target, GLenum pname, GLint *params)
  10341. {
  10342. UNUSED_PARAMETER(target);
  10343. UNUSED_PARAMETER(pname);
  10344. UNUSED_PARAMETER(params);
  10345. Warning( "glGetConvolutionParameterivEXT", " not available." );
  10346. }
  10347. static void REGAL_CALL glGetSeparableFilterEXT(GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span)
  10348. {
  10349. UNUSED_PARAMETER(target);
  10350. UNUSED_PARAMETER(format);
  10351. UNUSED_PARAMETER(type);
  10352. UNUSED_PARAMETER(row);
  10353. UNUSED_PARAMETER(column);
  10354. UNUSED_PARAMETER(span);
  10355. Warning( "glGetSeparableFilterEXT", " not available." );
  10356. }
  10357. static void REGAL_CALL glSeparableFilter2DEXT(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
  10358. {
  10359. UNUSED_PARAMETER(target);
  10360. UNUSED_PARAMETER(internalformat);
  10361. UNUSED_PARAMETER(width);
  10362. UNUSED_PARAMETER(height);
  10363. UNUSED_PARAMETER(format);
  10364. UNUSED_PARAMETER(type);
  10365. UNUSED_PARAMETER(row);
  10366. UNUSED_PARAMETER(column);
  10367. Warning( "glSeparableFilter2DEXT", " not available." );
  10368. }
  10369. // GL_EXT_coordinate_frame
  10370. static void REGAL_CALL glBinormal3bEXT(GLbyte bx, GLbyte by, GLbyte bz)
  10371. {
  10372. UNUSED_PARAMETER(bx);
  10373. UNUSED_PARAMETER(by);
  10374. UNUSED_PARAMETER(bz);
  10375. Warning( "glBinormal3bEXT", " not available." );
  10376. }
  10377. static void REGAL_CALL glBinormal3bvEXT(const GLbyte *v)
  10378. {
  10379. UNUSED_PARAMETER(v);
  10380. Warning( "glBinormal3bvEXT", " not available." );
  10381. }
  10382. static void REGAL_CALL glBinormal3dEXT(GLdouble bx, GLdouble by, GLdouble bz)
  10383. {
  10384. UNUSED_PARAMETER(bx);
  10385. UNUSED_PARAMETER(by);
  10386. UNUSED_PARAMETER(bz);
  10387. Warning( "glBinormal3dEXT", " not available." );
  10388. }
  10389. static void REGAL_CALL glBinormal3dvEXT(const GLdouble *v)
  10390. {
  10391. UNUSED_PARAMETER(v);
  10392. Warning( "glBinormal3dvEXT", " not available." );
  10393. }
  10394. static void REGAL_CALL glBinormal3fEXT(GLfloat bx, GLfloat by, GLfloat bz)
  10395. {
  10396. UNUSED_PARAMETER(bx);
  10397. UNUSED_PARAMETER(by);
  10398. UNUSED_PARAMETER(bz);
  10399. Warning( "glBinormal3fEXT", " not available." );
  10400. }
  10401. static void REGAL_CALL glBinormal3fvEXT(const GLfloat *v)
  10402. {
  10403. UNUSED_PARAMETER(v);
  10404. Warning( "glBinormal3fvEXT", " not available." );
  10405. }
  10406. static void REGAL_CALL glBinormal3iEXT(GLint bx, GLint by, GLint bz)
  10407. {
  10408. UNUSED_PARAMETER(bx);
  10409. UNUSED_PARAMETER(by);
  10410. UNUSED_PARAMETER(bz);
  10411. Warning( "glBinormal3iEXT", " not available." );
  10412. }
  10413. static void REGAL_CALL glBinormal3ivEXT(const GLint *v)
  10414. {
  10415. UNUSED_PARAMETER(v);
  10416. Warning( "glBinormal3ivEXT", " not available." );
  10417. }
  10418. static void REGAL_CALL glBinormal3sEXT(GLshort bx, GLshort by, GLshort bz)
  10419. {
  10420. UNUSED_PARAMETER(bx);
  10421. UNUSED_PARAMETER(by);
  10422. UNUSED_PARAMETER(bz);
  10423. Warning( "glBinormal3sEXT", " not available." );
  10424. }
  10425. static void REGAL_CALL glBinormal3svEXT(const GLshort *v)
  10426. {
  10427. UNUSED_PARAMETER(v);
  10428. Warning( "glBinormal3svEXT", " not available." );
  10429. }
  10430. static void REGAL_CALL glBinormalPointerEXT(GLenum type, GLsizei stride, const GLvoid *pointer)
  10431. {
  10432. UNUSED_PARAMETER(type);
  10433. UNUSED_PARAMETER(stride);
  10434. UNUSED_PARAMETER(pointer);
  10435. Warning( "glBinormalPointerEXT", " not available." );
  10436. }
  10437. static void REGAL_CALL glTangent3bEXT(GLbyte tx, GLbyte ty, GLbyte tz)
  10438. {
  10439. UNUSED_PARAMETER(tx);
  10440. UNUSED_PARAMETER(ty);
  10441. UNUSED_PARAMETER(tz);
  10442. Warning( "glTangent3bEXT", " not available." );
  10443. }
  10444. static void REGAL_CALL glTangent3bvEXT(const GLbyte *v)
  10445. {
  10446. UNUSED_PARAMETER(v);
  10447. Warning( "glTangent3bvEXT", " not available." );
  10448. }
  10449. static void REGAL_CALL glTangent3dEXT(GLdouble tx, GLdouble ty, GLdouble tz)
  10450. {
  10451. UNUSED_PARAMETER(tx);
  10452. UNUSED_PARAMETER(ty);
  10453. UNUSED_PARAMETER(tz);
  10454. Warning( "glTangent3dEXT", " not available." );
  10455. }
  10456. static void REGAL_CALL glTangent3dvEXT(const GLdouble *v)
  10457. {
  10458. UNUSED_PARAMETER(v);
  10459. Warning( "glTangent3dvEXT", " not available." );
  10460. }
  10461. static void REGAL_CALL glTangent3fEXT(GLfloat tx, GLfloat ty, GLfloat tz)
  10462. {
  10463. UNUSED_PARAMETER(tx);
  10464. UNUSED_PARAMETER(ty);
  10465. UNUSED_PARAMETER(tz);
  10466. Warning( "glTangent3fEXT", " not available." );
  10467. }
  10468. static void REGAL_CALL glTangent3fvEXT(const GLfloat *v)
  10469. {
  10470. UNUSED_PARAMETER(v);
  10471. Warning( "glTangent3fvEXT", " not available." );
  10472. }
  10473. static void REGAL_CALL glTangent3iEXT(GLint tx, GLint ty, GLint tz)
  10474. {
  10475. UNUSED_PARAMETER(tx);
  10476. UNUSED_PARAMETER(ty);
  10477. UNUSED_PARAMETER(tz);
  10478. Warning( "glTangent3iEXT", " not available." );
  10479. }
  10480. static void REGAL_CALL glTangent3ivEXT(const GLint *v)
  10481. {
  10482. UNUSED_PARAMETER(v);
  10483. Warning( "glTangent3ivEXT", " not available." );
  10484. }
  10485. static void REGAL_CALL glTangent3sEXT(GLshort tx, GLshort ty, GLshort tz)
  10486. {
  10487. UNUSED_PARAMETER(tx);
  10488. UNUSED_PARAMETER(ty);
  10489. UNUSED_PARAMETER(tz);
  10490. Warning( "glTangent3sEXT", " not available." );
  10491. }
  10492. static void REGAL_CALL glTangent3svEXT(const GLshort *v)
  10493. {
  10494. UNUSED_PARAMETER(v);
  10495. Warning( "glTangent3svEXT", " not available." );
  10496. }
  10497. static void REGAL_CALL glTangentPointerEXT(GLenum type, GLsizei stride, const GLvoid *pointer)
  10498. {
  10499. UNUSED_PARAMETER(type);
  10500. UNUSED_PARAMETER(stride);
  10501. UNUSED_PARAMETER(pointer);
  10502. Warning( "glTangentPointerEXT", " not available." );
  10503. }
  10504. // GL_EXT_copy_texture
  10505. static void REGAL_CALL glCopyTexImage1DEXT(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)
  10506. {
  10507. UNUSED_PARAMETER(target);
  10508. UNUSED_PARAMETER(level);
  10509. UNUSED_PARAMETER(internalformat);
  10510. UNUSED_PARAMETER(x);
  10511. UNUSED_PARAMETER(y);
  10512. UNUSED_PARAMETER(width);
  10513. UNUSED_PARAMETER(border);
  10514. Warning( "glCopyTexImage1DEXT", " not available." );
  10515. }
  10516. static void REGAL_CALL glCopyTexImage2DEXT(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
  10517. {
  10518. UNUSED_PARAMETER(target);
  10519. UNUSED_PARAMETER(level);
  10520. UNUSED_PARAMETER(internalformat);
  10521. UNUSED_PARAMETER(x);
  10522. UNUSED_PARAMETER(y);
  10523. UNUSED_PARAMETER(width);
  10524. UNUSED_PARAMETER(height);
  10525. UNUSED_PARAMETER(border);
  10526. Warning( "glCopyTexImage2DEXT", " not available." );
  10527. }
  10528. static void REGAL_CALL glCopyTexSubImage1DEXT(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
  10529. {
  10530. UNUSED_PARAMETER(target);
  10531. UNUSED_PARAMETER(level);
  10532. UNUSED_PARAMETER(xoffset);
  10533. UNUSED_PARAMETER(x);
  10534. UNUSED_PARAMETER(y);
  10535. UNUSED_PARAMETER(width);
  10536. Warning( "glCopyTexSubImage1DEXT", " not available." );
  10537. }
  10538. static void REGAL_CALL glCopyTexSubImage2DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  10539. {
  10540. UNUSED_PARAMETER(target);
  10541. UNUSED_PARAMETER(level);
  10542. UNUSED_PARAMETER(xoffset);
  10543. UNUSED_PARAMETER(yoffset);
  10544. UNUSED_PARAMETER(x);
  10545. UNUSED_PARAMETER(y);
  10546. UNUSED_PARAMETER(width);
  10547. UNUSED_PARAMETER(height);
  10548. Warning( "glCopyTexSubImage2DEXT", " not available." );
  10549. }
  10550. static void REGAL_CALL glCopyTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  10551. {
  10552. UNUSED_PARAMETER(target);
  10553. UNUSED_PARAMETER(level);
  10554. UNUSED_PARAMETER(xoffset);
  10555. UNUSED_PARAMETER(yoffset);
  10556. UNUSED_PARAMETER(zoffset);
  10557. UNUSED_PARAMETER(x);
  10558. UNUSED_PARAMETER(y);
  10559. UNUSED_PARAMETER(width);
  10560. UNUSED_PARAMETER(height);
  10561. Warning( "glCopyTexSubImage3DEXT", " not available." );
  10562. }
  10563. // GL_EXT_cull_vertex
  10564. static void REGAL_CALL glCullParameterdvEXT(GLenum pname, GLdouble *params)
  10565. {
  10566. UNUSED_PARAMETER(pname);
  10567. UNUSED_PARAMETER(params);
  10568. Warning( "glCullParameterdvEXT", " not available." );
  10569. }
  10570. static void REGAL_CALL glCullParameterfvEXT(GLenum pname, GLfloat *params)
  10571. {
  10572. UNUSED_PARAMETER(pname);
  10573. UNUSED_PARAMETER(params);
  10574. Warning( "glCullParameterfvEXT", " not available." );
  10575. }
  10576. // GL_EXT_debug_label
  10577. static void REGAL_CALL glGetObjectLabelEXT(GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label)
  10578. {
  10579. UNUSED_PARAMETER(type);
  10580. UNUSED_PARAMETER(object);
  10581. UNUSED_PARAMETER(bufSize);
  10582. UNUSED_PARAMETER(length);
  10583. UNUSED_PARAMETER(label);
  10584. Warning( "glGetObjectLabelEXT", " not available." );
  10585. }
  10586. static void REGAL_CALL glLabelObjectEXT(GLenum type, GLuint object, GLsizei length, const GLchar *label)
  10587. {
  10588. UNUSED_PARAMETER(type);
  10589. UNUSED_PARAMETER(object);
  10590. UNUSED_PARAMETER(length);
  10591. UNUSED_PARAMETER(label);
  10592. Warning( "glLabelObjectEXT", " not available." );
  10593. }
  10594. // GL_EXT_debug_marker
  10595. static void REGAL_CALL glInsertEventMarkerEXT(GLsizei length, const GLchar *marker)
  10596. {
  10597. UNUSED_PARAMETER(length);
  10598. UNUSED_PARAMETER(marker);
  10599. Warning( "glInsertEventMarkerEXT", " not available." );
  10600. }
  10601. static void REGAL_CALL glPopGroupMarkerEXT(void)
  10602. {
  10603. Warning( "glPopGroupMarkerEXT", " not available." );
  10604. }
  10605. static void REGAL_CALL glPushGroupMarkerEXT(GLsizei length, const GLchar *marker)
  10606. {
  10607. UNUSED_PARAMETER(length);
  10608. UNUSED_PARAMETER(marker);
  10609. Warning( "glPushGroupMarkerEXT", " not available." );
  10610. }
  10611. // GL_EXT_depth_bounds_test
  10612. static void REGAL_CALL glDepthBoundsEXT(GLclampd zmin, GLclampd zmax)
  10613. {
  10614. UNUSED_PARAMETER(zmin);
  10615. UNUSED_PARAMETER(zmax);
  10616. Warning( "glDepthBoundsEXT", " not available." );
  10617. }
  10618. // GL_EXT_direct_state_access
  10619. static void REGAL_CALL glBindMultiTextureEXT(GLenum texunit, GLenum target, GLuint texture)
  10620. {
  10621. UNUSED_PARAMETER(texunit);
  10622. UNUSED_PARAMETER(target);
  10623. UNUSED_PARAMETER(texture);
  10624. Warning( "glBindMultiTextureEXT", " not available." );
  10625. }
  10626. static GLenum REGAL_CALL glCheckNamedFramebufferStatusEXT(GLuint framebuffer, GLenum target)
  10627. {
  10628. UNUSED_PARAMETER(framebuffer);
  10629. UNUSED_PARAMETER(target);
  10630. Warning( "glCheckNamedFramebufferStatusEXT", " not available." );
  10631. return 0;
  10632. }
  10633. static void REGAL_CALL glClientAttribDefaultEXT(GLbitfield mask)
  10634. {
  10635. UNUSED_PARAMETER(mask);
  10636. Warning( "glClientAttribDefaultEXT", " not available." );
  10637. }
  10638. static void REGAL_CALL glCompressedMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data)
  10639. {
  10640. UNUSED_PARAMETER(texunit);
  10641. UNUSED_PARAMETER(target);
  10642. UNUSED_PARAMETER(level);
  10643. UNUSED_PARAMETER(internalformat);
  10644. UNUSED_PARAMETER(width);
  10645. UNUSED_PARAMETER(border);
  10646. UNUSED_PARAMETER(imageSize);
  10647. UNUSED_PARAMETER(data);
  10648. Warning( "glCompressedMultiTexImage1DEXT", " not available." );
  10649. }
  10650. static void REGAL_CALL glCompressedMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits)
  10651. {
  10652. UNUSED_PARAMETER(texunit);
  10653. UNUSED_PARAMETER(target);
  10654. UNUSED_PARAMETER(level);
  10655. UNUSED_PARAMETER(internalformat);
  10656. UNUSED_PARAMETER(width);
  10657. UNUSED_PARAMETER(height);
  10658. UNUSED_PARAMETER(border);
  10659. UNUSED_PARAMETER(imageSize);
  10660. UNUSED_PARAMETER(bits);
  10661. Warning( "glCompressedMultiTexImage2DEXT", " not available." );
  10662. }
  10663. static void REGAL_CALL glCompressedMultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits)
  10664. {
  10665. UNUSED_PARAMETER(texunit);
  10666. UNUSED_PARAMETER(target);
  10667. UNUSED_PARAMETER(level);
  10668. UNUSED_PARAMETER(internalformat);
  10669. UNUSED_PARAMETER(width);
  10670. UNUSED_PARAMETER(height);
  10671. UNUSED_PARAMETER(depth);
  10672. UNUSED_PARAMETER(border);
  10673. UNUSED_PARAMETER(imageSize);
  10674. UNUSED_PARAMETER(bits);
  10675. Warning( "glCompressedMultiTexImage3DEXT", " not available." );
  10676. }
  10677. static void REGAL_CALL glCompressedMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data)
  10678. {
  10679. UNUSED_PARAMETER(texunit);
  10680. UNUSED_PARAMETER(target);
  10681. UNUSED_PARAMETER(level);
  10682. UNUSED_PARAMETER(xoffset);
  10683. UNUSED_PARAMETER(width);
  10684. UNUSED_PARAMETER(format);
  10685. UNUSED_PARAMETER(imageSize);
  10686. UNUSED_PARAMETER(data);
  10687. Warning( "glCompressedMultiTexSubImage1DEXT", " not available." );
  10688. }
  10689. static void REGAL_CALL glCompressedMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data)
  10690. {
  10691. UNUSED_PARAMETER(texunit);
  10692. UNUSED_PARAMETER(target);
  10693. UNUSED_PARAMETER(level);
  10694. UNUSED_PARAMETER(xoffset);
  10695. UNUSED_PARAMETER(yoffset);
  10696. UNUSED_PARAMETER(width);
  10697. UNUSED_PARAMETER(height);
  10698. UNUSED_PARAMETER(format);
  10699. UNUSED_PARAMETER(imageSize);
  10700. UNUSED_PARAMETER(data);
  10701. Warning( "glCompressedMultiTexSubImage2DEXT", " not available." );
  10702. }
  10703. static void REGAL_CALL glCompressedMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data)
  10704. {
  10705. UNUSED_PARAMETER(texunit);
  10706. UNUSED_PARAMETER(target);
  10707. UNUSED_PARAMETER(level);
  10708. UNUSED_PARAMETER(xoffset);
  10709. UNUSED_PARAMETER(yoffset);
  10710. UNUSED_PARAMETER(zoffset);
  10711. UNUSED_PARAMETER(width);
  10712. UNUSED_PARAMETER(height);
  10713. UNUSED_PARAMETER(depth);
  10714. UNUSED_PARAMETER(format);
  10715. UNUSED_PARAMETER(imageSize);
  10716. UNUSED_PARAMETER(data);
  10717. Warning( "glCompressedMultiTexSubImage3DEXT", " not available." );
  10718. }
  10719. static void REGAL_CALL glCompressedTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *bits)
  10720. {
  10721. UNUSED_PARAMETER(texture);
  10722. UNUSED_PARAMETER(target);
  10723. UNUSED_PARAMETER(level);
  10724. UNUSED_PARAMETER(internalformat);
  10725. UNUSED_PARAMETER(width);
  10726. UNUSED_PARAMETER(border);
  10727. UNUSED_PARAMETER(imageSize);
  10728. UNUSED_PARAMETER(bits);
  10729. Warning( "glCompressedTextureImage1DEXT", " not available." );
  10730. }
  10731. static void REGAL_CALL glCompressedTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *bits)
  10732. {
  10733. UNUSED_PARAMETER(texture);
  10734. UNUSED_PARAMETER(target);
  10735. UNUSED_PARAMETER(level);
  10736. UNUSED_PARAMETER(internalformat);
  10737. UNUSED_PARAMETER(width);
  10738. UNUSED_PARAMETER(height);
  10739. UNUSED_PARAMETER(border);
  10740. UNUSED_PARAMETER(imageSize);
  10741. UNUSED_PARAMETER(bits);
  10742. Warning( "glCompressedTextureImage2DEXT", " not available." );
  10743. }
  10744. static void REGAL_CALL glCompressedTextureImage3DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *bits)
  10745. {
  10746. UNUSED_PARAMETER(texture);
  10747. UNUSED_PARAMETER(target);
  10748. UNUSED_PARAMETER(level);
  10749. UNUSED_PARAMETER(internalformat);
  10750. UNUSED_PARAMETER(width);
  10751. UNUSED_PARAMETER(height);
  10752. UNUSED_PARAMETER(depth);
  10753. UNUSED_PARAMETER(border);
  10754. UNUSED_PARAMETER(imageSize);
  10755. UNUSED_PARAMETER(bits);
  10756. Warning( "glCompressedTextureImage3DEXT", " not available." );
  10757. }
  10758. static void REGAL_CALL glCompressedTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *bits)
  10759. {
  10760. UNUSED_PARAMETER(texture);
  10761. UNUSED_PARAMETER(target);
  10762. UNUSED_PARAMETER(level);
  10763. UNUSED_PARAMETER(xoffset);
  10764. UNUSED_PARAMETER(width);
  10765. UNUSED_PARAMETER(format);
  10766. UNUSED_PARAMETER(imageSize);
  10767. UNUSED_PARAMETER(bits);
  10768. Warning( "glCompressedTextureSubImage1DEXT", " not available." );
  10769. }
  10770. static void REGAL_CALL glCompressedTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *bits)
  10771. {
  10772. UNUSED_PARAMETER(texture);
  10773. UNUSED_PARAMETER(target);
  10774. UNUSED_PARAMETER(level);
  10775. UNUSED_PARAMETER(xoffset);
  10776. UNUSED_PARAMETER(yoffset);
  10777. UNUSED_PARAMETER(width);
  10778. UNUSED_PARAMETER(height);
  10779. UNUSED_PARAMETER(format);
  10780. UNUSED_PARAMETER(imageSize);
  10781. UNUSED_PARAMETER(bits);
  10782. Warning( "glCompressedTextureSubImage2DEXT", " not available." );
  10783. }
  10784. static void REGAL_CALL glCompressedTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *bits)
  10785. {
  10786. UNUSED_PARAMETER(texture);
  10787. UNUSED_PARAMETER(target);
  10788. UNUSED_PARAMETER(level);
  10789. UNUSED_PARAMETER(xoffset);
  10790. UNUSED_PARAMETER(yoffset);
  10791. UNUSED_PARAMETER(zoffset);
  10792. UNUSED_PARAMETER(width);
  10793. UNUSED_PARAMETER(height);
  10794. UNUSED_PARAMETER(depth);
  10795. UNUSED_PARAMETER(format);
  10796. UNUSED_PARAMETER(imageSize);
  10797. UNUSED_PARAMETER(bits);
  10798. Warning( "glCompressedTextureSubImage3DEXT", " not available." );
  10799. }
  10800. static void REGAL_CALL glCopyMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)
  10801. {
  10802. UNUSED_PARAMETER(texunit);
  10803. UNUSED_PARAMETER(target);
  10804. UNUSED_PARAMETER(level);
  10805. UNUSED_PARAMETER(internalformat);
  10806. UNUSED_PARAMETER(x);
  10807. UNUSED_PARAMETER(y);
  10808. UNUSED_PARAMETER(width);
  10809. UNUSED_PARAMETER(border);
  10810. Warning( "glCopyMultiTexImage1DEXT", " not available." );
  10811. }
  10812. static void REGAL_CALL glCopyMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
  10813. {
  10814. UNUSED_PARAMETER(texunit);
  10815. UNUSED_PARAMETER(target);
  10816. UNUSED_PARAMETER(level);
  10817. UNUSED_PARAMETER(internalformat);
  10818. UNUSED_PARAMETER(x);
  10819. UNUSED_PARAMETER(y);
  10820. UNUSED_PARAMETER(width);
  10821. UNUSED_PARAMETER(height);
  10822. UNUSED_PARAMETER(border);
  10823. Warning( "glCopyMultiTexImage2DEXT", " not available." );
  10824. }
  10825. static void REGAL_CALL glCopyMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
  10826. {
  10827. UNUSED_PARAMETER(texunit);
  10828. UNUSED_PARAMETER(target);
  10829. UNUSED_PARAMETER(level);
  10830. UNUSED_PARAMETER(xoffset);
  10831. UNUSED_PARAMETER(x);
  10832. UNUSED_PARAMETER(y);
  10833. UNUSED_PARAMETER(width);
  10834. Warning( "glCopyMultiTexSubImage1DEXT", " not available." );
  10835. }
  10836. static void REGAL_CALL glCopyMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  10837. {
  10838. UNUSED_PARAMETER(texunit);
  10839. UNUSED_PARAMETER(target);
  10840. UNUSED_PARAMETER(level);
  10841. UNUSED_PARAMETER(xoffset);
  10842. UNUSED_PARAMETER(yoffset);
  10843. UNUSED_PARAMETER(x);
  10844. UNUSED_PARAMETER(y);
  10845. UNUSED_PARAMETER(width);
  10846. UNUSED_PARAMETER(height);
  10847. Warning( "glCopyMultiTexSubImage2DEXT", " not available." );
  10848. }
  10849. static void REGAL_CALL glCopyMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  10850. {
  10851. UNUSED_PARAMETER(texunit);
  10852. UNUSED_PARAMETER(target);
  10853. UNUSED_PARAMETER(level);
  10854. UNUSED_PARAMETER(xoffset);
  10855. UNUSED_PARAMETER(yoffset);
  10856. UNUSED_PARAMETER(zoffset);
  10857. UNUSED_PARAMETER(x);
  10858. UNUSED_PARAMETER(y);
  10859. UNUSED_PARAMETER(width);
  10860. UNUSED_PARAMETER(height);
  10861. Warning( "glCopyMultiTexSubImage3DEXT", " not available." );
  10862. }
  10863. static void REGAL_CALL glCopyTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)
  10864. {
  10865. UNUSED_PARAMETER(texture);
  10866. UNUSED_PARAMETER(target);
  10867. UNUSED_PARAMETER(level);
  10868. UNUSED_PARAMETER(internalformat);
  10869. UNUSED_PARAMETER(x);
  10870. UNUSED_PARAMETER(y);
  10871. UNUSED_PARAMETER(width);
  10872. UNUSED_PARAMETER(border);
  10873. Warning( "glCopyTextureImage1DEXT", " not available." );
  10874. }
  10875. static void REGAL_CALL glCopyTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
  10876. {
  10877. UNUSED_PARAMETER(texture);
  10878. UNUSED_PARAMETER(target);
  10879. UNUSED_PARAMETER(level);
  10880. UNUSED_PARAMETER(internalformat);
  10881. UNUSED_PARAMETER(x);
  10882. UNUSED_PARAMETER(y);
  10883. UNUSED_PARAMETER(width);
  10884. UNUSED_PARAMETER(height);
  10885. UNUSED_PARAMETER(border);
  10886. Warning( "glCopyTextureImage2DEXT", " not available." );
  10887. }
  10888. static void REGAL_CALL glCopyTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
  10889. {
  10890. UNUSED_PARAMETER(texture);
  10891. UNUSED_PARAMETER(target);
  10892. UNUSED_PARAMETER(level);
  10893. UNUSED_PARAMETER(xoffset);
  10894. UNUSED_PARAMETER(x);
  10895. UNUSED_PARAMETER(y);
  10896. UNUSED_PARAMETER(width);
  10897. Warning( "glCopyTextureSubImage1DEXT", " not available." );
  10898. }
  10899. static void REGAL_CALL glCopyTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  10900. {
  10901. UNUSED_PARAMETER(texture);
  10902. UNUSED_PARAMETER(target);
  10903. UNUSED_PARAMETER(level);
  10904. UNUSED_PARAMETER(xoffset);
  10905. UNUSED_PARAMETER(yoffset);
  10906. UNUSED_PARAMETER(x);
  10907. UNUSED_PARAMETER(y);
  10908. UNUSED_PARAMETER(width);
  10909. UNUSED_PARAMETER(height);
  10910. Warning( "glCopyTextureSubImage2DEXT", " not available." );
  10911. }
  10912. static void REGAL_CALL glCopyTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
  10913. {
  10914. UNUSED_PARAMETER(texture);
  10915. UNUSED_PARAMETER(target);
  10916. UNUSED_PARAMETER(level);
  10917. UNUSED_PARAMETER(xoffset);
  10918. UNUSED_PARAMETER(yoffset);
  10919. UNUSED_PARAMETER(zoffset);
  10920. UNUSED_PARAMETER(x);
  10921. UNUSED_PARAMETER(y);
  10922. UNUSED_PARAMETER(width);
  10923. UNUSED_PARAMETER(height);
  10924. Warning( "glCopyTextureSubImage3DEXT", " not available." );
  10925. }
  10926. static void REGAL_CALL glDisableClientStateIndexedEXT(GLenum array, GLuint index)
  10927. {
  10928. UNUSED_PARAMETER(array);
  10929. UNUSED_PARAMETER(index);
  10930. Warning( "glDisableClientStateIndexedEXT", " not available." );
  10931. }
  10932. static void REGAL_CALL glDisableClientStateiEXT(GLenum array, GLuint index)
  10933. {
  10934. UNUSED_PARAMETER(array);
  10935. UNUSED_PARAMETER(index);
  10936. Warning( "glDisableClientStateiEXT", " not available." );
  10937. }
  10938. static void REGAL_CALL glDisableVertexArrayAttribEXT(GLuint vaobj, GLenum array)
  10939. {
  10940. UNUSED_PARAMETER(vaobj);
  10941. UNUSED_PARAMETER(array);
  10942. Warning( "glDisableVertexArrayAttribEXT", " not available." );
  10943. }
  10944. static void REGAL_CALL glDisableVertexArrayEXT(GLuint vaobj, GLenum array)
  10945. {
  10946. UNUSED_PARAMETER(vaobj);
  10947. UNUSED_PARAMETER(array);
  10948. Warning( "glDisableVertexArrayEXT", " not available." );
  10949. }
  10950. static void REGAL_CALL glEnableClientStateIndexedEXT(GLenum array, GLuint index)
  10951. {
  10952. UNUSED_PARAMETER(array);
  10953. UNUSED_PARAMETER(index);
  10954. Warning( "glEnableClientStateIndexedEXT", " not available." );
  10955. }
  10956. static void REGAL_CALL glEnableClientStateiEXT(GLenum array, GLuint index)
  10957. {
  10958. UNUSED_PARAMETER(array);
  10959. UNUSED_PARAMETER(index);
  10960. Warning( "glEnableClientStateiEXT", " not available." );
  10961. }
  10962. static void REGAL_CALL glEnableVertexArrayAttribEXT(GLuint vaobj, GLenum array)
  10963. {
  10964. UNUSED_PARAMETER(vaobj);
  10965. UNUSED_PARAMETER(array);
  10966. Warning( "glEnableVertexArrayAttribEXT", " not available." );
  10967. }
  10968. static void REGAL_CALL glEnableVertexArrayEXT(GLuint vaobj, GLenum array)
  10969. {
  10970. UNUSED_PARAMETER(vaobj);
  10971. UNUSED_PARAMETER(array);
  10972. Warning( "glEnableVertexArrayEXT", " not available." );
  10973. }
  10974. static void REGAL_CALL glFlushMappedNamedBufferRangeEXT(GLuint buffer, GLintptr offset, GLsizeiptr length)
  10975. {
  10976. UNUSED_PARAMETER(buffer);
  10977. UNUSED_PARAMETER(offset);
  10978. UNUSED_PARAMETER(length);
  10979. Warning( "glFlushMappedNamedBufferRangeEXT", " not available." );
  10980. }
  10981. static void REGAL_CALL glFramebufferDrawBufferEXT(GLuint framebuffer, GLenum mode)
  10982. {
  10983. UNUSED_PARAMETER(framebuffer);
  10984. UNUSED_PARAMETER(mode);
  10985. Warning( "glFramebufferDrawBufferEXT", " not available." );
  10986. }
  10987. static void REGAL_CALL glFramebufferDrawBuffersEXT(GLuint framebuffer, GLsizei n, const GLenum *bufs)
  10988. {
  10989. UNUSED_PARAMETER(framebuffer);
  10990. UNUSED_PARAMETER(n);
  10991. UNUSED_PARAMETER(bufs);
  10992. Warning( "glFramebufferDrawBuffersEXT", " not available." );
  10993. }
  10994. static void REGAL_CALL glFramebufferReadBufferEXT(GLuint framebuffer, GLenum mode)
  10995. {
  10996. UNUSED_PARAMETER(framebuffer);
  10997. UNUSED_PARAMETER(mode);
  10998. Warning( "glFramebufferReadBufferEXT", " not available." );
  10999. }
  11000. static void REGAL_CALL glGenerateMultiTexMipmapEXT(GLenum texunit, GLenum target)
  11001. {
  11002. UNUSED_PARAMETER(texunit);
  11003. UNUSED_PARAMETER(target);
  11004. Warning( "glGenerateMultiTexMipmapEXT", " not available." );
  11005. }
  11006. static void REGAL_CALL glGenerateTextureMipmapEXT(GLuint texture, GLenum target)
  11007. {
  11008. UNUSED_PARAMETER(texture);
  11009. UNUSED_PARAMETER(target);
  11010. Warning( "glGenerateTextureMipmapEXT", " not available." );
  11011. }
  11012. static void REGAL_CALL glGetCompressedMultiTexImageEXT(GLenum texunit, GLenum target, GLint lod, GLvoid *img)
  11013. {
  11014. UNUSED_PARAMETER(texunit);
  11015. UNUSED_PARAMETER(target);
  11016. UNUSED_PARAMETER(lod);
  11017. UNUSED_PARAMETER(img);
  11018. Warning( "glGetCompressedMultiTexImageEXT", " not available." );
  11019. }
  11020. static void REGAL_CALL glGetCompressedTextureImageEXT(GLuint texture, GLenum target, GLint lod, GLvoid *img)
  11021. {
  11022. UNUSED_PARAMETER(texture);
  11023. UNUSED_PARAMETER(target);
  11024. UNUSED_PARAMETER(lod);
  11025. UNUSED_PARAMETER(img);
  11026. Warning( "glGetCompressedTextureImageEXT", " not available." );
  11027. }
  11028. static void REGAL_CALL glGetDoubleIndexedvEXT(GLenum target, GLuint index, GLdouble *data)
  11029. {
  11030. UNUSED_PARAMETER(target);
  11031. UNUSED_PARAMETER(index);
  11032. UNUSED_PARAMETER(data);
  11033. Warning( "glGetDoubleIndexedvEXT", " not available." );
  11034. }
  11035. static void REGAL_CALL glGetDoublei_vEXT(GLenum target, GLuint index, GLdouble *data)
  11036. {
  11037. UNUSED_PARAMETER(target);
  11038. UNUSED_PARAMETER(index);
  11039. UNUSED_PARAMETER(data);
  11040. Warning( "glGetDoublei_vEXT", " not available." );
  11041. }
  11042. static void REGAL_CALL glGetFloatIndexedvEXT(GLenum target, GLuint index, GLfloat *data)
  11043. {
  11044. UNUSED_PARAMETER(target);
  11045. UNUSED_PARAMETER(index);
  11046. UNUSED_PARAMETER(data);
  11047. Warning( "glGetFloatIndexedvEXT", " not available." );
  11048. }
  11049. static void REGAL_CALL glGetFloati_vEXT(GLenum target, GLuint index, GLfloat *data)
  11050. {
  11051. UNUSED_PARAMETER(target);
  11052. UNUSED_PARAMETER(index);
  11053. UNUSED_PARAMETER(data);
  11054. Warning( "glGetFloati_vEXT", " not available." );
  11055. }
  11056. static void REGAL_CALL glGetFramebufferParameterivEXT(GLuint framebuffer, GLenum pname, GLint *params)
  11057. {
  11058. UNUSED_PARAMETER(framebuffer);
  11059. UNUSED_PARAMETER(pname);
  11060. UNUSED_PARAMETER(params);
  11061. Warning( "glGetFramebufferParameterivEXT", " not available." );
  11062. }
  11063. static void REGAL_CALL glGetMultiTexEnvfvEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat *params)
  11064. {
  11065. UNUSED_PARAMETER(texunit);
  11066. UNUSED_PARAMETER(target);
  11067. UNUSED_PARAMETER(pname);
  11068. UNUSED_PARAMETER(params);
  11069. Warning( "glGetMultiTexEnvfvEXT", " not available." );
  11070. }
  11071. static void REGAL_CALL glGetMultiTexEnvivEXT(GLenum texunit, GLenum target, GLenum pname, GLint *params)
  11072. {
  11073. UNUSED_PARAMETER(texunit);
  11074. UNUSED_PARAMETER(target);
  11075. UNUSED_PARAMETER(pname);
  11076. UNUSED_PARAMETER(params);
  11077. Warning( "glGetMultiTexEnvivEXT", " not available." );
  11078. }
  11079. static void REGAL_CALL glGetMultiTexGendvEXT(GLenum texunit, GLenum coord, GLenum pname, GLdouble *params)
  11080. {
  11081. UNUSED_PARAMETER(texunit);
  11082. UNUSED_PARAMETER(coord);
  11083. UNUSED_PARAMETER(pname);
  11084. UNUSED_PARAMETER(params);
  11085. Warning( "glGetMultiTexGendvEXT", " not available." );
  11086. }
  11087. static void REGAL_CALL glGetMultiTexGenfvEXT(GLenum texunit, GLenum coord, GLenum pname, GLfloat *params)
  11088. {
  11089. UNUSED_PARAMETER(texunit);
  11090. UNUSED_PARAMETER(coord);
  11091. UNUSED_PARAMETER(pname);
  11092. UNUSED_PARAMETER(params);
  11093. Warning( "glGetMultiTexGenfvEXT", " not available." );
  11094. }
  11095. static void REGAL_CALL glGetMultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, GLint *params)
  11096. {
  11097. UNUSED_PARAMETER(texunit);
  11098. UNUSED_PARAMETER(coord);
  11099. UNUSED_PARAMETER(pname);
  11100. UNUSED_PARAMETER(params);
  11101. Warning( "glGetMultiTexGenivEXT", " not available." );
  11102. }
  11103. static void REGAL_CALL glGetMultiTexImageEXT(GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels)
  11104. {
  11105. UNUSED_PARAMETER(texunit);
  11106. UNUSED_PARAMETER(target);
  11107. UNUSED_PARAMETER(level);
  11108. UNUSED_PARAMETER(format);
  11109. UNUSED_PARAMETER(type);
  11110. UNUSED_PARAMETER(pixels);
  11111. Warning( "glGetMultiTexImageEXT", " not available." );
  11112. }
  11113. static void REGAL_CALL glGetMultiTexLevelParameterfvEXT(GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params)
  11114. {
  11115. UNUSED_PARAMETER(texunit);
  11116. UNUSED_PARAMETER(target);
  11117. UNUSED_PARAMETER(level);
  11118. UNUSED_PARAMETER(pname);
  11119. UNUSED_PARAMETER(params);
  11120. Warning( "glGetMultiTexLevelParameterfvEXT", " not available." );
  11121. }
  11122. static void REGAL_CALL glGetMultiTexLevelParameterivEXT(GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params)
  11123. {
  11124. UNUSED_PARAMETER(texunit);
  11125. UNUSED_PARAMETER(target);
  11126. UNUSED_PARAMETER(level);
  11127. UNUSED_PARAMETER(pname);
  11128. UNUSED_PARAMETER(params);
  11129. Warning( "glGetMultiTexLevelParameterivEXT", " not available." );
  11130. }
  11131. static void REGAL_CALL glGetMultiTexParameterIivEXT(GLenum texunit, GLenum target, GLenum pname, GLint *params)
  11132. {
  11133. UNUSED_PARAMETER(texunit);
  11134. UNUSED_PARAMETER(target);
  11135. UNUSED_PARAMETER(pname);
  11136. UNUSED_PARAMETER(params);
  11137. Warning( "glGetMultiTexParameterIivEXT", " not available." );
  11138. }
  11139. static void REGAL_CALL glGetMultiTexParameterIuivEXT(GLenum texunit, GLenum target, GLenum pname, GLuint *params)
  11140. {
  11141. UNUSED_PARAMETER(texunit);
  11142. UNUSED_PARAMETER(target);
  11143. UNUSED_PARAMETER(pname);
  11144. UNUSED_PARAMETER(params);
  11145. Warning( "glGetMultiTexParameterIuivEXT", " not available." );
  11146. }
  11147. static void REGAL_CALL glGetMultiTexParameterfvEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat *params)
  11148. {
  11149. UNUSED_PARAMETER(texunit);
  11150. UNUSED_PARAMETER(target);
  11151. UNUSED_PARAMETER(pname);
  11152. UNUSED_PARAMETER(params);
  11153. Warning( "glGetMultiTexParameterfvEXT", " not available." );
  11154. }
  11155. static void REGAL_CALL glGetMultiTexParameterivEXT(GLenum texunit, GLenum target, GLenum pname, GLint *params)
  11156. {
  11157. UNUSED_PARAMETER(texunit);
  11158. UNUSED_PARAMETER(target);
  11159. UNUSED_PARAMETER(pname);
  11160. UNUSED_PARAMETER(params);
  11161. Warning( "glGetMultiTexParameterivEXT", " not available." );
  11162. }
  11163. static void REGAL_CALL glGetNamedBufferParameterivEXT(GLuint buffer, GLenum pname, GLint *params)
  11164. {
  11165. UNUSED_PARAMETER(buffer);
  11166. UNUSED_PARAMETER(pname);
  11167. UNUSED_PARAMETER(params);
  11168. Warning( "glGetNamedBufferParameterivEXT", " not available." );
  11169. }
  11170. static void REGAL_CALL glGetNamedBufferPointervEXT(GLuint buffer, GLenum pname, GLvoid **params)
  11171. {
  11172. UNUSED_PARAMETER(buffer);
  11173. UNUSED_PARAMETER(pname);
  11174. UNUSED_PARAMETER(params);
  11175. Warning( "glGetNamedBufferPointervEXT", " not available." );
  11176. }
  11177. static void REGAL_CALL glGetNamedBufferSubDataEXT(GLuint buffer, GLintptr offset, GLsizeiptr size, GLvoid *data)
  11178. {
  11179. UNUSED_PARAMETER(buffer);
  11180. UNUSED_PARAMETER(offset);
  11181. UNUSED_PARAMETER(size);
  11182. UNUSED_PARAMETER(data);
  11183. Warning( "glGetNamedBufferSubDataEXT", " not available." );
  11184. }
  11185. static void REGAL_CALL glGetNamedFramebufferAttachmentParameterivEXT(GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params)
  11186. {
  11187. UNUSED_PARAMETER(framebuffer);
  11188. UNUSED_PARAMETER(attachment);
  11189. UNUSED_PARAMETER(pname);
  11190. UNUSED_PARAMETER(params);
  11191. Warning( "glGetNamedFramebufferAttachmentParameterivEXT", " not available." );
  11192. }
  11193. static void REGAL_CALL glGetNamedProgramLocalParameterIivEXT(GLuint program, GLenum target, GLuint index, GLint *params)
  11194. {
  11195. UNUSED_PARAMETER(program);
  11196. UNUSED_PARAMETER(target);
  11197. UNUSED_PARAMETER(index);
  11198. UNUSED_PARAMETER(params);
  11199. Warning( "glGetNamedProgramLocalParameterIivEXT", " not available." );
  11200. }
  11201. static void REGAL_CALL glGetNamedProgramLocalParameterIuivEXT(GLuint program, GLenum target, GLuint index, GLuint *params)
  11202. {
  11203. UNUSED_PARAMETER(program);
  11204. UNUSED_PARAMETER(target);
  11205. UNUSED_PARAMETER(index);
  11206. UNUSED_PARAMETER(params);
  11207. Warning( "glGetNamedProgramLocalParameterIuivEXT", " not available." );
  11208. }
  11209. static void REGAL_CALL glGetNamedProgramLocalParameterdvEXT(GLuint program, GLenum target, GLuint index, GLdouble *params)
  11210. {
  11211. UNUSED_PARAMETER(program);
  11212. UNUSED_PARAMETER(target);
  11213. UNUSED_PARAMETER(index);
  11214. UNUSED_PARAMETER(params);
  11215. Warning( "glGetNamedProgramLocalParameterdvEXT", " not available." );
  11216. }
  11217. static void REGAL_CALL glGetNamedProgramLocalParameterfvEXT(GLuint program, GLenum target, GLuint index, GLfloat *params)
  11218. {
  11219. UNUSED_PARAMETER(program);
  11220. UNUSED_PARAMETER(target);
  11221. UNUSED_PARAMETER(index);
  11222. UNUSED_PARAMETER(params);
  11223. Warning( "glGetNamedProgramLocalParameterfvEXT", " not available." );
  11224. }
  11225. static void REGAL_CALL glGetNamedProgramStringEXT(GLuint program, GLenum target, GLenum pname, GLvoid *string)
  11226. {
  11227. UNUSED_PARAMETER(program);
  11228. UNUSED_PARAMETER(target);
  11229. UNUSED_PARAMETER(pname);
  11230. UNUSED_PARAMETER(string);
  11231. Warning( "glGetNamedProgramStringEXT", " not available." );
  11232. }
  11233. static void REGAL_CALL glGetNamedProgramivEXT(GLuint program, GLenum target, GLenum pname, GLint *params)
  11234. {
  11235. UNUSED_PARAMETER(program);
  11236. UNUSED_PARAMETER(target);
  11237. UNUSED_PARAMETER(pname);
  11238. UNUSED_PARAMETER(params);
  11239. Warning( "glGetNamedProgramivEXT", " not available." );
  11240. }
  11241. static void REGAL_CALL glGetNamedRenderbufferParameterivEXT(GLuint renderbuffer, GLenum pname, GLint *params)
  11242. {
  11243. UNUSED_PARAMETER(renderbuffer);
  11244. UNUSED_PARAMETER(pname);
  11245. UNUSED_PARAMETER(params);
  11246. Warning( "glGetNamedRenderbufferParameterivEXT", " not available." );
  11247. }
  11248. static void REGAL_CALL glGetPointerIndexedvEXT(GLenum target, GLuint index, GLvoid **data)
  11249. {
  11250. UNUSED_PARAMETER(target);
  11251. UNUSED_PARAMETER(index);
  11252. UNUSED_PARAMETER(data);
  11253. Warning( "glGetPointerIndexedvEXT", " not available." );
  11254. }
  11255. static void REGAL_CALL glGetPointeri_vEXT(GLenum pname, GLuint index, GLvoid **params)
  11256. {
  11257. UNUSED_PARAMETER(pname);
  11258. UNUSED_PARAMETER(index);
  11259. UNUSED_PARAMETER(params);
  11260. Warning( "glGetPointeri_vEXT", " not available." );
  11261. }
  11262. static void REGAL_CALL glGetTextureImageEXT(GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels)
  11263. {
  11264. UNUSED_PARAMETER(texture);
  11265. UNUSED_PARAMETER(target);
  11266. UNUSED_PARAMETER(level);
  11267. UNUSED_PARAMETER(format);
  11268. UNUSED_PARAMETER(type);
  11269. UNUSED_PARAMETER(pixels);
  11270. Warning( "glGetTextureImageEXT", " not available." );
  11271. }
  11272. static void REGAL_CALL glGetTextureLevelParameterfvEXT(GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params)
  11273. {
  11274. UNUSED_PARAMETER(texture);
  11275. UNUSED_PARAMETER(target);
  11276. UNUSED_PARAMETER(level);
  11277. UNUSED_PARAMETER(pname);
  11278. UNUSED_PARAMETER(params);
  11279. Warning( "glGetTextureLevelParameterfvEXT", " not available." );
  11280. }
  11281. static void REGAL_CALL glGetTextureLevelParameterivEXT(GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params)
  11282. {
  11283. UNUSED_PARAMETER(texture);
  11284. UNUSED_PARAMETER(target);
  11285. UNUSED_PARAMETER(level);
  11286. UNUSED_PARAMETER(pname);
  11287. UNUSED_PARAMETER(params);
  11288. Warning( "glGetTextureLevelParameterivEXT", " not available." );
  11289. }
  11290. static void REGAL_CALL glGetTextureParameterIivEXT(GLuint texture, GLenum target, GLenum pname, GLint *params)
  11291. {
  11292. UNUSED_PARAMETER(texture);
  11293. UNUSED_PARAMETER(target);
  11294. UNUSED_PARAMETER(pname);
  11295. UNUSED_PARAMETER(params);
  11296. Warning( "glGetTextureParameterIivEXT", " not available." );
  11297. }
  11298. static void REGAL_CALL glGetTextureParameterIuivEXT(GLuint texture, GLenum target, GLenum pname, GLuint *params)
  11299. {
  11300. UNUSED_PARAMETER(texture);
  11301. UNUSED_PARAMETER(target);
  11302. UNUSED_PARAMETER(pname);
  11303. UNUSED_PARAMETER(params);
  11304. Warning( "glGetTextureParameterIuivEXT", " not available." );
  11305. }
  11306. static void REGAL_CALL glGetTextureParameterfvEXT(GLuint texture, GLenum target, GLenum pname, GLfloat *params)
  11307. {
  11308. UNUSED_PARAMETER(texture);
  11309. UNUSED_PARAMETER(target);
  11310. UNUSED_PARAMETER(pname);
  11311. UNUSED_PARAMETER(params);
  11312. Warning( "glGetTextureParameterfvEXT", " not available." );
  11313. }
  11314. static void REGAL_CALL glGetTextureParameterivEXT(GLuint texture, GLenum target, GLenum pname, GLint *params)
  11315. {
  11316. UNUSED_PARAMETER(texture);
  11317. UNUSED_PARAMETER(target);
  11318. UNUSED_PARAMETER(pname);
  11319. UNUSED_PARAMETER(params);
  11320. Warning( "glGetTextureParameterivEXT", " not available." );
  11321. }
  11322. static void REGAL_CALL glGetVertexArrayIntegeri_vEXT(GLuint vaobj, GLuint index, GLenum pname, GLint *param)
  11323. {
  11324. UNUSED_PARAMETER(vaobj);
  11325. UNUSED_PARAMETER(index);
  11326. UNUSED_PARAMETER(pname);
  11327. UNUSED_PARAMETER(param);
  11328. Warning( "glGetVertexArrayIntegeri_vEXT", " not available." );
  11329. }
  11330. static void REGAL_CALL glGetVertexArrayIntegervEXT(GLuint vaobj, GLenum pname, GLint *param)
  11331. {
  11332. UNUSED_PARAMETER(vaobj);
  11333. UNUSED_PARAMETER(pname);
  11334. UNUSED_PARAMETER(param);
  11335. Warning( "glGetVertexArrayIntegervEXT", " not available." );
  11336. }
  11337. static void REGAL_CALL glGetVertexArrayPointeri_vEXT(GLuint vaobj, GLuint index, GLenum pname, GLvoid **param)
  11338. {
  11339. UNUSED_PARAMETER(vaobj);
  11340. UNUSED_PARAMETER(index);
  11341. UNUSED_PARAMETER(pname);
  11342. UNUSED_PARAMETER(param);
  11343. Warning( "glGetVertexArrayPointeri_vEXT", " not available." );
  11344. }
  11345. static void REGAL_CALL glGetVertexArrayPointervEXT(GLuint vaobj, GLenum pname, GLvoid **param)
  11346. {
  11347. UNUSED_PARAMETER(vaobj);
  11348. UNUSED_PARAMETER(pname);
  11349. UNUSED_PARAMETER(param);
  11350. Warning( "glGetVertexArrayPointervEXT", " not available." );
  11351. }
  11352. static GLvoid *REGAL_CALL glMapNamedBufferEXT(GLuint buffer, GLenum access)
  11353. {
  11354. UNUSED_PARAMETER(buffer);
  11355. UNUSED_PARAMETER(access);
  11356. Warning( "glMapNamedBufferEXT", " not available." );
  11357. return NULL;
  11358. }
  11359. static GLvoid *REGAL_CALL glMapNamedBufferRangeEXT(GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access)
  11360. {
  11361. UNUSED_PARAMETER(buffer);
  11362. UNUSED_PARAMETER(offset);
  11363. UNUSED_PARAMETER(length);
  11364. UNUSED_PARAMETER(access);
  11365. Warning( "glMapNamedBufferRangeEXT", " not available." );
  11366. return NULL;
  11367. }
  11368. static void REGAL_CALL glMatrixFrustumEXT(GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
  11369. {
  11370. UNUSED_PARAMETER(mode);
  11371. UNUSED_PARAMETER(left);
  11372. UNUSED_PARAMETER(right);
  11373. UNUSED_PARAMETER(bottom);
  11374. UNUSED_PARAMETER(top);
  11375. UNUSED_PARAMETER(zNear);
  11376. UNUSED_PARAMETER(zFar);
  11377. Warning( "glMatrixFrustumEXT", " not available." );
  11378. }
  11379. static void REGAL_CALL glMatrixLoadIdentityEXT(GLenum mode)
  11380. {
  11381. UNUSED_PARAMETER(mode);
  11382. Warning( "glMatrixLoadIdentityEXT", " not available." );
  11383. }
  11384. static void REGAL_CALL glMatrixLoadTransposedEXT(GLenum mode, const GLdouble *m)
  11385. {
  11386. UNUSED_PARAMETER(mode);
  11387. UNUSED_PARAMETER(m);
  11388. Warning( "glMatrixLoadTransposedEXT", " not available." );
  11389. }
  11390. static void REGAL_CALL glMatrixLoadTransposefEXT(GLenum mode, const GLfloat *m)
  11391. {
  11392. UNUSED_PARAMETER(mode);
  11393. UNUSED_PARAMETER(m);
  11394. Warning( "glMatrixLoadTransposefEXT", " not available." );
  11395. }
  11396. static void REGAL_CALL glMatrixLoaddEXT(GLenum mode, const GLdouble *m)
  11397. {
  11398. UNUSED_PARAMETER(mode);
  11399. UNUSED_PARAMETER(m);
  11400. Warning( "glMatrixLoaddEXT", " not available." );
  11401. }
  11402. static void REGAL_CALL glMatrixLoadfEXT(GLenum mode, const GLfloat *m)
  11403. {
  11404. UNUSED_PARAMETER(mode);
  11405. UNUSED_PARAMETER(m);
  11406. Warning( "glMatrixLoadfEXT", " not available." );
  11407. }
  11408. static void REGAL_CALL glMatrixMultTransposedEXT(GLenum mode, const GLdouble *m)
  11409. {
  11410. UNUSED_PARAMETER(mode);
  11411. UNUSED_PARAMETER(m);
  11412. Warning( "glMatrixMultTransposedEXT", " not available." );
  11413. }
  11414. static void REGAL_CALL glMatrixMultTransposefEXT(GLenum mode, const GLfloat *m)
  11415. {
  11416. UNUSED_PARAMETER(mode);
  11417. UNUSED_PARAMETER(m);
  11418. Warning( "glMatrixMultTransposefEXT", " not available." );
  11419. }
  11420. static void REGAL_CALL glMatrixMultdEXT(GLenum mode, const GLdouble *m)
  11421. {
  11422. UNUSED_PARAMETER(mode);
  11423. UNUSED_PARAMETER(m);
  11424. Warning( "glMatrixMultdEXT", " not available." );
  11425. }
  11426. static void REGAL_CALL glMatrixMultfEXT(GLenum mode, const GLfloat *m)
  11427. {
  11428. UNUSED_PARAMETER(mode);
  11429. UNUSED_PARAMETER(m);
  11430. Warning( "glMatrixMultfEXT", " not available." );
  11431. }
  11432. static void REGAL_CALL glMatrixOrthoEXT(GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
  11433. {
  11434. UNUSED_PARAMETER(mode);
  11435. UNUSED_PARAMETER(left);
  11436. UNUSED_PARAMETER(right);
  11437. UNUSED_PARAMETER(bottom);
  11438. UNUSED_PARAMETER(top);
  11439. UNUSED_PARAMETER(zNear);
  11440. UNUSED_PARAMETER(zFar);
  11441. Warning( "glMatrixOrthoEXT", " not available." );
  11442. }
  11443. static void REGAL_CALL glMatrixPopEXT(GLenum mode)
  11444. {
  11445. UNUSED_PARAMETER(mode);
  11446. Warning( "glMatrixPopEXT", " not available." );
  11447. }
  11448. static void REGAL_CALL glMatrixPushEXT(GLenum mode)
  11449. {
  11450. UNUSED_PARAMETER(mode);
  11451. Warning( "glMatrixPushEXT", " not available." );
  11452. }
  11453. static void REGAL_CALL glMatrixRotatedEXT(GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z)
  11454. {
  11455. UNUSED_PARAMETER(mode);
  11456. UNUSED_PARAMETER(angle);
  11457. UNUSED_PARAMETER(x);
  11458. UNUSED_PARAMETER(y);
  11459. UNUSED_PARAMETER(z);
  11460. Warning( "glMatrixRotatedEXT", " not available." );
  11461. }
  11462. static void REGAL_CALL glMatrixRotatefEXT(GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
  11463. {
  11464. UNUSED_PARAMETER(mode);
  11465. UNUSED_PARAMETER(angle);
  11466. UNUSED_PARAMETER(x);
  11467. UNUSED_PARAMETER(y);
  11468. UNUSED_PARAMETER(z);
  11469. Warning( "glMatrixRotatefEXT", " not available." );
  11470. }
  11471. static void REGAL_CALL glMatrixScaledEXT(GLenum mode, GLdouble x, GLdouble y, GLdouble z)
  11472. {
  11473. UNUSED_PARAMETER(mode);
  11474. UNUSED_PARAMETER(x);
  11475. UNUSED_PARAMETER(y);
  11476. UNUSED_PARAMETER(z);
  11477. Warning( "glMatrixScaledEXT", " not available." );
  11478. }
  11479. static void REGAL_CALL glMatrixScalefEXT(GLenum mode, GLfloat x, GLfloat y, GLfloat z)
  11480. {
  11481. UNUSED_PARAMETER(mode);
  11482. UNUSED_PARAMETER(x);
  11483. UNUSED_PARAMETER(y);
  11484. UNUSED_PARAMETER(z);
  11485. Warning( "glMatrixScalefEXT", " not available." );
  11486. }
  11487. static void REGAL_CALL glMatrixTranslatedEXT(GLenum mode, GLdouble x, GLdouble y, GLdouble z)
  11488. {
  11489. UNUSED_PARAMETER(mode);
  11490. UNUSED_PARAMETER(x);
  11491. UNUSED_PARAMETER(y);
  11492. UNUSED_PARAMETER(z);
  11493. Warning( "glMatrixTranslatedEXT", " not available." );
  11494. }
  11495. static void REGAL_CALL glMatrixTranslatefEXT(GLenum mode, GLfloat x, GLfloat y, GLfloat z)
  11496. {
  11497. UNUSED_PARAMETER(mode);
  11498. UNUSED_PARAMETER(x);
  11499. UNUSED_PARAMETER(y);
  11500. UNUSED_PARAMETER(z);
  11501. Warning( "glMatrixTranslatefEXT", " not available." );
  11502. }
  11503. static void REGAL_CALL glMultiTexBufferEXT(GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer)
  11504. {
  11505. UNUSED_PARAMETER(texunit);
  11506. UNUSED_PARAMETER(target);
  11507. UNUSED_PARAMETER(internalformat);
  11508. UNUSED_PARAMETER(buffer);
  11509. Warning( "glMultiTexBufferEXT", " not available." );
  11510. }
  11511. static void REGAL_CALL glMultiTexCoordPointerEXT(GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  11512. {
  11513. UNUSED_PARAMETER(texunit);
  11514. UNUSED_PARAMETER(size);
  11515. UNUSED_PARAMETER(type);
  11516. UNUSED_PARAMETER(stride);
  11517. UNUSED_PARAMETER(pointer);
  11518. Warning( "glMultiTexCoordPointerEXT", " not available." );
  11519. }
  11520. static void REGAL_CALL glMultiTexEnvfEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat param)
  11521. {
  11522. UNUSED_PARAMETER(texunit);
  11523. UNUSED_PARAMETER(target);
  11524. UNUSED_PARAMETER(pname);
  11525. UNUSED_PARAMETER(param);
  11526. Warning( "glMultiTexEnvfEXT", " not available." );
  11527. }
  11528. static void REGAL_CALL glMultiTexEnvfvEXT(GLenum texunit, GLenum target, GLenum pname, const GLfloat *params)
  11529. {
  11530. UNUSED_PARAMETER(texunit);
  11531. UNUSED_PARAMETER(target);
  11532. UNUSED_PARAMETER(pname);
  11533. UNUSED_PARAMETER(params);
  11534. Warning( "glMultiTexEnvfvEXT", " not available." );
  11535. }
  11536. static void REGAL_CALL glMultiTexEnviEXT(GLenum texunit, GLenum target, GLenum pname, GLint param)
  11537. {
  11538. UNUSED_PARAMETER(texunit);
  11539. UNUSED_PARAMETER(target);
  11540. UNUSED_PARAMETER(pname);
  11541. UNUSED_PARAMETER(param);
  11542. Warning( "glMultiTexEnviEXT", " not available." );
  11543. }
  11544. static void REGAL_CALL glMultiTexEnvivEXT(GLenum texunit, GLenum target, GLenum pname, const GLint *params)
  11545. {
  11546. UNUSED_PARAMETER(texunit);
  11547. UNUSED_PARAMETER(target);
  11548. UNUSED_PARAMETER(pname);
  11549. UNUSED_PARAMETER(params);
  11550. Warning( "glMultiTexEnvivEXT", " not available." );
  11551. }
  11552. static void REGAL_CALL glMultiTexGendEXT(GLenum texunit, GLenum coord, GLenum pname, GLdouble param)
  11553. {
  11554. UNUSED_PARAMETER(texunit);
  11555. UNUSED_PARAMETER(coord);
  11556. UNUSED_PARAMETER(pname);
  11557. UNUSED_PARAMETER(param);
  11558. Warning( "glMultiTexGendEXT", " not available." );
  11559. }
  11560. static void REGAL_CALL glMultiTexGendvEXT(GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params)
  11561. {
  11562. UNUSED_PARAMETER(texunit);
  11563. UNUSED_PARAMETER(coord);
  11564. UNUSED_PARAMETER(pname);
  11565. UNUSED_PARAMETER(params);
  11566. Warning( "glMultiTexGendvEXT", " not available." );
  11567. }
  11568. static void REGAL_CALL glMultiTexGenfEXT(GLenum texunit, GLenum coord, GLenum pname, GLfloat param)
  11569. {
  11570. UNUSED_PARAMETER(texunit);
  11571. UNUSED_PARAMETER(coord);
  11572. UNUSED_PARAMETER(pname);
  11573. UNUSED_PARAMETER(param);
  11574. Warning( "glMultiTexGenfEXT", " not available." );
  11575. }
  11576. static void REGAL_CALL glMultiTexGenfvEXT(GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params)
  11577. {
  11578. UNUSED_PARAMETER(texunit);
  11579. UNUSED_PARAMETER(coord);
  11580. UNUSED_PARAMETER(pname);
  11581. UNUSED_PARAMETER(params);
  11582. Warning( "glMultiTexGenfvEXT", " not available." );
  11583. }
  11584. static void REGAL_CALL glMultiTexGeniEXT(GLenum texunit, GLenum coord, GLenum pname, GLint param)
  11585. {
  11586. UNUSED_PARAMETER(texunit);
  11587. UNUSED_PARAMETER(coord);
  11588. UNUSED_PARAMETER(pname);
  11589. UNUSED_PARAMETER(param);
  11590. Warning( "glMultiTexGeniEXT", " not available." );
  11591. }
  11592. static void REGAL_CALL glMultiTexGenivEXT(GLenum texunit, GLenum coord, GLenum pname, const GLint *params)
  11593. {
  11594. UNUSED_PARAMETER(texunit);
  11595. UNUSED_PARAMETER(coord);
  11596. UNUSED_PARAMETER(pname);
  11597. UNUSED_PARAMETER(params);
  11598. Warning( "glMultiTexGenivEXT", " not available." );
  11599. }
  11600. static void REGAL_CALL glMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  11601. {
  11602. UNUSED_PARAMETER(texunit);
  11603. UNUSED_PARAMETER(target);
  11604. UNUSED_PARAMETER(level);
  11605. UNUSED_PARAMETER(internalformat);
  11606. UNUSED_PARAMETER(width);
  11607. UNUSED_PARAMETER(border);
  11608. UNUSED_PARAMETER(format);
  11609. UNUSED_PARAMETER(type);
  11610. UNUSED_PARAMETER(pixels);
  11611. Warning( "glMultiTexImage1DEXT", " not available." );
  11612. }
  11613. static void REGAL_CALL glMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  11614. {
  11615. UNUSED_PARAMETER(texunit);
  11616. UNUSED_PARAMETER(target);
  11617. UNUSED_PARAMETER(level);
  11618. UNUSED_PARAMETER(internalformat);
  11619. UNUSED_PARAMETER(width);
  11620. UNUSED_PARAMETER(height);
  11621. UNUSED_PARAMETER(border);
  11622. UNUSED_PARAMETER(format);
  11623. UNUSED_PARAMETER(type);
  11624. UNUSED_PARAMETER(pixels);
  11625. Warning( "glMultiTexImage2DEXT", " not available." );
  11626. }
  11627. static void REGAL_CALL glMultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  11628. {
  11629. UNUSED_PARAMETER(texunit);
  11630. UNUSED_PARAMETER(target);
  11631. UNUSED_PARAMETER(level);
  11632. UNUSED_PARAMETER(internalformat);
  11633. UNUSED_PARAMETER(width);
  11634. UNUSED_PARAMETER(height);
  11635. UNUSED_PARAMETER(depth);
  11636. UNUSED_PARAMETER(border);
  11637. UNUSED_PARAMETER(format);
  11638. UNUSED_PARAMETER(type);
  11639. UNUSED_PARAMETER(pixels);
  11640. Warning( "glMultiTexImage3DEXT", " not available." );
  11641. }
  11642. static void REGAL_CALL glMultiTexParameterIivEXT(GLenum texunit, GLenum target, GLenum pname, const GLint *params)
  11643. {
  11644. UNUSED_PARAMETER(texunit);
  11645. UNUSED_PARAMETER(target);
  11646. UNUSED_PARAMETER(pname);
  11647. UNUSED_PARAMETER(params);
  11648. Warning( "glMultiTexParameterIivEXT", " not available." );
  11649. }
  11650. static void REGAL_CALL glMultiTexParameterIuivEXT(GLenum texunit, GLenum target, GLenum pname, const GLuint *params)
  11651. {
  11652. UNUSED_PARAMETER(texunit);
  11653. UNUSED_PARAMETER(target);
  11654. UNUSED_PARAMETER(pname);
  11655. UNUSED_PARAMETER(params);
  11656. Warning( "glMultiTexParameterIuivEXT", " not available." );
  11657. }
  11658. static void REGAL_CALL glMultiTexParameterfEXT(GLenum texunit, GLenum target, GLenum pname, GLfloat param)
  11659. {
  11660. UNUSED_PARAMETER(texunit);
  11661. UNUSED_PARAMETER(target);
  11662. UNUSED_PARAMETER(pname);
  11663. UNUSED_PARAMETER(param);
  11664. Warning( "glMultiTexParameterfEXT", " not available." );
  11665. }
  11666. static void REGAL_CALL glMultiTexParameterfvEXT(GLenum texunit, GLenum target, GLenum pname, const GLfloat *param)
  11667. {
  11668. UNUSED_PARAMETER(texunit);
  11669. UNUSED_PARAMETER(target);
  11670. UNUSED_PARAMETER(pname);
  11671. UNUSED_PARAMETER(param);
  11672. Warning( "glMultiTexParameterfvEXT", " not available." );
  11673. }
  11674. static void REGAL_CALL glMultiTexParameteriEXT(GLenum texunit, GLenum target, GLenum pname, GLint param)
  11675. {
  11676. UNUSED_PARAMETER(texunit);
  11677. UNUSED_PARAMETER(target);
  11678. UNUSED_PARAMETER(pname);
  11679. UNUSED_PARAMETER(param);
  11680. Warning( "glMultiTexParameteriEXT", " not available." );
  11681. }
  11682. static void REGAL_CALL glMultiTexParameterivEXT(GLenum texunit, GLenum target, GLenum pname, const GLint *param)
  11683. {
  11684. UNUSED_PARAMETER(texunit);
  11685. UNUSED_PARAMETER(target);
  11686. UNUSED_PARAMETER(pname);
  11687. UNUSED_PARAMETER(param);
  11688. Warning( "glMultiTexParameterivEXT", " not available." );
  11689. }
  11690. static void REGAL_CALL glMultiTexRenderbufferEXT(GLenum texunit, GLenum target, GLuint renderbuffer)
  11691. {
  11692. UNUSED_PARAMETER(texunit);
  11693. UNUSED_PARAMETER(target);
  11694. UNUSED_PARAMETER(renderbuffer);
  11695. Warning( "glMultiTexRenderbufferEXT", " not available." );
  11696. }
  11697. static void REGAL_CALL glMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels)
  11698. {
  11699. UNUSED_PARAMETER(texunit);
  11700. UNUSED_PARAMETER(target);
  11701. UNUSED_PARAMETER(level);
  11702. UNUSED_PARAMETER(xoffset);
  11703. UNUSED_PARAMETER(width);
  11704. UNUSED_PARAMETER(format);
  11705. UNUSED_PARAMETER(type);
  11706. UNUSED_PARAMETER(pixels);
  11707. Warning( "glMultiTexSubImage1DEXT", " not available." );
  11708. }
  11709. static void REGAL_CALL glMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
  11710. {
  11711. UNUSED_PARAMETER(texunit);
  11712. UNUSED_PARAMETER(target);
  11713. UNUSED_PARAMETER(level);
  11714. UNUSED_PARAMETER(xoffset);
  11715. UNUSED_PARAMETER(yoffset);
  11716. UNUSED_PARAMETER(width);
  11717. UNUSED_PARAMETER(height);
  11718. UNUSED_PARAMETER(format);
  11719. UNUSED_PARAMETER(type);
  11720. UNUSED_PARAMETER(pixels);
  11721. Warning( "glMultiTexSubImage2DEXT", " not available." );
  11722. }
  11723. static void REGAL_CALL glMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels)
  11724. {
  11725. UNUSED_PARAMETER(texunit);
  11726. UNUSED_PARAMETER(target);
  11727. UNUSED_PARAMETER(level);
  11728. UNUSED_PARAMETER(xoffset);
  11729. UNUSED_PARAMETER(yoffset);
  11730. UNUSED_PARAMETER(zoffset);
  11731. UNUSED_PARAMETER(width);
  11732. UNUSED_PARAMETER(height);
  11733. UNUSED_PARAMETER(depth);
  11734. UNUSED_PARAMETER(format);
  11735. UNUSED_PARAMETER(type);
  11736. UNUSED_PARAMETER(pixels);
  11737. Warning( "glMultiTexSubImage3DEXT", " not available." );
  11738. }
  11739. static void REGAL_CALL glNamedBufferDataEXT(GLuint buffer, GLsizeiptr size, const GLvoid *data, GLenum usage)
  11740. {
  11741. UNUSED_PARAMETER(buffer);
  11742. UNUSED_PARAMETER(size);
  11743. UNUSED_PARAMETER(data);
  11744. UNUSED_PARAMETER(usage);
  11745. Warning( "glNamedBufferDataEXT", " not available." );
  11746. }
  11747. static void REGAL_CALL glNamedBufferSubDataEXT(GLuint buffer, GLintptr offset, GLsizeiptr size, const GLvoid *data)
  11748. {
  11749. UNUSED_PARAMETER(buffer);
  11750. UNUSED_PARAMETER(offset);
  11751. UNUSED_PARAMETER(size);
  11752. UNUSED_PARAMETER(data);
  11753. Warning( "glNamedBufferSubDataEXT", " not available." );
  11754. }
  11755. static void REGAL_CALL glNamedCopyBufferSubDataEXT(GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size)
  11756. {
  11757. UNUSED_PARAMETER(readBuffer);
  11758. UNUSED_PARAMETER(writeBuffer);
  11759. UNUSED_PARAMETER(readOffset);
  11760. UNUSED_PARAMETER(writeOffset);
  11761. UNUSED_PARAMETER(size);
  11762. Warning( "glNamedCopyBufferSubDataEXT", " not available." );
  11763. }
  11764. static void REGAL_CALL glNamedFramebufferRenderbufferEXT(GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)
  11765. {
  11766. UNUSED_PARAMETER(framebuffer);
  11767. UNUSED_PARAMETER(attachment);
  11768. UNUSED_PARAMETER(renderbuffertarget);
  11769. UNUSED_PARAMETER(renderbuffer);
  11770. Warning( "glNamedFramebufferRenderbufferEXT", " not available." );
  11771. }
  11772. static void REGAL_CALL glNamedFramebufferTexture1DEXT(GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
  11773. {
  11774. UNUSED_PARAMETER(framebuffer);
  11775. UNUSED_PARAMETER(attachment);
  11776. UNUSED_PARAMETER(textarget);
  11777. UNUSED_PARAMETER(texture);
  11778. UNUSED_PARAMETER(level);
  11779. Warning( "glNamedFramebufferTexture1DEXT", " not available." );
  11780. }
  11781. static void REGAL_CALL glNamedFramebufferTexture2DEXT(GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
  11782. {
  11783. UNUSED_PARAMETER(framebuffer);
  11784. UNUSED_PARAMETER(attachment);
  11785. UNUSED_PARAMETER(textarget);
  11786. UNUSED_PARAMETER(texture);
  11787. UNUSED_PARAMETER(level);
  11788. Warning( "glNamedFramebufferTexture2DEXT", " not available." );
  11789. }
  11790. static void REGAL_CALL glNamedFramebufferTexture3DEXT(GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset)
  11791. {
  11792. UNUSED_PARAMETER(framebuffer);
  11793. UNUSED_PARAMETER(attachment);
  11794. UNUSED_PARAMETER(textarget);
  11795. UNUSED_PARAMETER(texture);
  11796. UNUSED_PARAMETER(level);
  11797. UNUSED_PARAMETER(zoffset);
  11798. Warning( "glNamedFramebufferTexture3DEXT", " not available." );
  11799. }
  11800. static void REGAL_CALL glNamedFramebufferTextureEXT(GLuint framebuffer, GLenum attachment, GLuint texture, GLint level)
  11801. {
  11802. UNUSED_PARAMETER(framebuffer);
  11803. UNUSED_PARAMETER(attachment);
  11804. UNUSED_PARAMETER(texture);
  11805. UNUSED_PARAMETER(level);
  11806. Warning( "glNamedFramebufferTextureEXT", " not available." );
  11807. }
  11808. static void REGAL_CALL glNamedFramebufferTextureFaceEXT(GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face)
  11809. {
  11810. UNUSED_PARAMETER(framebuffer);
  11811. UNUSED_PARAMETER(attachment);
  11812. UNUSED_PARAMETER(texture);
  11813. UNUSED_PARAMETER(level);
  11814. UNUSED_PARAMETER(face);
  11815. Warning( "glNamedFramebufferTextureFaceEXT", " not available." );
  11816. }
  11817. static void REGAL_CALL glNamedFramebufferTextureLayerEXT(GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer)
  11818. {
  11819. UNUSED_PARAMETER(framebuffer);
  11820. UNUSED_PARAMETER(attachment);
  11821. UNUSED_PARAMETER(texture);
  11822. UNUSED_PARAMETER(level);
  11823. UNUSED_PARAMETER(layer);
  11824. Warning( "glNamedFramebufferTextureLayerEXT", " not available." );
  11825. }
  11826. static void REGAL_CALL glNamedProgramLocalParameter4dEXT(GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  11827. {
  11828. UNUSED_PARAMETER(program);
  11829. UNUSED_PARAMETER(target);
  11830. UNUSED_PARAMETER(index);
  11831. UNUSED_PARAMETER(x);
  11832. UNUSED_PARAMETER(y);
  11833. UNUSED_PARAMETER(z);
  11834. UNUSED_PARAMETER(w);
  11835. Warning( "glNamedProgramLocalParameter4dEXT", " not available." );
  11836. }
  11837. static void REGAL_CALL glNamedProgramLocalParameter4dvEXT(GLuint program, GLenum target, GLuint index, const GLdouble *params)
  11838. {
  11839. UNUSED_PARAMETER(program);
  11840. UNUSED_PARAMETER(target);
  11841. UNUSED_PARAMETER(index);
  11842. UNUSED_PARAMETER(params);
  11843. Warning( "glNamedProgramLocalParameter4dvEXT", " not available." );
  11844. }
  11845. static void REGAL_CALL glNamedProgramLocalParameter4fEXT(GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
  11846. {
  11847. UNUSED_PARAMETER(program);
  11848. UNUSED_PARAMETER(target);
  11849. UNUSED_PARAMETER(index);
  11850. UNUSED_PARAMETER(x);
  11851. UNUSED_PARAMETER(y);
  11852. UNUSED_PARAMETER(z);
  11853. UNUSED_PARAMETER(w);
  11854. Warning( "glNamedProgramLocalParameter4fEXT", " not available." );
  11855. }
  11856. static void REGAL_CALL glNamedProgramLocalParameter4fvEXT(GLuint program, GLenum target, GLuint index, const GLfloat *params)
  11857. {
  11858. UNUSED_PARAMETER(program);
  11859. UNUSED_PARAMETER(target);
  11860. UNUSED_PARAMETER(index);
  11861. UNUSED_PARAMETER(params);
  11862. Warning( "glNamedProgramLocalParameter4fvEXT", " not available." );
  11863. }
  11864. static void REGAL_CALL glNamedProgramLocalParameterI4iEXT(GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w)
  11865. {
  11866. UNUSED_PARAMETER(program);
  11867. UNUSED_PARAMETER(target);
  11868. UNUSED_PARAMETER(index);
  11869. UNUSED_PARAMETER(x);
  11870. UNUSED_PARAMETER(y);
  11871. UNUSED_PARAMETER(z);
  11872. UNUSED_PARAMETER(w);
  11873. Warning( "glNamedProgramLocalParameterI4iEXT", " not available." );
  11874. }
  11875. static void REGAL_CALL glNamedProgramLocalParameterI4ivEXT(GLuint program, GLenum target, GLuint index, const GLint *params)
  11876. {
  11877. UNUSED_PARAMETER(program);
  11878. UNUSED_PARAMETER(target);
  11879. UNUSED_PARAMETER(index);
  11880. UNUSED_PARAMETER(params);
  11881. Warning( "glNamedProgramLocalParameterI4ivEXT", " not available." );
  11882. }
  11883. static void REGAL_CALL glNamedProgramLocalParameterI4uiEXT(GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)
  11884. {
  11885. UNUSED_PARAMETER(program);
  11886. UNUSED_PARAMETER(target);
  11887. UNUSED_PARAMETER(index);
  11888. UNUSED_PARAMETER(x);
  11889. UNUSED_PARAMETER(y);
  11890. UNUSED_PARAMETER(z);
  11891. UNUSED_PARAMETER(w);
  11892. Warning( "glNamedProgramLocalParameterI4uiEXT", " not available." );
  11893. }
  11894. static void REGAL_CALL glNamedProgramLocalParameterI4uivEXT(GLuint program, GLenum target, GLuint index, const GLuint *params)
  11895. {
  11896. UNUSED_PARAMETER(program);
  11897. UNUSED_PARAMETER(target);
  11898. UNUSED_PARAMETER(index);
  11899. UNUSED_PARAMETER(params);
  11900. Warning( "glNamedProgramLocalParameterI4uivEXT", " not available." );
  11901. }
  11902. static void REGAL_CALL glNamedProgramLocalParameters4fvEXT(GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params)
  11903. {
  11904. UNUSED_PARAMETER(program);
  11905. UNUSED_PARAMETER(target);
  11906. UNUSED_PARAMETER(index);
  11907. UNUSED_PARAMETER(count);
  11908. UNUSED_PARAMETER(params);
  11909. Warning( "glNamedProgramLocalParameters4fvEXT", " not available." );
  11910. }
  11911. static void REGAL_CALL glNamedProgramLocalParametersI4ivEXT(GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params)
  11912. {
  11913. UNUSED_PARAMETER(program);
  11914. UNUSED_PARAMETER(target);
  11915. UNUSED_PARAMETER(index);
  11916. UNUSED_PARAMETER(count);
  11917. UNUSED_PARAMETER(params);
  11918. Warning( "glNamedProgramLocalParametersI4ivEXT", " not available." );
  11919. }
  11920. static void REGAL_CALL glNamedProgramLocalParametersI4uivEXT(GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params)
  11921. {
  11922. UNUSED_PARAMETER(program);
  11923. UNUSED_PARAMETER(target);
  11924. UNUSED_PARAMETER(index);
  11925. UNUSED_PARAMETER(count);
  11926. UNUSED_PARAMETER(params);
  11927. Warning( "glNamedProgramLocalParametersI4uivEXT", " not available." );
  11928. }
  11929. static void REGAL_CALL glNamedProgramStringEXT(GLuint program, GLenum target, GLenum format, GLsizei len, const GLvoid *string)
  11930. {
  11931. UNUSED_PARAMETER(program);
  11932. UNUSED_PARAMETER(target);
  11933. UNUSED_PARAMETER(format);
  11934. UNUSED_PARAMETER(len);
  11935. UNUSED_PARAMETER(string);
  11936. Warning( "glNamedProgramStringEXT", " not available." );
  11937. }
  11938. static void REGAL_CALL glNamedRenderbufferStorageEXT(GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height)
  11939. {
  11940. UNUSED_PARAMETER(renderbuffer);
  11941. UNUSED_PARAMETER(internalformat);
  11942. UNUSED_PARAMETER(width);
  11943. UNUSED_PARAMETER(height);
  11944. Warning( "glNamedRenderbufferStorageEXT", " not available." );
  11945. }
  11946. static void REGAL_CALL glNamedRenderbufferStorageMultisampleCoverageEXT(GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height)
  11947. {
  11948. UNUSED_PARAMETER(renderbuffer);
  11949. UNUSED_PARAMETER(coverageSamples);
  11950. UNUSED_PARAMETER(colorSamples);
  11951. UNUSED_PARAMETER(internalformat);
  11952. UNUSED_PARAMETER(width);
  11953. UNUSED_PARAMETER(height);
  11954. Warning( "glNamedRenderbufferStorageMultisampleCoverageEXT", " not available." );
  11955. }
  11956. static void REGAL_CALL glNamedRenderbufferStorageMultisampleEXT(GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
  11957. {
  11958. UNUSED_PARAMETER(renderbuffer);
  11959. UNUSED_PARAMETER(samples);
  11960. UNUSED_PARAMETER(internalformat);
  11961. UNUSED_PARAMETER(width);
  11962. UNUSED_PARAMETER(height);
  11963. Warning( "glNamedRenderbufferStorageMultisampleEXT", " not available." );
  11964. }
  11965. static void REGAL_CALL glProgramUniform1dEXT(GLuint program, GLint location, GLdouble x)
  11966. {
  11967. UNUSED_PARAMETER(program);
  11968. UNUSED_PARAMETER(location);
  11969. UNUSED_PARAMETER(x);
  11970. Warning( "glProgramUniform1dEXT", " not available." );
  11971. }
  11972. static void REGAL_CALL glProgramUniform1dvEXT(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  11973. {
  11974. UNUSED_PARAMETER(program);
  11975. UNUSED_PARAMETER(location);
  11976. UNUSED_PARAMETER(count);
  11977. UNUSED_PARAMETER(value);
  11978. Warning( "glProgramUniform1dvEXT", " not available." );
  11979. }
  11980. static void REGAL_CALL glProgramUniform1fEXT(GLuint program, GLint location, GLfloat v0)
  11981. {
  11982. UNUSED_PARAMETER(program);
  11983. UNUSED_PARAMETER(location);
  11984. UNUSED_PARAMETER(v0);
  11985. Warning( "glProgramUniform1fEXT", " not available." );
  11986. }
  11987. static void REGAL_CALL glProgramUniform1fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  11988. {
  11989. UNUSED_PARAMETER(program);
  11990. UNUSED_PARAMETER(location);
  11991. UNUSED_PARAMETER(count);
  11992. UNUSED_PARAMETER(value);
  11993. Warning( "glProgramUniform1fvEXT", " not available." );
  11994. }
  11995. static void REGAL_CALL glProgramUniform1iEXT(GLuint program, GLint location, GLint v0)
  11996. {
  11997. UNUSED_PARAMETER(program);
  11998. UNUSED_PARAMETER(location);
  11999. UNUSED_PARAMETER(v0);
  12000. Warning( "glProgramUniform1iEXT", " not available." );
  12001. }
  12002. static void REGAL_CALL glProgramUniform1ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value)
  12003. {
  12004. UNUSED_PARAMETER(program);
  12005. UNUSED_PARAMETER(location);
  12006. UNUSED_PARAMETER(count);
  12007. UNUSED_PARAMETER(value);
  12008. Warning( "glProgramUniform1ivEXT", " not available." );
  12009. }
  12010. static void REGAL_CALL glProgramUniform1uiEXT(GLuint program, GLint location, GLuint v0)
  12011. {
  12012. UNUSED_PARAMETER(program);
  12013. UNUSED_PARAMETER(location);
  12014. UNUSED_PARAMETER(v0);
  12015. Warning( "glProgramUniform1uiEXT", " not available." );
  12016. }
  12017. static void REGAL_CALL glProgramUniform1uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value)
  12018. {
  12019. UNUSED_PARAMETER(program);
  12020. UNUSED_PARAMETER(location);
  12021. UNUSED_PARAMETER(count);
  12022. UNUSED_PARAMETER(value);
  12023. Warning( "glProgramUniform1uivEXT", " not available." );
  12024. }
  12025. static void REGAL_CALL glProgramUniform2dEXT(GLuint program, GLint location, GLdouble x, GLdouble y)
  12026. {
  12027. UNUSED_PARAMETER(program);
  12028. UNUSED_PARAMETER(location);
  12029. UNUSED_PARAMETER(x);
  12030. UNUSED_PARAMETER(y);
  12031. Warning( "glProgramUniform2dEXT", " not available." );
  12032. }
  12033. static void REGAL_CALL glProgramUniform2dvEXT(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  12034. {
  12035. UNUSED_PARAMETER(program);
  12036. UNUSED_PARAMETER(location);
  12037. UNUSED_PARAMETER(count);
  12038. UNUSED_PARAMETER(value);
  12039. Warning( "glProgramUniform2dvEXT", " not available." );
  12040. }
  12041. static void REGAL_CALL glProgramUniform2fEXT(GLuint program, GLint location, GLfloat v0, GLfloat v1)
  12042. {
  12043. UNUSED_PARAMETER(program);
  12044. UNUSED_PARAMETER(location);
  12045. UNUSED_PARAMETER(v0);
  12046. UNUSED_PARAMETER(v1);
  12047. Warning( "glProgramUniform2fEXT", " not available." );
  12048. }
  12049. static void REGAL_CALL glProgramUniform2fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  12050. {
  12051. UNUSED_PARAMETER(program);
  12052. UNUSED_PARAMETER(location);
  12053. UNUSED_PARAMETER(count);
  12054. UNUSED_PARAMETER(value);
  12055. Warning( "glProgramUniform2fvEXT", " not available." );
  12056. }
  12057. static void REGAL_CALL glProgramUniform2iEXT(GLuint program, GLint location, GLint v0, GLint v1)
  12058. {
  12059. UNUSED_PARAMETER(program);
  12060. UNUSED_PARAMETER(location);
  12061. UNUSED_PARAMETER(v0);
  12062. UNUSED_PARAMETER(v1);
  12063. Warning( "glProgramUniform2iEXT", " not available." );
  12064. }
  12065. static void REGAL_CALL glProgramUniform2ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value)
  12066. {
  12067. UNUSED_PARAMETER(program);
  12068. UNUSED_PARAMETER(location);
  12069. UNUSED_PARAMETER(count);
  12070. UNUSED_PARAMETER(value);
  12071. Warning( "glProgramUniform2ivEXT", " not available." );
  12072. }
  12073. static void REGAL_CALL glProgramUniform2uiEXT(GLuint program, GLint location, GLuint v0, GLuint v1)
  12074. {
  12075. UNUSED_PARAMETER(program);
  12076. UNUSED_PARAMETER(location);
  12077. UNUSED_PARAMETER(v0);
  12078. UNUSED_PARAMETER(v1);
  12079. Warning( "glProgramUniform2uiEXT", " not available." );
  12080. }
  12081. static void REGAL_CALL glProgramUniform2uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value)
  12082. {
  12083. UNUSED_PARAMETER(program);
  12084. UNUSED_PARAMETER(location);
  12085. UNUSED_PARAMETER(count);
  12086. UNUSED_PARAMETER(value);
  12087. Warning( "glProgramUniform2uivEXT", " not available." );
  12088. }
  12089. static void REGAL_CALL glProgramUniform3dEXT(GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z)
  12090. {
  12091. UNUSED_PARAMETER(program);
  12092. UNUSED_PARAMETER(location);
  12093. UNUSED_PARAMETER(x);
  12094. UNUSED_PARAMETER(y);
  12095. UNUSED_PARAMETER(z);
  12096. Warning( "glProgramUniform3dEXT", " not available." );
  12097. }
  12098. static void REGAL_CALL glProgramUniform3dvEXT(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  12099. {
  12100. UNUSED_PARAMETER(program);
  12101. UNUSED_PARAMETER(location);
  12102. UNUSED_PARAMETER(count);
  12103. UNUSED_PARAMETER(value);
  12104. Warning( "glProgramUniform3dvEXT", " not available." );
  12105. }
  12106. static void REGAL_CALL glProgramUniform3fEXT(GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2)
  12107. {
  12108. UNUSED_PARAMETER(program);
  12109. UNUSED_PARAMETER(location);
  12110. UNUSED_PARAMETER(v0);
  12111. UNUSED_PARAMETER(v1);
  12112. UNUSED_PARAMETER(v2);
  12113. Warning( "glProgramUniform3fEXT", " not available." );
  12114. }
  12115. static void REGAL_CALL glProgramUniform3fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  12116. {
  12117. UNUSED_PARAMETER(program);
  12118. UNUSED_PARAMETER(location);
  12119. UNUSED_PARAMETER(count);
  12120. UNUSED_PARAMETER(value);
  12121. Warning( "glProgramUniform3fvEXT", " not available." );
  12122. }
  12123. static void REGAL_CALL glProgramUniform3iEXT(GLuint program, GLint location, GLint v0, GLint v1, GLint v2)
  12124. {
  12125. UNUSED_PARAMETER(program);
  12126. UNUSED_PARAMETER(location);
  12127. UNUSED_PARAMETER(v0);
  12128. UNUSED_PARAMETER(v1);
  12129. UNUSED_PARAMETER(v2);
  12130. Warning( "glProgramUniform3iEXT", " not available." );
  12131. }
  12132. static void REGAL_CALL glProgramUniform3ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value)
  12133. {
  12134. UNUSED_PARAMETER(program);
  12135. UNUSED_PARAMETER(location);
  12136. UNUSED_PARAMETER(count);
  12137. UNUSED_PARAMETER(value);
  12138. Warning( "glProgramUniform3ivEXT", " not available." );
  12139. }
  12140. static void REGAL_CALL glProgramUniform3uiEXT(GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2)
  12141. {
  12142. UNUSED_PARAMETER(program);
  12143. UNUSED_PARAMETER(location);
  12144. UNUSED_PARAMETER(v0);
  12145. UNUSED_PARAMETER(v1);
  12146. UNUSED_PARAMETER(v2);
  12147. Warning( "glProgramUniform3uiEXT", " not available." );
  12148. }
  12149. static void REGAL_CALL glProgramUniform3uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value)
  12150. {
  12151. UNUSED_PARAMETER(program);
  12152. UNUSED_PARAMETER(location);
  12153. UNUSED_PARAMETER(count);
  12154. UNUSED_PARAMETER(value);
  12155. Warning( "glProgramUniform3uivEXT", " not available." );
  12156. }
  12157. static void REGAL_CALL glProgramUniform4dEXT(GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  12158. {
  12159. UNUSED_PARAMETER(program);
  12160. UNUSED_PARAMETER(location);
  12161. UNUSED_PARAMETER(x);
  12162. UNUSED_PARAMETER(y);
  12163. UNUSED_PARAMETER(z);
  12164. UNUSED_PARAMETER(w);
  12165. Warning( "glProgramUniform4dEXT", " not available." );
  12166. }
  12167. static void REGAL_CALL glProgramUniform4dvEXT(GLuint program, GLint location, GLsizei count, const GLdouble *value)
  12168. {
  12169. UNUSED_PARAMETER(program);
  12170. UNUSED_PARAMETER(location);
  12171. UNUSED_PARAMETER(count);
  12172. UNUSED_PARAMETER(value);
  12173. Warning( "glProgramUniform4dvEXT", " not available." );
  12174. }
  12175. static void REGAL_CALL glProgramUniform4fEXT(GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3)
  12176. {
  12177. UNUSED_PARAMETER(program);
  12178. UNUSED_PARAMETER(location);
  12179. UNUSED_PARAMETER(v0);
  12180. UNUSED_PARAMETER(v1);
  12181. UNUSED_PARAMETER(v2);
  12182. UNUSED_PARAMETER(v3);
  12183. Warning( "glProgramUniform4fEXT", " not available." );
  12184. }
  12185. static void REGAL_CALL glProgramUniform4fvEXT(GLuint program, GLint location, GLsizei count, const GLfloat *value)
  12186. {
  12187. UNUSED_PARAMETER(program);
  12188. UNUSED_PARAMETER(location);
  12189. UNUSED_PARAMETER(count);
  12190. UNUSED_PARAMETER(value);
  12191. Warning( "glProgramUniform4fvEXT", " not available." );
  12192. }
  12193. static void REGAL_CALL glProgramUniform4iEXT(GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3)
  12194. {
  12195. UNUSED_PARAMETER(program);
  12196. UNUSED_PARAMETER(location);
  12197. UNUSED_PARAMETER(v0);
  12198. UNUSED_PARAMETER(v1);
  12199. UNUSED_PARAMETER(v2);
  12200. UNUSED_PARAMETER(v3);
  12201. Warning( "glProgramUniform4iEXT", " not available." );
  12202. }
  12203. static void REGAL_CALL glProgramUniform4ivEXT(GLuint program, GLint location, GLsizei count, const GLint *value)
  12204. {
  12205. UNUSED_PARAMETER(program);
  12206. UNUSED_PARAMETER(location);
  12207. UNUSED_PARAMETER(count);
  12208. UNUSED_PARAMETER(value);
  12209. Warning( "glProgramUniform4ivEXT", " not available." );
  12210. }
  12211. static void REGAL_CALL glProgramUniform4uiEXT(GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3)
  12212. {
  12213. UNUSED_PARAMETER(program);
  12214. UNUSED_PARAMETER(location);
  12215. UNUSED_PARAMETER(v0);
  12216. UNUSED_PARAMETER(v1);
  12217. UNUSED_PARAMETER(v2);
  12218. UNUSED_PARAMETER(v3);
  12219. Warning( "glProgramUniform4uiEXT", " not available." );
  12220. }
  12221. static void REGAL_CALL glProgramUniform4uivEXT(GLuint program, GLint location, GLsizei count, const GLuint *value)
  12222. {
  12223. UNUSED_PARAMETER(program);
  12224. UNUSED_PARAMETER(location);
  12225. UNUSED_PARAMETER(count);
  12226. UNUSED_PARAMETER(value);
  12227. Warning( "glProgramUniform4uivEXT", " not available." );
  12228. }
  12229. static void REGAL_CALL glProgramUniformMatrix2dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12230. {
  12231. UNUSED_PARAMETER(program);
  12232. UNUSED_PARAMETER(location);
  12233. UNUSED_PARAMETER(count);
  12234. UNUSED_PARAMETER(transpose);
  12235. UNUSED_PARAMETER(value);
  12236. Warning( "glProgramUniformMatrix2dvEXT", " not available." );
  12237. }
  12238. static void REGAL_CALL glProgramUniformMatrix2fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12239. {
  12240. UNUSED_PARAMETER(program);
  12241. UNUSED_PARAMETER(location);
  12242. UNUSED_PARAMETER(count);
  12243. UNUSED_PARAMETER(transpose);
  12244. UNUSED_PARAMETER(value);
  12245. Warning( "glProgramUniformMatrix2fvEXT", " not available." );
  12246. }
  12247. static void REGAL_CALL glProgramUniformMatrix2x3dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12248. {
  12249. UNUSED_PARAMETER(program);
  12250. UNUSED_PARAMETER(location);
  12251. UNUSED_PARAMETER(count);
  12252. UNUSED_PARAMETER(transpose);
  12253. UNUSED_PARAMETER(value);
  12254. Warning( "glProgramUniformMatrix2x3dvEXT", " not available." );
  12255. }
  12256. static void REGAL_CALL glProgramUniformMatrix2x3fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12257. {
  12258. UNUSED_PARAMETER(program);
  12259. UNUSED_PARAMETER(location);
  12260. UNUSED_PARAMETER(count);
  12261. UNUSED_PARAMETER(transpose);
  12262. UNUSED_PARAMETER(value);
  12263. Warning( "glProgramUniformMatrix2x3fvEXT", " not available." );
  12264. }
  12265. static void REGAL_CALL glProgramUniformMatrix2x4dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12266. {
  12267. UNUSED_PARAMETER(program);
  12268. UNUSED_PARAMETER(location);
  12269. UNUSED_PARAMETER(count);
  12270. UNUSED_PARAMETER(transpose);
  12271. UNUSED_PARAMETER(value);
  12272. Warning( "glProgramUniformMatrix2x4dvEXT", " not available." );
  12273. }
  12274. static void REGAL_CALL glProgramUniformMatrix2x4fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12275. {
  12276. UNUSED_PARAMETER(program);
  12277. UNUSED_PARAMETER(location);
  12278. UNUSED_PARAMETER(count);
  12279. UNUSED_PARAMETER(transpose);
  12280. UNUSED_PARAMETER(value);
  12281. Warning( "glProgramUniformMatrix2x4fvEXT", " not available." );
  12282. }
  12283. static void REGAL_CALL glProgramUniformMatrix3dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12284. {
  12285. UNUSED_PARAMETER(program);
  12286. UNUSED_PARAMETER(location);
  12287. UNUSED_PARAMETER(count);
  12288. UNUSED_PARAMETER(transpose);
  12289. UNUSED_PARAMETER(value);
  12290. Warning( "glProgramUniformMatrix3dvEXT", " not available." );
  12291. }
  12292. static void REGAL_CALL glProgramUniformMatrix3fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12293. {
  12294. UNUSED_PARAMETER(program);
  12295. UNUSED_PARAMETER(location);
  12296. UNUSED_PARAMETER(count);
  12297. UNUSED_PARAMETER(transpose);
  12298. UNUSED_PARAMETER(value);
  12299. Warning( "glProgramUniformMatrix3fvEXT", " not available." );
  12300. }
  12301. static void REGAL_CALL glProgramUniformMatrix3x2dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12302. {
  12303. UNUSED_PARAMETER(program);
  12304. UNUSED_PARAMETER(location);
  12305. UNUSED_PARAMETER(count);
  12306. UNUSED_PARAMETER(transpose);
  12307. UNUSED_PARAMETER(value);
  12308. Warning( "glProgramUniformMatrix3x2dvEXT", " not available." );
  12309. }
  12310. static void REGAL_CALL glProgramUniformMatrix3x2fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12311. {
  12312. UNUSED_PARAMETER(program);
  12313. UNUSED_PARAMETER(location);
  12314. UNUSED_PARAMETER(count);
  12315. UNUSED_PARAMETER(transpose);
  12316. UNUSED_PARAMETER(value);
  12317. Warning( "glProgramUniformMatrix3x2fvEXT", " not available." );
  12318. }
  12319. static void REGAL_CALL glProgramUniformMatrix3x4dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12320. {
  12321. UNUSED_PARAMETER(program);
  12322. UNUSED_PARAMETER(location);
  12323. UNUSED_PARAMETER(count);
  12324. UNUSED_PARAMETER(transpose);
  12325. UNUSED_PARAMETER(value);
  12326. Warning( "glProgramUniformMatrix3x4dvEXT", " not available." );
  12327. }
  12328. static void REGAL_CALL glProgramUniformMatrix3x4fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12329. {
  12330. UNUSED_PARAMETER(program);
  12331. UNUSED_PARAMETER(location);
  12332. UNUSED_PARAMETER(count);
  12333. UNUSED_PARAMETER(transpose);
  12334. UNUSED_PARAMETER(value);
  12335. Warning( "glProgramUniformMatrix3x4fvEXT", " not available." );
  12336. }
  12337. static void REGAL_CALL glProgramUniformMatrix4dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12338. {
  12339. UNUSED_PARAMETER(program);
  12340. UNUSED_PARAMETER(location);
  12341. UNUSED_PARAMETER(count);
  12342. UNUSED_PARAMETER(transpose);
  12343. UNUSED_PARAMETER(value);
  12344. Warning( "glProgramUniformMatrix4dvEXT", " not available." );
  12345. }
  12346. static void REGAL_CALL glProgramUniformMatrix4fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12347. {
  12348. UNUSED_PARAMETER(program);
  12349. UNUSED_PARAMETER(location);
  12350. UNUSED_PARAMETER(count);
  12351. UNUSED_PARAMETER(transpose);
  12352. UNUSED_PARAMETER(value);
  12353. Warning( "glProgramUniformMatrix4fvEXT", " not available." );
  12354. }
  12355. static void REGAL_CALL glProgramUniformMatrix4x2dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12356. {
  12357. UNUSED_PARAMETER(program);
  12358. UNUSED_PARAMETER(location);
  12359. UNUSED_PARAMETER(count);
  12360. UNUSED_PARAMETER(transpose);
  12361. UNUSED_PARAMETER(value);
  12362. Warning( "glProgramUniformMatrix4x2dvEXT", " not available." );
  12363. }
  12364. static void REGAL_CALL glProgramUniformMatrix4x2fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12365. {
  12366. UNUSED_PARAMETER(program);
  12367. UNUSED_PARAMETER(location);
  12368. UNUSED_PARAMETER(count);
  12369. UNUSED_PARAMETER(transpose);
  12370. UNUSED_PARAMETER(value);
  12371. Warning( "glProgramUniformMatrix4x2fvEXT", " not available." );
  12372. }
  12373. static void REGAL_CALL glProgramUniformMatrix4x3dvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value)
  12374. {
  12375. UNUSED_PARAMETER(program);
  12376. UNUSED_PARAMETER(location);
  12377. UNUSED_PARAMETER(count);
  12378. UNUSED_PARAMETER(transpose);
  12379. UNUSED_PARAMETER(value);
  12380. Warning( "glProgramUniformMatrix4x3dvEXT", " not available." );
  12381. }
  12382. static void REGAL_CALL glProgramUniformMatrix4x3fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
  12383. {
  12384. UNUSED_PARAMETER(program);
  12385. UNUSED_PARAMETER(location);
  12386. UNUSED_PARAMETER(count);
  12387. UNUSED_PARAMETER(transpose);
  12388. UNUSED_PARAMETER(value);
  12389. Warning( "glProgramUniformMatrix4x3fvEXT", " not available." );
  12390. }
  12391. static void REGAL_CALL glPushClientAttribDefaultEXT(GLbitfield mask)
  12392. {
  12393. UNUSED_PARAMETER(mask);
  12394. Warning( "glPushClientAttribDefaultEXT", " not available." );
  12395. }
  12396. static void REGAL_CALL glTextureBufferEXT(GLuint texture, GLenum target, GLenum internalformat, GLuint buffer)
  12397. {
  12398. UNUSED_PARAMETER(texture);
  12399. UNUSED_PARAMETER(target);
  12400. UNUSED_PARAMETER(internalformat);
  12401. UNUSED_PARAMETER(buffer);
  12402. Warning( "glTextureBufferEXT", " not available." );
  12403. }
  12404. static void REGAL_CALL glTextureImage1DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  12405. {
  12406. UNUSED_PARAMETER(texture);
  12407. UNUSED_PARAMETER(target);
  12408. UNUSED_PARAMETER(level);
  12409. UNUSED_PARAMETER(internalformat);
  12410. UNUSED_PARAMETER(width);
  12411. UNUSED_PARAMETER(border);
  12412. UNUSED_PARAMETER(format);
  12413. UNUSED_PARAMETER(type);
  12414. UNUSED_PARAMETER(pixels);
  12415. Warning( "glTextureImage1DEXT", " not available." );
  12416. }
  12417. static void REGAL_CALL glTextureImage2DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  12418. {
  12419. UNUSED_PARAMETER(texture);
  12420. UNUSED_PARAMETER(target);
  12421. UNUSED_PARAMETER(level);
  12422. UNUSED_PARAMETER(internalformat);
  12423. UNUSED_PARAMETER(width);
  12424. UNUSED_PARAMETER(height);
  12425. UNUSED_PARAMETER(border);
  12426. UNUSED_PARAMETER(format);
  12427. UNUSED_PARAMETER(type);
  12428. UNUSED_PARAMETER(pixels);
  12429. Warning( "glTextureImage2DEXT", " not available." );
  12430. }
  12431. static void REGAL_CALL glTextureImage3DEXT(GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  12432. {
  12433. UNUSED_PARAMETER(texture);
  12434. UNUSED_PARAMETER(target);
  12435. UNUSED_PARAMETER(level);
  12436. UNUSED_PARAMETER(internalformat);
  12437. UNUSED_PARAMETER(width);
  12438. UNUSED_PARAMETER(height);
  12439. UNUSED_PARAMETER(depth);
  12440. UNUSED_PARAMETER(border);
  12441. UNUSED_PARAMETER(format);
  12442. UNUSED_PARAMETER(type);
  12443. UNUSED_PARAMETER(pixels);
  12444. Warning( "glTextureImage3DEXT", " not available." );
  12445. }
  12446. static void REGAL_CALL glTextureParameterIivEXT(GLuint texture, GLenum target, GLenum pname, const GLint *params)
  12447. {
  12448. UNUSED_PARAMETER(texture);
  12449. UNUSED_PARAMETER(target);
  12450. UNUSED_PARAMETER(pname);
  12451. UNUSED_PARAMETER(params);
  12452. Warning( "glTextureParameterIivEXT", " not available." );
  12453. }
  12454. static void REGAL_CALL glTextureParameterIuivEXT(GLuint texture, GLenum target, GLenum pname, const GLuint *params)
  12455. {
  12456. UNUSED_PARAMETER(texture);
  12457. UNUSED_PARAMETER(target);
  12458. UNUSED_PARAMETER(pname);
  12459. UNUSED_PARAMETER(params);
  12460. Warning( "glTextureParameterIuivEXT", " not available." );
  12461. }
  12462. static void REGAL_CALL glTextureParameterfEXT(GLuint texture, GLenum target, GLenum pname, GLfloat param)
  12463. {
  12464. UNUSED_PARAMETER(texture);
  12465. UNUSED_PARAMETER(target);
  12466. UNUSED_PARAMETER(pname);
  12467. UNUSED_PARAMETER(param);
  12468. Warning( "glTextureParameterfEXT", " not available." );
  12469. }
  12470. static void REGAL_CALL glTextureParameterfvEXT(GLuint texture, GLenum target, GLenum pname, const GLfloat *param)
  12471. {
  12472. UNUSED_PARAMETER(texture);
  12473. UNUSED_PARAMETER(target);
  12474. UNUSED_PARAMETER(pname);
  12475. UNUSED_PARAMETER(param);
  12476. Warning( "glTextureParameterfvEXT", " not available." );
  12477. }
  12478. static void REGAL_CALL glTextureParameteriEXT(GLuint texture, GLenum target, GLenum pname, GLint param)
  12479. {
  12480. UNUSED_PARAMETER(texture);
  12481. UNUSED_PARAMETER(target);
  12482. UNUSED_PARAMETER(pname);
  12483. UNUSED_PARAMETER(param);
  12484. Warning( "glTextureParameteriEXT", " not available." );
  12485. }
  12486. static void REGAL_CALL glTextureParameterivEXT(GLuint texture, GLenum target, GLenum pname, const GLint *param)
  12487. {
  12488. UNUSED_PARAMETER(texture);
  12489. UNUSED_PARAMETER(target);
  12490. UNUSED_PARAMETER(pname);
  12491. UNUSED_PARAMETER(param);
  12492. Warning( "glTextureParameterivEXT", " not available." );
  12493. }
  12494. static void REGAL_CALL glTextureRenderbufferEXT(GLuint texture, GLenum target, GLuint renderbuffer)
  12495. {
  12496. UNUSED_PARAMETER(texture);
  12497. UNUSED_PARAMETER(target);
  12498. UNUSED_PARAMETER(renderbuffer);
  12499. Warning( "glTextureRenderbufferEXT", " not available." );
  12500. }
  12501. static void REGAL_CALL glTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels)
  12502. {
  12503. UNUSED_PARAMETER(texture);
  12504. UNUSED_PARAMETER(target);
  12505. UNUSED_PARAMETER(level);
  12506. UNUSED_PARAMETER(xoffset);
  12507. UNUSED_PARAMETER(width);
  12508. UNUSED_PARAMETER(format);
  12509. UNUSED_PARAMETER(type);
  12510. UNUSED_PARAMETER(pixels);
  12511. Warning( "glTextureSubImage1DEXT", " not available." );
  12512. }
  12513. static void REGAL_CALL glTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
  12514. {
  12515. UNUSED_PARAMETER(texture);
  12516. UNUSED_PARAMETER(target);
  12517. UNUSED_PARAMETER(level);
  12518. UNUSED_PARAMETER(xoffset);
  12519. UNUSED_PARAMETER(yoffset);
  12520. UNUSED_PARAMETER(width);
  12521. UNUSED_PARAMETER(height);
  12522. UNUSED_PARAMETER(format);
  12523. UNUSED_PARAMETER(type);
  12524. UNUSED_PARAMETER(pixels);
  12525. Warning( "glTextureSubImage2DEXT", " not available." );
  12526. }
  12527. static void REGAL_CALL glTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels)
  12528. {
  12529. UNUSED_PARAMETER(texture);
  12530. UNUSED_PARAMETER(target);
  12531. UNUSED_PARAMETER(level);
  12532. UNUSED_PARAMETER(xoffset);
  12533. UNUSED_PARAMETER(yoffset);
  12534. UNUSED_PARAMETER(zoffset);
  12535. UNUSED_PARAMETER(width);
  12536. UNUSED_PARAMETER(height);
  12537. UNUSED_PARAMETER(depth);
  12538. UNUSED_PARAMETER(format);
  12539. UNUSED_PARAMETER(type);
  12540. UNUSED_PARAMETER(pixels);
  12541. Warning( "glTextureSubImage3DEXT", " not available." );
  12542. }
  12543. static GLboolean REGAL_CALL glUnmapNamedBufferEXT(GLuint buffer)
  12544. {
  12545. UNUSED_PARAMETER(buffer);
  12546. Warning( "glUnmapNamedBufferEXT", " not available." );
  12547. return GL_FALSE;
  12548. }
  12549. static void REGAL_CALL glVertexArrayColorOffsetEXT(GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, const GLintptr offset)
  12550. {
  12551. UNUSED_PARAMETER(vaobj);
  12552. UNUSED_PARAMETER(buffer);
  12553. UNUSED_PARAMETER(size);
  12554. UNUSED_PARAMETER(type);
  12555. UNUSED_PARAMETER(stride);
  12556. UNUSED_PARAMETER(offset);
  12557. Warning( "glVertexArrayColorOffsetEXT", " not available." );
  12558. }
  12559. static void REGAL_CALL glVertexArrayEdgeFlagOffsetEXT(GLuint vaobj, GLuint buffer, GLsizei stride, const GLintptr offset)
  12560. {
  12561. UNUSED_PARAMETER(vaobj);
  12562. UNUSED_PARAMETER(buffer);
  12563. UNUSED_PARAMETER(stride);
  12564. UNUSED_PARAMETER(offset);
  12565. Warning( "glVertexArrayEdgeFlagOffsetEXT", " not available." );
  12566. }
  12567. static void REGAL_CALL glVertexArrayFogCoordOffsetEXT(GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, const GLintptr offset)
  12568. {
  12569. UNUSED_PARAMETER(vaobj);
  12570. UNUSED_PARAMETER(buffer);
  12571. UNUSED_PARAMETER(type);
  12572. UNUSED_PARAMETER(stride);
  12573. UNUSED_PARAMETER(offset);
  12574. Warning( "glVertexArrayFogCoordOffsetEXT", " not available." );
  12575. }
  12576. static void REGAL_CALL glVertexArrayIndexOffsetEXT(GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, const GLintptr offset)
  12577. {
  12578. UNUSED_PARAMETER(vaobj);
  12579. UNUSED_PARAMETER(buffer);
  12580. UNUSED_PARAMETER(type);
  12581. UNUSED_PARAMETER(stride);
  12582. UNUSED_PARAMETER(offset);
  12583. Warning( "glVertexArrayIndexOffsetEXT", " not available." );
  12584. }
  12585. static void REGAL_CALL glVertexArrayMultiTexCoordOffsetEXT(GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, const GLintptr offset)
  12586. {
  12587. UNUSED_PARAMETER(vaobj);
  12588. UNUSED_PARAMETER(buffer);
  12589. UNUSED_PARAMETER(texunit);
  12590. UNUSED_PARAMETER(size);
  12591. UNUSED_PARAMETER(type);
  12592. UNUSED_PARAMETER(stride);
  12593. UNUSED_PARAMETER(offset);
  12594. Warning( "glVertexArrayMultiTexCoordOffsetEXT", " not available." );
  12595. }
  12596. static void REGAL_CALL glVertexArrayNormalOffsetEXT(GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, const GLintptr offset)
  12597. {
  12598. UNUSED_PARAMETER(vaobj);
  12599. UNUSED_PARAMETER(buffer);
  12600. UNUSED_PARAMETER(type);
  12601. UNUSED_PARAMETER(stride);
  12602. UNUSED_PARAMETER(offset);
  12603. Warning( "glVertexArrayNormalOffsetEXT", " not available." );
  12604. }
  12605. static void REGAL_CALL glVertexArraySecondaryColorOffsetEXT(GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, const GLintptr offset)
  12606. {
  12607. UNUSED_PARAMETER(vaobj);
  12608. UNUSED_PARAMETER(buffer);
  12609. UNUSED_PARAMETER(size);
  12610. UNUSED_PARAMETER(type);
  12611. UNUSED_PARAMETER(stride);
  12612. UNUSED_PARAMETER(offset);
  12613. Warning( "glVertexArraySecondaryColorOffsetEXT", " not available." );
  12614. }
  12615. static void REGAL_CALL glVertexArrayTexCoordOffsetEXT(GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, const GLintptr offset)
  12616. {
  12617. UNUSED_PARAMETER(vaobj);
  12618. UNUSED_PARAMETER(buffer);
  12619. UNUSED_PARAMETER(size);
  12620. UNUSED_PARAMETER(type);
  12621. UNUSED_PARAMETER(stride);
  12622. UNUSED_PARAMETER(offset);
  12623. Warning( "glVertexArrayTexCoordOffsetEXT", " not available." );
  12624. }
  12625. static void REGAL_CALL glVertexArrayVertexAttribIOffsetEXT(GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, const GLintptr offset)
  12626. {
  12627. UNUSED_PARAMETER(vaobj);
  12628. UNUSED_PARAMETER(buffer);
  12629. UNUSED_PARAMETER(index);
  12630. UNUSED_PARAMETER(size);
  12631. UNUSED_PARAMETER(type);
  12632. UNUSED_PARAMETER(stride);
  12633. UNUSED_PARAMETER(offset);
  12634. Warning( "glVertexArrayVertexAttribIOffsetEXT", " not available." );
  12635. }
  12636. static void REGAL_CALL glVertexArrayVertexAttribOffsetEXT(GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLintptr offset)
  12637. {
  12638. UNUSED_PARAMETER(vaobj);
  12639. UNUSED_PARAMETER(buffer);
  12640. UNUSED_PARAMETER(index);
  12641. UNUSED_PARAMETER(size);
  12642. UNUSED_PARAMETER(type);
  12643. UNUSED_PARAMETER(normalized);
  12644. UNUSED_PARAMETER(stride);
  12645. UNUSED_PARAMETER(offset);
  12646. Warning( "glVertexArrayVertexAttribOffsetEXT", " not available." );
  12647. }
  12648. static void REGAL_CALL glVertexArrayVertexOffsetEXT(GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, const GLintptr offset)
  12649. {
  12650. UNUSED_PARAMETER(vaobj);
  12651. UNUSED_PARAMETER(buffer);
  12652. UNUSED_PARAMETER(size);
  12653. UNUSED_PARAMETER(type);
  12654. UNUSED_PARAMETER(stride);
  12655. UNUSED_PARAMETER(offset);
  12656. Warning( "glVertexArrayVertexOffsetEXT", " not available." );
  12657. }
  12658. // GL_EXT_discard_framebuffer
  12659. static void REGAL_CALL glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments)
  12660. {
  12661. UNUSED_PARAMETER(target);
  12662. UNUSED_PARAMETER(numAttachments);
  12663. UNUSED_PARAMETER(attachments);
  12664. Warning( "glDiscardFramebufferEXT", " not available." );
  12665. }
  12666. // GL_EXT_disjoint_timer_query
  12667. static void REGAL_CALL glGetQueryObjectivEXT(GLuint id, GLenum pname, GLint *params)
  12668. {
  12669. UNUSED_PARAMETER(id);
  12670. UNUSED_PARAMETER(pname);
  12671. UNUSED_PARAMETER(params);
  12672. Warning( "glGetQueryObjectivEXT", " not available." );
  12673. }
  12674. static void REGAL_CALL glQueryCounterEXT(GLuint id, GLenum target)
  12675. {
  12676. UNUSED_PARAMETER(id);
  12677. UNUSED_PARAMETER(target);
  12678. Warning( "glQueryCounterEXT", " not available." );
  12679. }
  12680. // GL_EXT_draw_buffers2
  12681. static void REGAL_CALL glColorMaskIndexedEXT(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a)
  12682. {
  12683. UNUSED_PARAMETER(buf);
  12684. UNUSED_PARAMETER(r);
  12685. UNUSED_PARAMETER(g);
  12686. UNUSED_PARAMETER(b);
  12687. UNUSED_PARAMETER(a);
  12688. Warning( "glColorMaskIndexedEXT", " not available." );
  12689. }
  12690. static void REGAL_CALL glDisableIndexedEXT(GLenum target, GLuint index)
  12691. {
  12692. UNUSED_PARAMETER(target);
  12693. UNUSED_PARAMETER(index);
  12694. Warning( "glDisableIndexedEXT", " not available." );
  12695. }
  12696. static void REGAL_CALL glEnableIndexedEXT(GLenum target, GLuint index)
  12697. {
  12698. UNUSED_PARAMETER(target);
  12699. UNUSED_PARAMETER(index);
  12700. Warning( "glEnableIndexedEXT", " not available." );
  12701. }
  12702. static void REGAL_CALL glGetBooleanIndexedvEXT(GLenum value, GLuint index, GLboolean *data)
  12703. {
  12704. UNUSED_PARAMETER(value);
  12705. UNUSED_PARAMETER(index);
  12706. UNUSED_PARAMETER(data);
  12707. Warning( "glGetBooleanIndexedvEXT", " not available." );
  12708. }
  12709. static void REGAL_CALL glGetIntegerIndexedvEXT(GLenum value, GLuint index, GLint *data)
  12710. {
  12711. UNUSED_PARAMETER(value);
  12712. UNUSED_PARAMETER(index);
  12713. UNUSED_PARAMETER(data);
  12714. Warning( "glGetIntegerIndexedvEXT", " not available." );
  12715. }
  12716. static GLboolean REGAL_CALL glIsEnabledIndexedEXT(GLenum target, GLuint index)
  12717. {
  12718. UNUSED_PARAMETER(target);
  12719. UNUSED_PARAMETER(index);
  12720. Warning( "glIsEnabledIndexedEXT", " not available." );
  12721. return GL_FALSE;
  12722. }
  12723. // GL_EXT_draw_instanced
  12724. static void REGAL_CALL glDrawArraysInstancedEXT(GLenum mode, GLint start, GLsizei count, GLsizei primcount)
  12725. {
  12726. UNUSED_PARAMETER(mode);
  12727. UNUSED_PARAMETER(start);
  12728. UNUSED_PARAMETER(count);
  12729. UNUSED_PARAMETER(primcount);
  12730. Warning( "glDrawArraysInstancedEXT", " not available." );
  12731. }
  12732. static void REGAL_CALL glDrawElementsInstancedEXT(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount)
  12733. {
  12734. UNUSED_PARAMETER(mode);
  12735. UNUSED_PARAMETER(count);
  12736. UNUSED_PARAMETER(type);
  12737. UNUSED_PARAMETER(indices);
  12738. UNUSED_PARAMETER(primcount);
  12739. Warning( "glDrawElementsInstancedEXT", " not available." );
  12740. }
  12741. // GL_EXT_draw_range_elements
  12742. static void REGAL_CALL glDrawRangeElementsEXT(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices)
  12743. {
  12744. UNUSED_PARAMETER(mode);
  12745. UNUSED_PARAMETER(start);
  12746. UNUSED_PARAMETER(end);
  12747. UNUSED_PARAMETER(count);
  12748. UNUSED_PARAMETER(type);
  12749. UNUSED_PARAMETER(indices);
  12750. Warning( "glDrawRangeElementsEXT", " not available." );
  12751. }
  12752. // GL_EXT_fog_coord
  12753. static void REGAL_CALL glFogCoordPointerEXT(GLenum type, GLsizei stride, const GLvoid *pointer)
  12754. {
  12755. UNUSED_PARAMETER(type);
  12756. UNUSED_PARAMETER(stride);
  12757. UNUSED_PARAMETER(pointer);
  12758. Warning( "glFogCoordPointerEXT", " not available." );
  12759. }
  12760. static void REGAL_CALL glFogCoorddEXT(GLdouble coord)
  12761. {
  12762. UNUSED_PARAMETER(coord);
  12763. Warning( "glFogCoorddEXT", " not available." );
  12764. }
  12765. static void REGAL_CALL glFogCoorddvEXT(const GLdouble *coord)
  12766. {
  12767. UNUSED_PARAMETER(coord);
  12768. Warning( "glFogCoorddvEXT", " not available." );
  12769. }
  12770. static void REGAL_CALL glFogCoordfEXT(GLfloat coord)
  12771. {
  12772. UNUSED_PARAMETER(coord);
  12773. Warning( "glFogCoordfEXT", " not available." );
  12774. }
  12775. static void REGAL_CALL glFogCoordfvEXT(const GLfloat *coord)
  12776. {
  12777. UNUSED_PARAMETER(coord);
  12778. Warning( "glFogCoordfvEXT", " not available." );
  12779. }
  12780. // GL_EXT_fragment_lighting
  12781. static void REGAL_CALL glFragmentColorMaterialEXT(GLenum face, GLenum mode)
  12782. {
  12783. UNUSED_PARAMETER(face);
  12784. UNUSED_PARAMETER(mode);
  12785. Warning( "glFragmentColorMaterialEXT", " not available." );
  12786. }
  12787. static void REGAL_CALL glFragmentLightModelfEXT(GLenum pname, GLfloat param)
  12788. {
  12789. UNUSED_PARAMETER(pname);
  12790. UNUSED_PARAMETER(param);
  12791. Warning( "glFragmentLightModelfEXT", " not available." );
  12792. }
  12793. static void REGAL_CALL glFragmentLightModelfvEXT(GLenum pname, GLfloat *params)
  12794. {
  12795. UNUSED_PARAMETER(pname);
  12796. UNUSED_PARAMETER(params);
  12797. Warning( "glFragmentLightModelfvEXT", " not available." );
  12798. }
  12799. static void REGAL_CALL glFragmentLightModeliEXT(GLenum pname, GLint param)
  12800. {
  12801. UNUSED_PARAMETER(pname);
  12802. UNUSED_PARAMETER(param);
  12803. Warning( "glFragmentLightModeliEXT", " not available." );
  12804. }
  12805. static void REGAL_CALL glFragmentLightModelivEXT(GLenum pname, GLint *params)
  12806. {
  12807. UNUSED_PARAMETER(pname);
  12808. UNUSED_PARAMETER(params);
  12809. Warning( "glFragmentLightModelivEXT", " not available." );
  12810. }
  12811. static void REGAL_CALL glFragmentLightfEXT(GLenum light, GLenum pname, GLfloat param)
  12812. {
  12813. UNUSED_PARAMETER(light);
  12814. UNUSED_PARAMETER(pname);
  12815. UNUSED_PARAMETER(param);
  12816. Warning( "glFragmentLightfEXT", " not available." );
  12817. }
  12818. static void REGAL_CALL glFragmentLightfvEXT(GLenum light, GLenum pname, GLfloat *params)
  12819. {
  12820. UNUSED_PARAMETER(light);
  12821. UNUSED_PARAMETER(pname);
  12822. UNUSED_PARAMETER(params);
  12823. Warning( "glFragmentLightfvEXT", " not available." );
  12824. }
  12825. static void REGAL_CALL glFragmentLightiEXT(GLenum light, GLenum pname, GLint param)
  12826. {
  12827. UNUSED_PARAMETER(light);
  12828. UNUSED_PARAMETER(pname);
  12829. UNUSED_PARAMETER(param);
  12830. Warning( "glFragmentLightiEXT", " not available." );
  12831. }
  12832. static void REGAL_CALL glFragmentLightivEXT(GLenum light, GLenum pname, GLint *params)
  12833. {
  12834. UNUSED_PARAMETER(light);
  12835. UNUSED_PARAMETER(pname);
  12836. UNUSED_PARAMETER(params);
  12837. Warning( "glFragmentLightivEXT", " not available." );
  12838. }
  12839. static void REGAL_CALL glFragmentMaterialfEXT(GLenum face, GLenum pname, const GLfloat param)
  12840. {
  12841. UNUSED_PARAMETER(face);
  12842. UNUSED_PARAMETER(pname);
  12843. UNUSED_PARAMETER(param);
  12844. Warning( "glFragmentMaterialfEXT", " not available." );
  12845. }
  12846. static void REGAL_CALL glFragmentMaterialfvEXT(GLenum face, GLenum pname, const GLfloat *params)
  12847. {
  12848. UNUSED_PARAMETER(face);
  12849. UNUSED_PARAMETER(pname);
  12850. UNUSED_PARAMETER(params);
  12851. Warning( "glFragmentMaterialfvEXT", " not available." );
  12852. }
  12853. static void REGAL_CALL glFragmentMaterialiEXT(GLenum face, GLenum pname, const GLint param)
  12854. {
  12855. UNUSED_PARAMETER(face);
  12856. UNUSED_PARAMETER(pname);
  12857. UNUSED_PARAMETER(param);
  12858. Warning( "glFragmentMaterialiEXT", " not available." );
  12859. }
  12860. static void REGAL_CALL glFragmentMaterialivEXT(GLenum face, GLenum pname, const GLint *params)
  12861. {
  12862. UNUSED_PARAMETER(face);
  12863. UNUSED_PARAMETER(pname);
  12864. UNUSED_PARAMETER(params);
  12865. Warning( "glFragmentMaterialivEXT", " not available." );
  12866. }
  12867. static void REGAL_CALL glGetFragmentLightfvEXT(GLenum light, GLenum pname, GLfloat *params)
  12868. {
  12869. UNUSED_PARAMETER(light);
  12870. UNUSED_PARAMETER(pname);
  12871. UNUSED_PARAMETER(params);
  12872. Warning( "glGetFragmentLightfvEXT", " not available." );
  12873. }
  12874. static void REGAL_CALL glGetFragmentLightivEXT(GLenum light, GLenum pname, GLint *params)
  12875. {
  12876. UNUSED_PARAMETER(light);
  12877. UNUSED_PARAMETER(pname);
  12878. UNUSED_PARAMETER(params);
  12879. Warning( "glGetFragmentLightivEXT", " not available." );
  12880. }
  12881. static void REGAL_CALL glGetFragmentMaterialfvEXT(GLenum face, GLenum pname, const GLfloat *params)
  12882. {
  12883. UNUSED_PARAMETER(face);
  12884. UNUSED_PARAMETER(pname);
  12885. UNUSED_PARAMETER(params);
  12886. Warning( "glGetFragmentMaterialfvEXT", " not available." );
  12887. }
  12888. static void REGAL_CALL glGetFragmentMaterialivEXT(GLenum face, GLenum pname, const GLint *params)
  12889. {
  12890. UNUSED_PARAMETER(face);
  12891. UNUSED_PARAMETER(pname);
  12892. UNUSED_PARAMETER(params);
  12893. Warning( "glGetFragmentMaterialivEXT", " not available." );
  12894. }
  12895. static void REGAL_CALL glLightEnviEXT(GLenum pname, GLint param)
  12896. {
  12897. UNUSED_PARAMETER(pname);
  12898. UNUSED_PARAMETER(param);
  12899. Warning( "glLightEnviEXT", " not available." );
  12900. }
  12901. // GL_EXT_framebuffer_blit
  12902. static void REGAL_CALL glBlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
  12903. {
  12904. UNUSED_PARAMETER(srcX0);
  12905. UNUSED_PARAMETER(srcY0);
  12906. UNUSED_PARAMETER(srcX1);
  12907. UNUSED_PARAMETER(srcY1);
  12908. UNUSED_PARAMETER(dstX0);
  12909. UNUSED_PARAMETER(dstY0);
  12910. UNUSED_PARAMETER(dstX1);
  12911. UNUSED_PARAMETER(dstY1);
  12912. UNUSED_PARAMETER(mask);
  12913. UNUSED_PARAMETER(filter);
  12914. Warning( "glBlitFramebufferEXT", " not available." );
  12915. }
  12916. // GL_EXT_framebuffer_multisample
  12917. static void REGAL_CALL glRenderbufferStorageMultisampleEXT(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
  12918. {
  12919. UNUSED_PARAMETER(target);
  12920. UNUSED_PARAMETER(samples);
  12921. UNUSED_PARAMETER(internalformat);
  12922. UNUSED_PARAMETER(width);
  12923. UNUSED_PARAMETER(height);
  12924. Warning( "glRenderbufferStorageMultisampleEXT", " not available." );
  12925. }
  12926. // GL_EXT_framebuffer_object
  12927. static void REGAL_CALL glBindFramebufferEXT(GLenum target, GLuint framebuffer)
  12928. {
  12929. UNUSED_PARAMETER(target);
  12930. UNUSED_PARAMETER(framebuffer);
  12931. Warning( "glBindFramebufferEXT", " not available." );
  12932. }
  12933. static void REGAL_CALL glBindRenderbufferEXT(GLenum target, GLuint renderbuffer)
  12934. {
  12935. UNUSED_PARAMETER(target);
  12936. UNUSED_PARAMETER(renderbuffer);
  12937. Warning( "glBindRenderbufferEXT", " not available." );
  12938. }
  12939. static GLenum REGAL_CALL glCheckFramebufferStatusEXT(GLenum target)
  12940. {
  12941. UNUSED_PARAMETER(target);
  12942. Warning( "glCheckFramebufferStatusEXT", " not available." );
  12943. return 0;
  12944. }
  12945. static void REGAL_CALL glDeleteFramebuffersEXT(GLsizei n, const GLuint *framebuffers)
  12946. {
  12947. UNUSED_PARAMETER(n);
  12948. UNUSED_PARAMETER(framebuffers);
  12949. Warning( "glDeleteFramebuffersEXT", " not available." );
  12950. }
  12951. static void REGAL_CALL glDeleteRenderbuffersEXT(GLsizei n, const GLuint *renderbuffers)
  12952. {
  12953. UNUSED_PARAMETER(n);
  12954. UNUSED_PARAMETER(renderbuffers);
  12955. Warning( "glDeleteRenderbuffersEXT", " not available." );
  12956. }
  12957. static void REGAL_CALL glFramebufferRenderbufferEXT(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)
  12958. {
  12959. UNUSED_PARAMETER(target);
  12960. UNUSED_PARAMETER(attachment);
  12961. UNUSED_PARAMETER(renderbuffertarget);
  12962. UNUSED_PARAMETER(renderbuffer);
  12963. Warning( "glFramebufferRenderbufferEXT", " not available." );
  12964. }
  12965. static void REGAL_CALL glFramebufferTexture1DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
  12966. {
  12967. UNUSED_PARAMETER(target);
  12968. UNUSED_PARAMETER(attachment);
  12969. UNUSED_PARAMETER(textarget);
  12970. UNUSED_PARAMETER(texture);
  12971. UNUSED_PARAMETER(level);
  12972. Warning( "glFramebufferTexture1DEXT", " not available." );
  12973. }
  12974. static void REGAL_CALL glFramebufferTexture2DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
  12975. {
  12976. UNUSED_PARAMETER(target);
  12977. UNUSED_PARAMETER(attachment);
  12978. UNUSED_PARAMETER(textarget);
  12979. UNUSED_PARAMETER(texture);
  12980. UNUSED_PARAMETER(level);
  12981. Warning( "glFramebufferTexture2DEXT", " not available." );
  12982. }
  12983. static void REGAL_CALL glFramebufferTexture3DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset)
  12984. {
  12985. UNUSED_PARAMETER(target);
  12986. UNUSED_PARAMETER(attachment);
  12987. UNUSED_PARAMETER(textarget);
  12988. UNUSED_PARAMETER(texture);
  12989. UNUSED_PARAMETER(level);
  12990. UNUSED_PARAMETER(zoffset);
  12991. Warning( "glFramebufferTexture3DEXT", " not available." );
  12992. }
  12993. static void REGAL_CALL glGenFramebuffersEXT(GLsizei n, GLuint *framebuffers)
  12994. {
  12995. UNUSED_PARAMETER(n);
  12996. UNUSED_PARAMETER(framebuffers);
  12997. Warning( "glGenFramebuffersEXT", " not available." );
  12998. }
  12999. static void REGAL_CALL glGenRenderbuffersEXT(GLsizei n, GLuint *renderbuffers)
  13000. {
  13001. UNUSED_PARAMETER(n);
  13002. UNUSED_PARAMETER(renderbuffers);
  13003. Warning( "glGenRenderbuffersEXT", " not available." );
  13004. }
  13005. static void REGAL_CALL glGenerateMipmapEXT(GLenum target)
  13006. {
  13007. UNUSED_PARAMETER(target);
  13008. Warning( "glGenerateMipmapEXT", " not available." );
  13009. }
  13010. static void REGAL_CALL glGetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment, GLenum pname, GLint *params)
  13011. {
  13012. UNUSED_PARAMETER(target);
  13013. UNUSED_PARAMETER(attachment);
  13014. UNUSED_PARAMETER(pname);
  13015. UNUSED_PARAMETER(params);
  13016. Warning( "glGetFramebufferAttachmentParameterivEXT", " not available." );
  13017. }
  13018. static void REGAL_CALL glGetRenderbufferParameterivEXT(GLenum target, GLenum pname, GLint *params)
  13019. {
  13020. UNUSED_PARAMETER(target);
  13021. UNUSED_PARAMETER(pname);
  13022. UNUSED_PARAMETER(params);
  13023. Warning( "glGetRenderbufferParameterivEXT", " not available." );
  13024. }
  13025. static GLboolean REGAL_CALL glIsFramebufferEXT(GLuint framebuffer)
  13026. {
  13027. UNUSED_PARAMETER(framebuffer);
  13028. Warning( "glIsFramebufferEXT", " not available." );
  13029. return GL_FALSE;
  13030. }
  13031. static GLboolean REGAL_CALL glIsRenderbufferEXT(GLuint renderbuffer)
  13032. {
  13033. UNUSED_PARAMETER(renderbuffer);
  13034. Warning( "glIsRenderbufferEXT", " not available." );
  13035. return GL_FALSE;
  13036. }
  13037. static void REGAL_CALL glRenderbufferStorageEXT(GLenum target, GLenum internalformat, GLsizei width, GLsizei height)
  13038. {
  13039. UNUSED_PARAMETER(target);
  13040. UNUSED_PARAMETER(internalformat);
  13041. UNUSED_PARAMETER(width);
  13042. UNUSED_PARAMETER(height);
  13043. Warning( "glRenderbufferStorageEXT", " not available." );
  13044. }
  13045. // GL_EXT_geometry_shader4
  13046. static void REGAL_CALL glFramebufferTextureEXT(GLenum target, GLenum attachment, GLuint texture, GLint level)
  13047. {
  13048. UNUSED_PARAMETER(target);
  13049. UNUSED_PARAMETER(attachment);
  13050. UNUSED_PARAMETER(texture);
  13051. UNUSED_PARAMETER(level);
  13052. Warning( "glFramebufferTextureEXT", " not available." );
  13053. }
  13054. static void REGAL_CALL glFramebufferTextureFaceEXT(GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face)
  13055. {
  13056. UNUSED_PARAMETER(target);
  13057. UNUSED_PARAMETER(attachment);
  13058. UNUSED_PARAMETER(texture);
  13059. UNUSED_PARAMETER(level);
  13060. UNUSED_PARAMETER(face);
  13061. Warning( "glFramebufferTextureFaceEXT", " not available." );
  13062. }
  13063. static void REGAL_CALL glProgramParameteriEXT(GLuint program, GLenum pname, GLint value)
  13064. {
  13065. UNUSED_PARAMETER(program);
  13066. UNUSED_PARAMETER(pname);
  13067. UNUSED_PARAMETER(value);
  13068. Warning( "glProgramParameteriEXT", " not available." );
  13069. }
  13070. // GL_EXT_gpu_program_parameters
  13071. static void REGAL_CALL glProgramEnvParameters4fvEXT(GLenum target, GLuint index, GLsizei count, const GLfloat *params)
  13072. {
  13073. UNUSED_PARAMETER(target);
  13074. UNUSED_PARAMETER(index);
  13075. UNUSED_PARAMETER(count);
  13076. UNUSED_PARAMETER(params);
  13077. Warning( "glProgramEnvParameters4fvEXT", " not available." );
  13078. }
  13079. static void REGAL_CALL glProgramLocalParameters4fvEXT(GLenum target, GLuint index, GLsizei count, const GLfloat *params)
  13080. {
  13081. UNUSED_PARAMETER(target);
  13082. UNUSED_PARAMETER(index);
  13083. UNUSED_PARAMETER(count);
  13084. UNUSED_PARAMETER(params);
  13085. Warning( "glProgramLocalParameters4fvEXT", " not available." );
  13086. }
  13087. // GL_EXT_gpu_shader4
  13088. static void REGAL_CALL glBindFragDataLocationEXT(GLuint program, GLuint color, const GLchar *name)
  13089. {
  13090. UNUSED_PARAMETER(program);
  13091. UNUSED_PARAMETER(color);
  13092. UNUSED_PARAMETER(name);
  13093. Warning( "glBindFragDataLocationEXT", " not available." );
  13094. }
  13095. static GLint REGAL_CALL glGetFragDataLocationEXT(GLuint program, const GLchar *name)
  13096. {
  13097. UNUSED_PARAMETER(program);
  13098. UNUSED_PARAMETER(name);
  13099. Warning( "glGetFragDataLocationEXT", " not available." );
  13100. return 0;
  13101. }
  13102. static void REGAL_CALL glGetUniformuivEXT(GLuint program, GLint location, GLuint *params)
  13103. {
  13104. UNUSED_PARAMETER(program);
  13105. UNUSED_PARAMETER(location);
  13106. UNUSED_PARAMETER(params);
  13107. Warning( "glGetUniformuivEXT", " not available." );
  13108. }
  13109. static void REGAL_CALL glGetVertexAttribIivEXT(GLuint index, GLenum pname, GLint *params)
  13110. {
  13111. UNUSED_PARAMETER(index);
  13112. UNUSED_PARAMETER(pname);
  13113. UNUSED_PARAMETER(params);
  13114. Warning( "glGetVertexAttribIivEXT", " not available." );
  13115. }
  13116. static void REGAL_CALL glGetVertexAttribIuivEXT(GLuint index, GLenum pname, GLuint *params)
  13117. {
  13118. UNUSED_PARAMETER(index);
  13119. UNUSED_PARAMETER(pname);
  13120. UNUSED_PARAMETER(params);
  13121. Warning( "glGetVertexAttribIuivEXT", " not available." );
  13122. }
  13123. static void REGAL_CALL glUniform1uiEXT(GLint location, GLuint v0)
  13124. {
  13125. UNUSED_PARAMETER(location);
  13126. UNUSED_PARAMETER(v0);
  13127. Warning( "glUniform1uiEXT", " not available." );
  13128. }
  13129. static void REGAL_CALL glUniform1uivEXT(GLint location, GLsizei count, const GLuint *value)
  13130. {
  13131. UNUSED_PARAMETER(location);
  13132. UNUSED_PARAMETER(count);
  13133. UNUSED_PARAMETER(value);
  13134. Warning( "glUniform1uivEXT", " not available." );
  13135. }
  13136. static void REGAL_CALL glUniform2uiEXT(GLint location, GLuint v0, GLuint v1)
  13137. {
  13138. UNUSED_PARAMETER(location);
  13139. UNUSED_PARAMETER(v0);
  13140. UNUSED_PARAMETER(v1);
  13141. Warning( "glUniform2uiEXT", " not available." );
  13142. }
  13143. static void REGAL_CALL glUniform2uivEXT(GLint location, GLsizei count, const GLuint *value)
  13144. {
  13145. UNUSED_PARAMETER(location);
  13146. UNUSED_PARAMETER(count);
  13147. UNUSED_PARAMETER(value);
  13148. Warning( "glUniform2uivEXT", " not available." );
  13149. }
  13150. static void REGAL_CALL glUniform3uiEXT(GLint location, GLuint v0, GLuint v1, GLuint v2)
  13151. {
  13152. UNUSED_PARAMETER(location);
  13153. UNUSED_PARAMETER(v0);
  13154. UNUSED_PARAMETER(v1);
  13155. UNUSED_PARAMETER(v2);
  13156. Warning( "glUniform3uiEXT", " not available." );
  13157. }
  13158. static void REGAL_CALL glUniform3uivEXT(GLint location, GLsizei count, const GLuint *value)
  13159. {
  13160. UNUSED_PARAMETER(location);
  13161. UNUSED_PARAMETER(count);
  13162. UNUSED_PARAMETER(value);
  13163. Warning( "glUniform3uivEXT", " not available." );
  13164. }
  13165. static void REGAL_CALL glUniform4uiEXT(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3)
  13166. {
  13167. UNUSED_PARAMETER(location);
  13168. UNUSED_PARAMETER(v0);
  13169. UNUSED_PARAMETER(v1);
  13170. UNUSED_PARAMETER(v2);
  13171. UNUSED_PARAMETER(v3);
  13172. Warning( "glUniform4uiEXT", " not available." );
  13173. }
  13174. static void REGAL_CALL glUniform4uivEXT(GLint location, GLsizei count, const GLuint *value)
  13175. {
  13176. UNUSED_PARAMETER(location);
  13177. UNUSED_PARAMETER(count);
  13178. UNUSED_PARAMETER(value);
  13179. Warning( "glUniform4uivEXT", " not available." );
  13180. }
  13181. static void REGAL_CALL glVertexAttribI1iEXT(GLuint index, GLint x)
  13182. {
  13183. UNUSED_PARAMETER(index);
  13184. UNUSED_PARAMETER(x);
  13185. Warning( "glVertexAttribI1iEXT", " not available." );
  13186. }
  13187. static void REGAL_CALL glVertexAttribI1ivEXT(GLuint index, const GLint *v)
  13188. {
  13189. UNUSED_PARAMETER(index);
  13190. UNUSED_PARAMETER(v);
  13191. Warning( "glVertexAttribI1ivEXT", " not available." );
  13192. }
  13193. static void REGAL_CALL glVertexAttribI1uiEXT(GLuint index, GLuint x)
  13194. {
  13195. UNUSED_PARAMETER(index);
  13196. UNUSED_PARAMETER(x);
  13197. Warning( "glVertexAttribI1uiEXT", " not available." );
  13198. }
  13199. static void REGAL_CALL glVertexAttribI1uivEXT(GLuint index, const GLuint *v)
  13200. {
  13201. UNUSED_PARAMETER(index);
  13202. UNUSED_PARAMETER(v);
  13203. Warning( "glVertexAttribI1uivEXT", " not available." );
  13204. }
  13205. static void REGAL_CALL glVertexAttribI2iEXT(GLuint index, GLint x, GLint y)
  13206. {
  13207. UNUSED_PARAMETER(index);
  13208. UNUSED_PARAMETER(x);
  13209. UNUSED_PARAMETER(y);
  13210. Warning( "glVertexAttribI2iEXT", " not available." );
  13211. }
  13212. static void REGAL_CALL glVertexAttribI2ivEXT(GLuint index, const GLint *v)
  13213. {
  13214. UNUSED_PARAMETER(index);
  13215. UNUSED_PARAMETER(v);
  13216. Warning( "glVertexAttribI2ivEXT", " not available." );
  13217. }
  13218. static void REGAL_CALL glVertexAttribI2uiEXT(GLuint index, GLuint x, GLuint y)
  13219. {
  13220. UNUSED_PARAMETER(index);
  13221. UNUSED_PARAMETER(x);
  13222. UNUSED_PARAMETER(y);
  13223. Warning( "glVertexAttribI2uiEXT", " not available." );
  13224. }
  13225. static void REGAL_CALL glVertexAttribI2uivEXT(GLuint index, const GLuint *v)
  13226. {
  13227. UNUSED_PARAMETER(index);
  13228. UNUSED_PARAMETER(v);
  13229. Warning( "glVertexAttribI2uivEXT", " not available." );
  13230. }
  13231. static void REGAL_CALL glVertexAttribI3iEXT(GLuint index, GLint x, GLint y, GLint z)
  13232. {
  13233. UNUSED_PARAMETER(index);
  13234. UNUSED_PARAMETER(x);
  13235. UNUSED_PARAMETER(y);
  13236. UNUSED_PARAMETER(z);
  13237. Warning( "glVertexAttribI3iEXT", " not available." );
  13238. }
  13239. static void REGAL_CALL glVertexAttribI3ivEXT(GLuint index, const GLint *v)
  13240. {
  13241. UNUSED_PARAMETER(index);
  13242. UNUSED_PARAMETER(v);
  13243. Warning( "glVertexAttribI3ivEXT", " not available." );
  13244. }
  13245. static void REGAL_CALL glVertexAttribI3uiEXT(GLuint index, GLuint x, GLuint y, GLuint z)
  13246. {
  13247. UNUSED_PARAMETER(index);
  13248. UNUSED_PARAMETER(x);
  13249. UNUSED_PARAMETER(y);
  13250. UNUSED_PARAMETER(z);
  13251. Warning( "glVertexAttribI3uiEXT", " not available." );
  13252. }
  13253. static void REGAL_CALL glVertexAttribI3uivEXT(GLuint index, const GLuint *v)
  13254. {
  13255. UNUSED_PARAMETER(index);
  13256. UNUSED_PARAMETER(v);
  13257. Warning( "glVertexAttribI3uivEXT", " not available." );
  13258. }
  13259. static void REGAL_CALL glVertexAttribI4bvEXT(GLuint index, const GLbyte *v)
  13260. {
  13261. UNUSED_PARAMETER(index);
  13262. UNUSED_PARAMETER(v);
  13263. Warning( "glVertexAttribI4bvEXT", " not available." );
  13264. }
  13265. static void REGAL_CALL glVertexAttribI4iEXT(GLuint index, GLint x, GLint y, GLint z, GLint w)
  13266. {
  13267. UNUSED_PARAMETER(index);
  13268. UNUSED_PARAMETER(x);
  13269. UNUSED_PARAMETER(y);
  13270. UNUSED_PARAMETER(z);
  13271. UNUSED_PARAMETER(w);
  13272. Warning( "glVertexAttribI4iEXT", " not available." );
  13273. }
  13274. static void REGAL_CALL glVertexAttribI4ivEXT(GLuint index, const GLint *v)
  13275. {
  13276. UNUSED_PARAMETER(index);
  13277. UNUSED_PARAMETER(v);
  13278. Warning( "glVertexAttribI4ivEXT", " not available." );
  13279. }
  13280. static void REGAL_CALL glVertexAttribI4svEXT(GLuint index, const GLshort *v)
  13281. {
  13282. UNUSED_PARAMETER(index);
  13283. UNUSED_PARAMETER(v);
  13284. Warning( "glVertexAttribI4svEXT", " not available." );
  13285. }
  13286. static void REGAL_CALL glVertexAttribI4ubvEXT(GLuint index, const GLubyte *v)
  13287. {
  13288. UNUSED_PARAMETER(index);
  13289. UNUSED_PARAMETER(v);
  13290. Warning( "glVertexAttribI4ubvEXT", " not available." );
  13291. }
  13292. static void REGAL_CALL glVertexAttribI4uiEXT(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)
  13293. {
  13294. UNUSED_PARAMETER(index);
  13295. UNUSED_PARAMETER(x);
  13296. UNUSED_PARAMETER(y);
  13297. UNUSED_PARAMETER(z);
  13298. UNUSED_PARAMETER(w);
  13299. Warning( "glVertexAttribI4uiEXT", " not available." );
  13300. }
  13301. static void REGAL_CALL glVertexAttribI4uivEXT(GLuint index, const GLuint *v)
  13302. {
  13303. UNUSED_PARAMETER(index);
  13304. UNUSED_PARAMETER(v);
  13305. Warning( "glVertexAttribI4uivEXT", " not available." );
  13306. }
  13307. static void REGAL_CALL glVertexAttribI4usvEXT(GLuint index, const GLushort *v)
  13308. {
  13309. UNUSED_PARAMETER(index);
  13310. UNUSED_PARAMETER(v);
  13311. Warning( "glVertexAttribI4usvEXT", " not available." );
  13312. }
  13313. static void REGAL_CALL glVertexAttribIPointerEXT(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  13314. {
  13315. UNUSED_PARAMETER(index);
  13316. UNUSED_PARAMETER(size);
  13317. UNUSED_PARAMETER(type);
  13318. UNUSED_PARAMETER(stride);
  13319. UNUSED_PARAMETER(pointer);
  13320. Warning( "glVertexAttribIPointerEXT", " not available." );
  13321. }
  13322. // GL_EXT_histogram
  13323. static void REGAL_CALL glGetHistogramEXT(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
  13324. {
  13325. UNUSED_PARAMETER(target);
  13326. UNUSED_PARAMETER(reset);
  13327. UNUSED_PARAMETER(format);
  13328. UNUSED_PARAMETER(type);
  13329. UNUSED_PARAMETER(values);
  13330. Warning( "glGetHistogramEXT", " not available." );
  13331. }
  13332. static void REGAL_CALL glGetHistogramParameterfvEXT(GLenum target, GLenum pname, GLfloat *params)
  13333. {
  13334. UNUSED_PARAMETER(target);
  13335. UNUSED_PARAMETER(pname);
  13336. UNUSED_PARAMETER(params);
  13337. Warning( "glGetHistogramParameterfvEXT", " not available." );
  13338. }
  13339. static void REGAL_CALL glGetHistogramParameterivEXT(GLenum target, GLenum pname, GLint *params)
  13340. {
  13341. UNUSED_PARAMETER(target);
  13342. UNUSED_PARAMETER(pname);
  13343. UNUSED_PARAMETER(params);
  13344. Warning( "glGetHistogramParameterivEXT", " not available." );
  13345. }
  13346. static void REGAL_CALL glGetMinmaxEXT(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
  13347. {
  13348. UNUSED_PARAMETER(target);
  13349. UNUSED_PARAMETER(reset);
  13350. UNUSED_PARAMETER(format);
  13351. UNUSED_PARAMETER(type);
  13352. UNUSED_PARAMETER(values);
  13353. Warning( "glGetMinmaxEXT", " not available." );
  13354. }
  13355. static void REGAL_CALL glGetMinmaxParameterfvEXT(GLenum target, GLenum pname, GLfloat *params)
  13356. {
  13357. UNUSED_PARAMETER(target);
  13358. UNUSED_PARAMETER(pname);
  13359. UNUSED_PARAMETER(params);
  13360. Warning( "glGetMinmaxParameterfvEXT", " not available." );
  13361. }
  13362. static void REGAL_CALL glGetMinmaxParameterivEXT(GLenum target, GLenum pname, GLint *params)
  13363. {
  13364. UNUSED_PARAMETER(target);
  13365. UNUSED_PARAMETER(pname);
  13366. UNUSED_PARAMETER(params);
  13367. Warning( "glGetMinmaxParameterivEXT", " not available." );
  13368. }
  13369. static void REGAL_CALL glHistogramEXT(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink)
  13370. {
  13371. UNUSED_PARAMETER(target);
  13372. UNUSED_PARAMETER(width);
  13373. UNUSED_PARAMETER(internalformat);
  13374. UNUSED_PARAMETER(sink);
  13375. Warning( "glHistogramEXT", " not available." );
  13376. }
  13377. static void REGAL_CALL glMinmaxEXT(GLenum target, GLenum internalformat, GLboolean sink)
  13378. {
  13379. UNUSED_PARAMETER(target);
  13380. UNUSED_PARAMETER(internalformat);
  13381. UNUSED_PARAMETER(sink);
  13382. Warning( "glMinmaxEXT", " not available." );
  13383. }
  13384. static void REGAL_CALL glResetHistogramEXT(GLenum target)
  13385. {
  13386. UNUSED_PARAMETER(target);
  13387. Warning( "glResetHistogramEXT", " not available." );
  13388. }
  13389. static void REGAL_CALL glResetMinmaxEXT(GLenum target)
  13390. {
  13391. UNUSED_PARAMETER(target);
  13392. Warning( "glResetMinmaxEXT", " not available." );
  13393. }
  13394. // GL_EXT_index_func
  13395. static void REGAL_CALL glIndexFuncEXT(GLenum func, GLfloat ref)
  13396. {
  13397. UNUSED_PARAMETER(func);
  13398. UNUSED_PARAMETER(ref);
  13399. Warning( "glIndexFuncEXT", " not available." );
  13400. }
  13401. // GL_EXT_index_material
  13402. static void REGAL_CALL glIndexMaterialEXT(GLenum face, GLenum mode)
  13403. {
  13404. UNUSED_PARAMETER(face);
  13405. UNUSED_PARAMETER(mode);
  13406. Warning( "glIndexMaterialEXT", " not available." );
  13407. }
  13408. // GL_EXT_light_texture
  13409. static void REGAL_CALL glApplyTextureEXT(GLenum mode)
  13410. {
  13411. UNUSED_PARAMETER(mode);
  13412. Warning( "glApplyTextureEXT", " not available." );
  13413. }
  13414. static void REGAL_CALL glTextureLightEXT(GLenum pname)
  13415. {
  13416. UNUSED_PARAMETER(pname);
  13417. Warning( "glTextureLightEXT", " not available." );
  13418. }
  13419. static void REGAL_CALL glTextureMaterialEXT(GLenum face, GLenum mode)
  13420. {
  13421. UNUSED_PARAMETER(face);
  13422. UNUSED_PARAMETER(mode);
  13423. Warning( "glTextureMaterialEXT", " not available." );
  13424. }
  13425. // GL_EXT_map_buffer_range
  13426. static void REGAL_CALL glFlushMappedBufferRangeEXT(GLenum target, GLintptr offset, GLsizeiptr length)
  13427. {
  13428. UNUSED_PARAMETER(target);
  13429. UNUSED_PARAMETER(offset);
  13430. UNUSED_PARAMETER(length);
  13431. Warning( "glFlushMappedBufferRangeEXT", " not available." );
  13432. }
  13433. static GLvoid *REGAL_CALL glMapBufferRangeEXT(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
  13434. {
  13435. UNUSED_PARAMETER(target);
  13436. UNUSED_PARAMETER(offset);
  13437. UNUSED_PARAMETER(length);
  13438. UNUSED_PARAMETER(access);
  13439. Warning( "glMapBufferRangeEXT", " not available." );
  13440. return NULL;
  13441. }
  13442. // GL_EXT_multi_draw_arrays
  13443. static void REGAL_CALL glMultiDrawArraysEXT(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount)
  13444. {
  13445. UNUSED_PARAMETER(mode);
  13446. UNUSED_PARAMETER(first);
  13447. UNUSED_PARAMETER(count);
  13448. UNUSED_PARAMETER(primcount);
  13449. Warning( "glMultiDrawArraysEXT", " not available." );
  13450. }
  13451. static void REGAL_CALL glMultiDrawElementsEXT(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount)
  13452. {
  13453. UNUSED_PARAMETER(mode);
  13454. UNUSED_PARAMETER(count);
  13455. UNUSED_PARAMETER(type);
  13456. UNUSED_PARAMETER(indices);
  13457. UNUSED_PARAMETER(primcount);
  13458. Warning( "glMultiDrawElementsEXT", " not available." );
  13459. }
  13460. // GL_EXT_multisample
  13461. static void REGAL_CALL glSampleMaskEXT(GLclampf value, GLboolean invert)
  13462. {
  13463. UNUSED_PARAMETER(value);
  13464. UNUSED_PARAMETER(invert);
  13465. Warning( "glSampleMaskEXT", " not available." );
  13466. }
  13467. static void REGAL_CALL glSamplePatternEXT(GLenum pattern)
  13468. {
  13469. UNUSED_PARAMETER(pattern);
  13470. Warning( "glSamplePatternEXT", " not available." );
  13471. }
  13472. // GL_EXT_multisampled_render_to_texture
  13473. static void REGAL_CALL glFramebufferTexture2DMultisampleEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples)
  13474. {
  13475. UNUSED_PARAMETER(target);
  13476. UNUSED_PARAMETER(attachment);
  13477. UNUSED_PARAMETER(textarget);
  13478. UNUSED_PARAMETER(texture);
  13479. UNUSED_PARAMETER(level);
  13480. UNUSED_PARAMETER(samples);
  13481. Warning( "glFramebufferTexture2DMultisampleEXT", " not available." );
  13482. }
  13483. // GL_EXT_multiview_draw_buffers
  13484. static void REGAL_CALL glDrawBuffersIndexedEXT(GLint n, const GLenum *location, const GLint *indices)
  13485. {
  13486. UNUSED_PARAMETER(n);
  13487. UNUSED_PARAMETER(location);
  13488. UNUSED_PARAMETER(indices);
  13489. Warning( "glDrawBuffersIndexedEXT", " not available." );
  13490. }
  13491. static void REGAL_CALL glGetIntegeri_vEXT(GLenum target, GLuint index, GLint *data)
  13492. {
  13493. UNUSED_PARAMETER(target);
  13494. UNUSED_PARAMETER(index);
  13495. UNUSED_PARAMETER(data);
  13496. Warning( "glGetIntegeri_vEXT", " not available." );
  13497. }
  13498. static void REGAL_CALL glReadBufferIndexedEXT(GLenum src, GLint index)
  13499. {
  13500. UNUSED_PARAMETER(src);
  13501. UNUSED_PARAMETER(index);
  13502. Warning( "glReadBufferIndexedEXT", " not available." );
  13503. }
  13504. // GL_EXT_occlusion_query_boolean
  13505. static void REGAL_CALL glBeginQueryEXT(GLenum target, GLuint id)
  13506. {
  13507. UNUSED_PARAMETER(target);
  13508. UNUSED_PARAMETER(id);
  13509. Warning( "glBeginQueryEXT", " not available." );
  13510. }
  13511. static void REGAL_CALL glDeleteQueriesEXT(GLsizei n, const GLuint *ids)
  13512. {
  13513. UNUSED_PARAMETER(n);
  13514. UNUSED_PARAMETER(ids);
  13515. Warning( "glDeleteQueriesEXT", " not available." );
  13516. }
  13517. static void REGAL_CALL glEndQueryEXT(GLenum target)
  13518. {
  13519. UNUSED_PARAMETER(target);
  13520. Warning( "glEndQueryEXT", " not available." );
  13521. }
  13522. static void REGAL_CALL glGenQueriesEXT(GLsizei n, GLuint *ids)
  13523. {
  13524. UNUSED_PARAMETER(n);
  13525. UNUSED_PARAMETER(ids);
  13526. Warning( "glGenQueriesEXT", " not available." );
  13527. }
  13528. static void REGAL_CALL glGetQueryObjectuivEXT(GLuint id, GLenum pname, GLuint *params)
  13529. {
  13530. UNUSED_PARAMETER(id);
  13531. UNUSED_PARAMETER(pname);
  13532. UNUSED_PARAMETER(params);
  13533. Warning( "glGetQueryObjectuivEXT", " not available." );
  13534. }
  13535. static void REGAL_CALL glGetQueryivEXT(GLenum target, GLenum pname, GLint *params)
  13536. {
  13537. UNUSED_PARAMETER(target);
  13538. UNUSED_PARAMETER(pname);
  13539. UNUSED_PARAMETER(params);
  13540. Warning( "glGetQueryivEXT", " not available." );
  13541. }
  13542. static GLboolean REGAL_CALL glIsQueryEXT(GLuint id)
  13543. {
  13544. UNUSED_PARAMETER(id);
  13545. Warning( "glIsQueryEXT", " not available." );
  13546. return GL_FALSE;
  13547. }
  13548. // GL_EXT_paletted_texture
  13549. static void REGAL_CALL glColorTableEXT(GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *table)
  13550. {
  13551. UNUSED_PARAMETER(target);
  13552. UNUSED_PARAMETER(internalFormat);
  13553. UNUSED_PARAMETER(width);
  13554. UNUSED_PARAMETER(format);
  13555. UNUSED_PARAMETER(type);
  13556. UNUSED_PARAMETER(table);
  13557. Warning( "glColorTableEXT", " not available." );
  13558. }
  13559. static void REGAL_CALL glGetColorTableEXT(GLenum target, GLenum format, GLenum type, GLvoid *data)
  13560. {
  13561. UNUSED_PARAMETER(target);
  13562. UNUSED_PARAMETER(format);
  13563. UNUSED_PARAMETER(type);
  13564. UNUSED_PARAMETER(data);
  13565. Warning( "glGetColorTableEXT", " not available." );
  13566. }
  13567. static void REGAL_CALL glGetColorTableParameterfvEXT(GLenum target, GLenum pname, GLfloat *params)
  13568. {
  13569. UNUSED_PARAMETER(target);
  13570. UNUSED_PARAMETER(pname);
  13571. UNUSED_PARAMETER(params);
  13572. Warning( "glGetColorTableParameterfvEXT", " not available." );
  13573. }
  13574. static void REGAL_CALL glGetColorTableParameterivEXT(GLenum target, GLenum pname, GLint *params)
  13575. {
  13576. UNUSED_PARAMETER(target);
  13577. UNUSED_PARAMETER(pname);
  13578. UNUSED_PARAMETER(params);
  13579. Warning( "glGetColorTableParameterivEXT", " not available." );
  13580. }
  13581. // GL_EXT_pixel_transform
  13582. static void REGAL_CALL glGetPixelTransformParameterfvEXT(GLenum target, GLenum pname, GLfloat *params)
  13583. {
  13584. UNUSED_PARAMETER(target);
  13585. UNUSED_PARAMETER(pname);
  13586. UNUSED_PARAMETER(params);
  13587. Warning( "glGetPixelTransformParameterfvEXT", " not available." );
  13588. }
  13589. static void REGAL_CALL glGetPixelTransformParameterivEXT(GLenum target, GLenum pname, GLint *params)
  13590. {
  13591. UNUSED_PARAMETER(target);
  13592. UNUSED_PARAMETER(pname);
  13593. UNUSED_PARAMETER(params);
  13594. Warning( "glGetPixelTransformParameterivEXT", " not available." );
  13595. }
  13596. static void REGAL_CALL glPixelTransformParameterfEXT(GLenum target, GLenum pname, const GLfloat param)
  13597. {
  13598. UNUSED_PARAMETER(target);
  13599. UNUSED_PARAMETER(pname);
  13600. UNUSED_PARAMETER(param);
  13601. Warning( "glPixelTransformParameterfEXT", " not available." );
  13602. }
  13603. static void REGAL_CALL glPixelTransformParameterfvEXT(GLenum target, GLenum pname, const GLfloat *params)
  13604. {
  13605. UNUSED_PARAMETER(target);
  13606. UNUSED_PARAMETER(pname);
  13607. UNUSED_PARAMETER(params);
  13608. Warning( "glPixelTransformParameterfvEXT", " not available." );
  13609. }
  13610. static void REGAL_CALL glPixelTransformParameteriEXT(GLenum target, GLenum pname, const GLint param)
  13611. {
  13612. UNUSED_PARAMETER(target);
  13613. UNUSED_PARAMETER(pname);
  13614. UNUSED_PARAMETER(param);
  13615. Warning( "glPixelTransformParameteriEXT", " not available." );
  13616. }
  13617. static void REGAL_CALL glPixelTransformParameterivEXT(GLenum target, GLenum pname, const GLint *params)
  13618. {
  13619. UNUSED_PARAMETER(target);
  13620. UNUSED_PARAMETER(pname);
  13621. UNUSED_PARAMETER(params);
  13622. Warning( "glPixelTransformParameterivEXT", " not available." );
  13623. }
  13624. // GL_EXT_point_parameters
  13625. static void REGAL_CALL glPointParameterfEXT(GLenum pname, GLfloat param)
  13626. {
  13627. UNUSED_PARAMETER(pname);
  13628. UNUSED_PARAMETER(param);
  13629. Warning( "glPointParameterfEXT", " not available." );
  13630. }
  13631. static void REGAL_CALL glPointParameterfvEXT(GLenum pname, const GLfloat *params)
  13632. {
  13633. UNUSED_PARAMETER(pname);
  13634. UNUSED_PARAMETER(params);
  13635. Warning( "glPointParameterfvEXT", " not available." );
  13636. }
  13637. // GL_EXT_polygon_offset
  13638. static void REGAL_CALL glPolygonOffsetEXT(GLfloat factor, GLfloat bias)
  13639. {
  13640. UNUSED_PARAMETER(factor);
  13641. UNUSED_PARAMETER(bias);
  13642. Warning( "glPolygonOffsetEXT", " not available." );
  13643. }
  13644. // GL_EXT_provoking_vertex
  13645. static void REGAL_CALL glProvokingVertexEXT(GLenum mode)
  13646. {
  13647. UNUSED_PARAMETER(mode);
  13648. Warning( "glProvokingVertexEXT", " not available." );
  13649. }
  13650. // GL_EXT_robustness
  13651. static void REGAL_CALL glGetnUniformfvEXT(GLuint program, GLint location, GLsizei bufSize, GLfloat *params)
  13652. {
  13653. UNUSED_PARAMETER(program);
  13654. UNUSED_PARAMETER(location);
  13655. UNUSED_PARAMETER(bufSize);
  13656. UNUSED_PARAMETER(params);
  13657. Warning( "glGetnUniformfvEXT", " not available." );
  13658. }
  13659. static void REGAL_CALL glGetnUniformivEXT(GLuint program, GLint location, GLsizei bufSize, GLint *params)
  13660. {
  13661. UNUSED_PARAMETER(program);
  13662. UNUSED_PARAMETER(location);
  13663. UNUSED_PARAMETER(bufSize);
  13664. UNUSED_PARAMETER(params);
  13665. Warning( "glGetnUniformivEXT", " not available." );
  13666. }
  13667. static void REGAL_CALL glReadnPixelsEXT(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data)
  13668. {
  13669. UNUSED_PARAMETER(x);
  13670. UNUSED_PARAMETER(y);
  13671. UNUSED_PARAMETER(width);
  13672. UNUSED_PARAMETER(height);
  13673. UNUSED_PARAMETER(format);
  13674. UNUSED_PARAMETER(type);
  13675. UNUSED_PARAMETER(bufSize);
  13676. UNUSED_PARAMETER(data);
  13677. Warning( "glReadnPixelsEXT", " not available." );
  13678. }
  13679. // GL_EXT_scene_marker
  13680. static void REGAL_CALL glBeginSceneEXT(void)
  13681. {
  13682. Warning( "glBeginSceneEXT", " not available." );
  13683. }
  13684. static void REGAL_CALL glEndSceneEXT(void)
  13685. {
  13686. Warning( "glEndSceneEXT", " not available." );
  13687. }
  13688. // GL_EXT_secondary_color
  13689. static void REGAL_CALL glSecondaryColor3bEXT(GLbyte red, GLbyte green, GLbyte blue)
  13690. {
  13691. UNUSED_PARAMETER(red);
  13692. UNUSED_PARAMETER(green);
  13693. UNUSED_PARAMETER(blue);
  13694. Warning( "glSecondaryColor3bEXT", " not available." );
  13695. }
  13696. static void REGAL_CALL glSecondaryColor3bvEXT(const GLbyte *v)
  13697. {
  13698. UNUSED_PARAMETER(v);
  13699. Warning( "glSecondaryColor3bvEXT", " not available." );
  13700. }
  13701. static void REGAL_CALL glSecondaryColor3dEXT(GLdouble red, GLdouble green, GLdouble blue)
  13702. {
  13703. UNUSED_PARAMETER(red);
  13704. UNUSED_PARAMETER(green);
  13705. UNUSED_PARAMETER(blue);
  13706. Warning( "glSecondaryColor3dEXT", " not available." );
  13707. }
  13708. static void REGAL_CALL glSecondaryColor3dvEXT(const GLdouble *v)
  13709. {
  13710. UNUSED_PARAMETER(v);
  13711. Warning( "glSecondaryColor3dvEXT", " not available." );
  13712. }
  13713. static void REGAL_CALL glSecondaryColor3fEXT(GLfloat red, GLfloat green, GLfloat blue)
  13714. {
  13715. UNUSED_PARAMETER(red);
  13716. UNUSED_PARAMETER(green);
  13717. UNUSED_PARAMETER(blue);
  13718. Warning( "glSecondaryColor3fEXT", " not available." );
  13719. }
  13720. static void REGAL_CALL glSecondaryColor3fvEXT(const GLfloat *v)
  13721. {
  13722. UNUSED_PARAMETER(v);
  13723. Warning( "glSecondaryColor3fvEXT", " not available." );
  13724. }
  13725. static void REGAL_CALL glSecondaryColor3iEXT(GLint red, GLint green, GLint blue)
  13726. {
  13727. UNUSED_PARAMETER(red);
  13728. UNUSED_PARAMETER(green);
  13729. UNUSED_PARAMETER(blue);
  13730. Warning( "glSecondaryColor3iEXT", " not available." );
  13731. }
  13732. static void REGAL_CALL glSecondaryColor3ivEXT(const GLint *v)
  13733. {
  13734. UNUSED_PARAMETER(v);
  13735. Warning( "glSecondaryColor3ivEXT", " not available." );
  13736. }
  13737. static void REGAL_CALL glSecondaryColor3sEXT(GLshort red, GLshort green, GLshort blue)
  13738. {
  13739. UNUSED_PARAMETER(red);
  13740. UNUSED_PARAMETER(green);
  13741. UNUSED_PARAMETER(blue);
  13742. Warning( "glSecondaryColor3sEXT", " not available." );
  13743. }
  13744. static void REGAL_CALL glSecondaryColor3svEXT(const GLshort *v)
  13745. {
  13746. UNUSED_PARAMETER(v);
  13747. Warning( "glSecondaryColor3svEXT", " not available." );
  13748. }
  13749. static void REGAL_CALL glSecondaryColor3ubEXT(GLubyte red, GLubyte green, GLubyte blue)
  13750. {
  13751. UNUSED_PARAMETER(red);
  13752. UNUSED_PARAMETER(green);
  13753. UNUSED_PARAMETER(blue);
  13754. Warning( "glSecondaryColor3ubEXT", " not available." );
  13755. }
  13756. static void REGAL_CALL glSecondaryColor3ubvEXT(const GLubyte *v)
  13757. {
  13758. UNUSED_PARAMETER(v);
  13759. Warning( "glSecondaryColor3ubvEXT", " not available." );
  13760. }
  13761. static void REGAL_CALL glSecondaryColor3uiEXT(GLuint red, GLuint green, GLuint blue)
  13762. {
  13763. UNUSED_PARAMETER(red);
  13764. UNUSED_PARAMETER(green);
  13765. UNUSED_PARAMETER(blue);
  13766. Warning( "glSecondaryColor3uiEXT", " not available." );
  13767. }
  13768. static void REGAL_CALL glSecondaryColor3uivEXT(const GLuint *v)
  13769. {
  13770. UNUSED_PARAMETER(v);
  13771. Warning( "glSecondaryColor3uivEXT", " not available." );
  13772. }
  13773. static void REGAL_CALL glSecondaryColor3usEXT(GLushort red, GLushort green, GLushort blue)
  13774. {
  13775. UNUSED_PARAMETER(red);
  13776. UNUSED_PARAMETER(green);
  13777. UNUSED_PARAMETER(blue);
  13778. Warning( "glSecondaryColor3usEXT", " not available." );
  13779. }
  13780. static void REGAL_CALL glSecondaryColor3usvEXT(const GLushort *v)
  13781. {
  13782. UNUSED_PARAMETER(v);
  13783. Warning( "glSecondaryColor3usvEXT", " not available." );
  13784. }
  13785. static void REGAL_CALL glSecondaryColorPointerEXT(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  13786. {
  13787. UNUSED_PARAMETER(size);
  13788. UNUSED_PARAMETER(type);
  13789. UNUSED_PARAMETER(stride);
  13790. UNUSED_PARAMETER(pointer);
  13791. Warning( "glSecondaryColorPointerEXT", " not available." );
  13792. }
  13793. // GL_EXT_separate_shader_objects
  13794. static void REGAL_CALL glActiveProgramEXT(GLuint program)
  13795. {
  13796. UNUSED_PARAMETER(program);
  13797. Warning( "glActiveProgramEXT", " not available." );
  13798. }
  13799. static GLuint REGAL_CALL glCreateShaderProgramEXT(GLenum type, const GLchar *string)
  13800. {
  13801. UNUSED_PARAMETER(type);
  13802. UNUSED_PARAMETER(string);
  13803. Warning( "glCreateShaderProgramEXT", " not available." );
  13804. return 0;
  13805. }
  13806. static void REGAL_CALL glUseShaderProgramEXT(GLenum type, GLuint program)
  13807. {
  13808. UNUSED_PARAMETER(type);
  13809. UNUSED_PARAMETER(program);
  13810. Warning( "glUseShaderProgramEXT", " not available." );
  13811. }
  13812. // GL_EXT_shader_image_load_store
  13813. static void REGAL_CALL glBindImageTextureEXT(GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format)
  13814. {
  13815. UNUSED_PARAMETER(index);
  13816. UNUSED_PARAMETER(texture);
  13817. UNUSED_PARAMETER(level);
  13818. UNUSED_PARAMETER(layered);
  13819. UNUSED_PARAMETER(layer);
  13820. UNUSED_PARAMETER(access);
  13821. UNUSED_PARAMETER(format);
  13822. Warning( "glBindImageTextureEXT", " not available." );
  13823. }
  13824. static void REGAL_CALL glMemoryBarrierEXT(GLbitfield barriers)
  13825. {
  13826. UNUSED_PARAMETER(barriers);
  13827. Warning( "glMemoryBarrierEXT", " not available." );
  13828. }
  13829. // GL_EXT_stencil_clear_tag
  13830. static void REGAL_CALL glStencilClearTagEXT(GLsizei stencilTagBits, GLuint stencilClearTag)
  13831. {
  13832. UNUSED_PARAMETER(stencilTagBits);
  13833. UNUSED_PARAMETER(stencilClearTag);
  13834. Warning( "glStencilClearTagEXT", " not available." );
  13835. }
  13836. // GL_EXT_stencil_two_side
  13837. static void REGAL_CALL glActiveStencilFaceEXT(GLenum face)
  13838. {
  13839. UNUSED_PARAMETER(face);
  13840. Warning( "glActiveStencilFaceEXT", " not available." );
  13841. }
  13842. // GL_EXT_subtexture
  13843. static void REGAL_CALL glTexSubImage1DEXT(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels)
  13844. {
  13845. UNUSED_PARAMETER(target);
  13846. UNUSED_PARAMETER(level);
  13847. UNUSED_PARAMETER(xoffset);
  13848. UNUSED_PARAMETER(width);
  13849. UNUSED_PARAMETER(format);
  13850. UNUSED_PARAMETER(type);
  13851. UNUSED_PARAMETER(pixels);
  13852. Warning( "glTexSubImage1DEXT", " not available." );
  13853. }
  13854. static void REGAL_CALL glTexSubImage2DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
  13855. {
  13856. UNUSED_PARAMETER(target);
  13857. UNUSED_PARAMETER(level);
  13858. UNUSED_PARAMETER(xoffset);
  13859. UNUSED_PARAMETER(yoffset);
  13860. UNUSED_PARAMETER(width);
  13861. UNUSED_PARAMETER(height);
  13862. UNUSED_PARAMETER(format);
  13863. UNUSED_PARAMETER(type);
  13864. UNUSED_PARAMETER(pixels);
  13865. Warning( "glTexSubImage2DEXT", " not available." );
  13866. }
  13867. static void REGAL_CALL glTexSubImage3DEXT(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels)
  13868. {
  13869. UNUSED_PARAMETER(target);
  13870. UNUSED_PARAMETER(level);
  13871. UNUSED_PARAMETER(xoffset);
  13872. UNUSED_PARAMETER(yoffset);
  13873. UNUSED_PARAMETER(zoffset);
  13874. UNUSED_PARAMETER(width);
  13875. UNUSED_PARAMETER(height);
  13876. UNUSED_PARAMETER(depth);
  13877. UNUSED_PARAMETER(format);
  13878. UNUSED_PARAMETER(type);
  13879. UNUSED_PARAMETER(pixels);
  13880. Warning( "glTexSubImage3DEXT", " not available." );
  13881. }
  13882. // GL_EXT_texture3D
  13883. static void REGAL_CALL glTexImage3DEXT(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
  13884. {
  13885. UNUSED_PARAMETER(target);
  13886. UNUSED_PARAMETER(level);
  13887. UNUSED_PARAMETER(internalformat);
  13888. UNUSED_PARAMETER(width);
  13889. UNUSED_PARAMETER(height);
  13890. UNUSED_PARAMETER(depth);
  13891. UNUSED_PARAMETER(border);
  13892. UNUSED_PARAMETER(format);
  13893. UNUSED_PARAMETER(type);
  13894. UNUSED_PARAMETER(pixels);
  13895. Warning( "glTexImage3DEXT", " not available." );
  13896. }
  13897. // GL_EXT_texture_array
  13898. static void REGAL_CALL glFramebufferTextureLayerEXT(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)
  13899. {
  13900. UNUSED_PARAMETER(target);
  13901. UNUSED_PARAMETER(attachment);
  13902. UNUSED_PARAMETER(texture);
  13903. UNUSED_PARAMETER(level);
  13904. UNUSED_PARAMETER(layer);
  13905. Warning( "glFramebufferTextureLayerEXT", " not available." );
  13906. }
  13907. // GL_EXT_texture_buffer_object
  13908. static void REGAL_CALL glTexBufferEXT(GLenum target, GLenum internalformat, GLuint buffer)
  13909. {
  13910. UNUSED_PARAMETER(target);
  13911. UNUSED_PARAMETER(internalformat);
  13912. UNUSED_PARAMETER(buffer);
  13913. Warning( "glTexBufferEXT", " not available." );
  13914. }
  13915. // GL_EXT_texture_integer
  13916. static void REGAL_CALL glClearColorIiEXT(GLint red, GLint green, GLint blue, GLint alpha)
  13917. {
  13918. UNUSED_PARAMETER(red);
  13919. UNUSED_PARAMETER(green);
  13920. UNUSED_PARAMETER(blue);
  13921. UNUSED_PARAMETER(alpha);
  13922. Warning( "glClearColorIiEXT", " not available." );
  13923. }
  13924. static void REGAL_CALL glClearColorIuiEXT(GLuint red, GLuint green, GLuint blue, GLuint alpha)
  13925. {
  13926. UNUSED_PARAMETER(red);
  13927. UNUSED_PARAMETER(green);
  13928. UNUSED_PARAMETER(blue);
  13929. UNUSED_PARAMETER(alpha);
  13930. Warning( "glClearColorIuiEXT", " not available." );
  13931. }
  13932. static void REGAL_CALL glGetTexParameterIivEXT(GLenum target, GLenum pname, GLint *params)
  13933. {
  13934. UNUSED_PARAMETER(target);
  13935. UNUSED_PARAMETER(pname);
  13936. UNUSED_PARAMETER(params);
  13937. Warning( "glGetTexParameterIivEXT", " not available." );
  13938. }
  13939. static void REGAL_CALL glGetTexParameterIuivEXT(GLenum target, GLenum pname, GLuint *params)
  13940. {
  13941. UNUSED_PARAMETER(target);
  13942. UNUSED_PARAMETER(pname);
  13943. UNUSED_PARAMETER(params);
  13944. Warning( "glGetTexParameterIuivEXT", " not available." );
  13945. }
  13946. static void REGAL_CALL glTexParameterIivEXT(GLenum target, GLenum pname, const GLint *params)
  13947. {
  13948. UNUSED_PARAMETER(target);
  13949. UNUSED_PARAMETER(pname);
  13950. UNUSED_PARAMETER(params);
  13951. Warning( "glTexParameterIivEXT", " not available." );
  13952. }
  13953. static void REGAL_CALL glTexParameterIuivEXT(GLenum target, GLenum pname, const GLuint *params)
  13954. {
  13955. UNUSED_PARAMETER(target);
  13956. UNUSED_PARAMETER(pname);
  13957. UNUSED_PARAMETER(params);
  13958. Warning( "glTexParameterIuivEXT", " not available." );
  13959. }
  13960. // GL_EXT_texture_object
  13961. static GLboolean REGAL_CALL glAreTexturesResidentEXT(GLsizei n, const GLuint *textures, GLboolean *residences)
  13962. {
  13963. UNUSED_PARAMETER(n);
  13964. UNUSED_PARAMETER(textures);
  13965. UNUSED_PARAMETER(residences);
  13966. Warning( "glAreTexturesResidentEXT", " not available." );
  13967. return GL_FALSE;
  13968. }
  13969. static void REGAL_CALL glBindTextureEXT(GLenum target, GLuint texture)
  13970. {
  13971. UNUSED_PARAMETER(target);
  13972. UNUSED_PARAMETER(texture);
  13973. Warning( "glBindTextureEXT", " not available." );
  13974. }
  13975. static void REGAL_CALL glDeleteTexturesEXT(GLsizei n, const GLuint *textures)
  13976. {
  13977. UNUSED_PARAMETER(n);
  13978. UNUSED_PARAMETER(textures);
  13979. Warning( "glDeleteTexturesEXT", " not available." );
  13980. }
  13981. static void REGAL_CALL glGenTexturesEXT(GLsizei n, GLuint *textures)
  13982. {
  13983. UNUSED_PARAMETER(n);
  13984. UNUSED_PARAMETER(textures);
  13985. Warning( "glGenTexturesEXT", " not available." );
  13986. }
  13987. static GLboolean REGAL_CALL glIsTextureEXT(GLuint texture)
  13988. {
  13989. UNUSED_PARAMETER(texture);
  13990. Warning( "glIsTextureEXT", " not available." );
  13991. return GL_FALSE;
  13992. }
  13993. static void REGAL_CALL glPrioritizeTexturesEXT(GLsizei n, const GLuint *textures, const GLclampf *priorities)
  13994. {
  13995. UNUSED_PARAMETER(n);
  13996. UNUSED_PARAMETER(textures);
  13997. UNUSED_PARAMETER(priorities);
  13998. Warning( "glPrioritizeTexturesEXT", " not available." );
  13999. }
  14000. // GL_EXT_texture_perturb_normal
  14001. static void REGAL_CALL glTextureNormalEXT(GLenum mode)
  14002. {
  14003. UNUSED_PARAMETER(mode);
  14004. Warning( "glTextureNormalEXT", " not available." );
  14005. }
  14006. // GL_EXT_texture_storage
  14007. static void REGAL_CALL glTexStorage1DEXT(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width)
  14008. {
  14009. UNUSED_PARAMETER(target);
  14010. UNUSED_PARAMETER(levels);
  14011. UNUSED_PARAMETER(internalformat);
  14012. UNUSED_PARAMETER(width);
  14013. Warning( "glTexStorage1DEXT", " not available." );
  14014. }
  14015. static void REGAL_CALL glTexStorage2DEXT(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
  14016. {
  14017. UNUSED_PARAMETER(target);
  14018. UNUSED_PARAMETER(levels);
  14019. UNUSED_PARAMETER(internalformat);
  14020. UNUSED_PARAMETER(width);
  14021. UNUSED_PARAMETER(height);
  14022. Warning( "glTexStorage2DEXT", " not available." );
  14023. }
  14024. static void REGAL_CALL glTexStorage3DEXT(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth)
  14025. {
  14026. UNUSED_PARAMETER(target);
  14027. UNUSED_PARAMETER(levels);
  14028. UNUSED_PARAMETER(internalformat);
  14029. UNUSED_PARAMETER(width);
  14030. UNUSED_PARAMETER(height);
  14031. UNUSED_PARAMETER(depth);
  14032. Warning( "glTexStorage3DEXT", " not available." );
  14033. }
  14034. // GL_EXT_timer_query
  14035. static void REGAL_CALL glGetQueryObjecti64vEXT(GLuint id, GLenum pname, GLint64EXT *params)
  14036. {
  14037. UNUSED_PARAMETER(id);
  14038. UNUSED_PARAMETER(pname);
  14039. UNUSED_PARAMETER(params);
  14040. Warning( "glGetQueryObjecti64vEXT", " not available." );
  14041. }
  14042. static void REGAL_CALL glGetQueryObjectui64vEXT(GLuint id, GLenum pname, GLuint64EXT *params)
  14043. {
  14044. UNUSED_PARAMETER(id);
  14045. UNUSED_PARAMETER(pname);
  14046. UNUSED_PARAMETER(params);
  14047. Warning( "glGetQueryObjectui64vEXT", " not available." );
  14048. }
  14049. // GL_EXT_transform_feedback
  14050. static void REGAL_CALL glBeginTransformFeedbackEXT(GLenum primitiveMode)
  14051. {
  14052. UNUSED_PARAMETER(primitiveMode);
  14053. Warning( "glBeginTransformFeedbackEXT", " not available." );
  14054. }
  14055. static void REGAL_CALL glBindBufferBaseEXT(GLenum target, GLuint index, GLuint buffer)
  14056. {
  14057. UNUSED_PARAMETER(target);
  14058. UNUSED_PARAMETER(index);
  14059. UNUSED_PARAMETER(buffer);
  14060. Warning( "glBindBufferBaseEXT", " not available." );
  14061. }
  14062. static void REGAL_CALL glBindBufferOffsetEXT(GLenum target, GLuint index, GLuint buffer, GLintptr offset)
  14063. {
  14064. UNUSED_PARAMETER(target);
  14065. UNUSED_PARAMETER(index);
  14066. UNUSED_PARAMETER(buffer);
  14067. UNUSED_PARAMETER(offset);
  14068. Warning( "glBindBufferOffsetEXT", " not available." );
  14069. }
  14070. static void REGAL_CALL glBindBufferRangeEXT(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)
  14071. {
  14072. UNUSED_PARAMETER(target);
  14073. UNUSED_PARAMETER(index);
  14074. UNUSED_PARAMETER(buffer);
  14075. UNUSED_PARAMETER(offset);
  14076. UNUSED_PARAMETER(size);
  14077. Warning( "glBindBufferRangeEXT", " not available." );
  14078. }
  14079. static void REGAL_CALL glEndTransformFeedbackEXT(void)
  14080. {
  14081. Warning( "glEndTransformFeedbackEXT", " not available." );
  14082. }
  14083. static void REGAL_CALL glGetTransformFeedbackVaryingEXT(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name)
  14084. {
  14085. UNUSED_PARAMETER(program);
  14086. UNUSED_PARAMETER(index);
  14087. UNUSED_PARAMETER(bufSize);
  14088. UNUSED_PARAMETER(length);
  14089. UNUSED_PARAMETER(size);
  14090. UNUSED_PARAMETER(type);
  14091. UNUSED_PARAMETER(name);
  14092. Warning( "glGetTransformFeedbackVaryingEXT", " not available." );
  14093. }
  14094. static void REGAL_CALL glTransformFeedbackVaryingsEXT(GLuint program, GLsizei count, const GLchar ** const varyings, GLenum bufferMode)
  14095. {
  14096. UNUSED_PARAMETER(program);
  14097. UNUSED_PARAMETER(count);
  14098. UNUSED_PARAMETER(varyings);
  14099. UNUSED_PARAMETER(bufferMode);
  14100. Warning( "glTransformFeedbackVaryingsEXT", " not available." );
  14101. }
  14102. // GL_EXT_vertex_array
  14103. static void REGAL_CALL glArrayElementEXT(GLint i)
  14104. {
  14105. UNUSED_PARAMETER(i);
  14106. Warning( "glArrayElementEXT", " not available." );
  14107. }
  14108. static void REGAL_CALL glColorPointerEXT(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)
  14109. {
  14110. UNUSED_PARAMETER(size);
  14111. UNUSED_PARAMETER(type);
  14112. UNUSED_PARAMETER(stride);
  14113. UNUSED_PARAMETER(count);
  14114. UNUSED_PARAMETER(pointer);
  14115. Warning( "glColorPointerEXT", " not available." );
  14116. }
  14117. static void REGAL_CALL glDrawArraysEXT(GLenum mode, GLint first, GLsizei count)
  14118. {
  14119. UNUSED_PARAMETER(mode);
  14120. UNUSED_PARAMETER(first);
  14121. UNUSED_PARAMETER(count);
  14122. Warning( "glDrawArraysEXT", " not available." );
  14123. }
  14124. static void REGAL_CALL glEdgeFlagPointerEXT(GLsizei stride, GLsizei count, const GLboolean *pointer)
  14125. {
  14126. UNUSED_PARAMETER(stride);
  14127. UNUSED_PARAMETER(count);
  14128. UNUSED_PARAMETER(pointer);
  14129. Warning( "glEdgeFlagPointerEXT", " not available." );
  14130. }
  14131. static void REGAL_CALL glGetPointervEXT(GLenum pname, GLvoid **params)
  14132. {
  14133. UNUSED_PARAMETER(pname);
  14134. UNUSED_PARAMETER(params);
  14135. Warning( "glGetPointervEXT", " not available." );
  14136. }
  14137. static void REGAL_CALL glIndexPointerEXT(GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)
  14138. {
  14139. UNUSED_PARAMETER(type);
  14140. UNUSED_PARAMETER(stride);
  14141. UNUSED_PARAMETER(count);
  14142. UNUSED_PARAMETER(pointer);
  14143. Warning( "glIndexPointerEXT", " not available." );
  14144. }
  14145. static void REGAL_CALL glNormalPointerEXT(GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)
  14146. {
  14147. UNUSED_PARAMETER(type);
  14148. UNUSED_PARAMETER(stride);
  14149. UNUSED_PARAMETER(count);
  14150. UNUSED_PARAMETER(pointer);
  14151. Warning( "glNormalPointerEXT", " not available." );
  14152. }
  14153. static void REGAL_CALL glTexCoordPointerEXT(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)
  14154. {
  14155. UNUSED_PARAMETER(size);
  14156. UNUSED_PARAMETER(type);
  14157. UNUSED_PARAMETER(stride);
  14158. UNUSED_PARAMETER(count);
  14159. UNUSED_PARAMETER(pointer);
  14160. Warning( "glTexCoordPointerEXT", " not available." );
  14161. }
  14162. static void REGAL_CALL glVertexPointerEXT(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)
  14163. {
  14164. UNUSED_PARAMETER(size);
  14165. UNUSED_PARAMETER(type);
  14166. UNUSED_PARAMETER(stride);
  14167. UNUSED_PARAMETER(count);
  14168. UNUSED_PARAMETER(pointer);
  14169. Warning( "glVertexPointerEXT", " not available." );
  14170. }
  14171. // GL_EXT_vertex_attrib_64bit
  14172. static void REGAL_CALL glGetVertexAttribLdvEXT(GLuint index, GLenum pname, GLdouble *params)
  14173. {
  14174. UNUSED_PARAMETER(index);
  14175. UNUSED_PARAMETER(pname);
  14176. UNUSED_PARAMETER(params);
  14177. Warning( "glGetVertexAttribLdvEXT", " not available." );
  14178. }
  14179. static void REGAL_CALL glVertexArrayVertexAttribLOffsetEXT(GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset)
  14180. {
  14181. UNUSED_PARAMETER(vaobj);
  14182. UNUSED_PARAMETER(buffer);
  14183. UNUSED_PARAMETER(index);
  14184. UNUSED_PARAMETER(size);
  14185. UNUSED_PARAMETER(type);
  14186. UNUSED_PARAMETER(stride);
  14187. UNUSED_PARAMETER(offset);
  14188. Warning( "glVertexArrayVertexAttribLOffsetEXT", " not available." );
  14189. }
  14190. static void REGAL_CALL glVertexAttribL1dEXT(GLuint index, GLdouble x)
  14191. {
  14192. UNUSED_PARAMETER(index);
  14193. UNUSED_PARAMETER(x);
  14194. Warning( "glVertexAttribL1dEXT", " not available." );
  14195. }
  14196. static void REGAL_CALL glVertexAttribL1dvEXT(GLuint index, const GLdouble *v)
  14197. {
  14198. UNUSED_PARAMETER(index);
  14199. UNUSED_PARAMETER(v);
  14200. Warning( "glVertexAttribL1dvEXT", " not available." );
  14201. }
  14202. static void REGAL_CALL glVertexAttribL2dEXT(GLuint index, GLdouble x, GLdouble y)
  14203. {
  14204. UNUSED_PARAMETER(index);
  14205. UNUSED_PARAMETER(x);
  14206. UNUSED_PARAMETER(y);
  14207. Warning( "glVertexAttribL2dEXT", " not available." );
  14208. }
  14209. static void REGAL_CALL glVertexAttribL2dvEXT(GLuint index, const GLdouble *v)
  14210. {
  14211. UNUSED_PARAMETER(index);
  14212. UNUSED_PARAMETER(v);
  14213. Warning( "glVertexAttribL2dvEXT", " not available." );
  14214. }
  14215. static void REGAL_CALL glVertexAttribL3dEXT(GLuint index, GLdouble x, GLdouble y, GLdouble z)
  14216. {
  14217. UNUSED_PARAMETER(index);
  14218. UNUSED_PARAMETER(x);
  14219. UNUSED_PARAMETER(y);
  14220. UNUSED_PARAMETER(z);
  14221. Warning( "glVertexAttribL3dEXT", " not available." );
  14222. }
  14223. static void REGAL_CALL glVertexAttribL3dvEXT(GLuint index, const GLdouble *v)
  14224. {
  14225. UNUSED_PARAMETER(index);
  14226. UNUSED_PARAMETER(v);
  14227. Warning( "glVertexAttribL3dvEXT", " not available." );
  14228. }
  14229. static void REGAL_CALL glVertexAttribL4dEXT(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
  14230. {
  14231. UNUSED_PARAMETER(index);
  14232. UNUSED_PARAMETER(x);
  14233. UNUSED_PARAMETER(y);
  14234. UNUSED_PARAMETER(z);
  14235. UNUSED_PARAMETER(w);
  14236. Warning( "glVertexAttribL4dEXT", " not available." );
  14237. }
  14238. static void REGAL_CALL glVertexAttribL4dvEXT(GLuint index, const GLdouble *v)
  14239. {
  14240. UNUSED_PARAMETER(index);
  14241. UNUSED_PARAMETER(v);
  14242. Warning( "glVertexAttribL4dvEXT", " not available." );
  14243. }
  14244. static void REGAL_CALL glVertexAttribLPointerEXT(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
  14245. {
  14246. UNUSED_PARAMETER(index);
  14247. UNUSED_PARAMETER(size);
  14248. UNUSED_PARAMETER(type);
  14249. UNUSED_PARAMETER(stride);
  14250. UNUSED_PARAMETER(pointer);
  14251. Warning( "glVertexAttribLPointerEXT", " not available." );
  14252. }
  14253. // GL_EXT_vertex_shader
  14254. static void REGAL_CALL glBeginVertexShaderEXT(void)
  14255. {
  14256. Warning( "glBeginVertexShaderEXT", " not available." );
  14257. }
  14258. static GLuint REGAL_CALL glBindLightParameterEXT(GLenum light, GLenum value)
  14259. {
  14260. UNUSED_PARAMETER(light);
  14261. UNUSED_PARAMETER(value);
  14262. Warning( "glBindLightParameterEXT", " not available." );
  14263. return 0;
  14264. }
  14265. static GLuint REGAL_CALL glBindMaterialParameterEXT(GLenum face, GLenum value)
  14266. {
  14267. UNUSED_PARAMETER(face);
  14268. UNUSED_PARAMETER(value);
  14269. Warning( "glBindMaterialParameterEXT", " not available." );
  14270. return 0;
  14271. }
  14272. static GLuint REGAL_CALL glBindParameterEXT(GLenum value)
  14273. {
  14274. UNUSED_PARAMETER(value);
  14275. Warning( "glBindParameterEXT", " not available." );
  14276. return 0;
  14277. }
  14278. static GLuint REGAL_CALL glBindTexGenParameterEXT(GLenum unit, GLenum coord, GLenum value)
  14279. {
  14280. UNUSED_PARAMETER(unit);
  14281. UNUSED_PARAMETER(coord);
  14282. UNUSED_PARAMETER(value);
  14283. Warning( "glBindTexGenParameterEXT", " not available." );
  14284. return 0;
  14285. }
  14286. static GLuint REGAL_CALL glBindTextureUnitParameterEXT(GLenum unit, GLenum value)
  14287. {
  14288. UNUSED_PARAMETER(unit);
  14289. UNUSED_PARAMETER(value);
  14290. Warning( "glBindTextureUnitParameterEXT", " not available." );
  14291. return 0;
  14292. }
  14293. static void REGAL_CALL glBindVertexShaderEXT(GLuint id)
  14294. {
  14295. UNUSED_PARAMETER(id);
  14296. Warning( "glBindVertexShaderEXT", " not available." );
  14297. }
  14298. static void REGAL_CALL glDeleteVertexShaderEXT(GLuint id)
  14299. {
  14300. UNUSED_PARAMETER(id);
  14301. Warning( "glDeleteVertexShaderEXT", " not available." );
  14302. }
  14303. static void REGAL_CALL glDisableVariantClientStateEXT(GLuint id)
  14304. {
  14305. UNUSED_PARAMETER(id);
  14306. Warning( "glDisableVariantClientStateEXT", " not available." );
  14307. }
  14308. static void REGAL_CALL glEnableVariantClientStateEXT(GLuint id)
  14309. {
  14310. UNUSED_PARAMETER(id);
  14311. Warning( "glEnableVariantClientStateEXT", " not available." );
  14312. }
  14313. static void REGAL_CALL glEndVertexShaderEXT(void)
  14314. {
  14315. Warning( "glEndVertexShaderEXT", " not available." );
  14316. }
  14317. static void REGAL_CALL glExtractComponentEXT(GLuint res, GLuint src, GLuint num)
  14318. {
  14319. UNUSED_PARAMETER(res);
  14320. UNUSED_PARAMETER(src);
  14321. UNUSED_PARAMETER(num);
  14322. Wa