PageRenderTime 71ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 3ms

/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

Large files files are truncated, but you can click here to view the full file

  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)

Large files files are truncated, but you can click here to view the full file