mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 22:01:50 +00:00
No more unimplemented functions.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2508 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
4966dbf562
commit
03be582675
1 changed files with 4 additions and 12 deletions
|
@ -10,6 +10,10 @@ Obviously, in an engine that likes function pointers to all the gl functions, th
|
||||||
You can see the state of his opengl library be seeing which functions are actually implemented. :)
|
You can see the state of his opengl library be seeing which functions are actually implemented. :)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PS: It is Kiero's library and everything _IS_ implemented ;)
|
||||||
|
* - bigfoot
|
||||||
|
*/
|
||||||
|
|
||||||
void stub_glAlphaFunc(GLenum func, GLclampf ref)
|
void stub_glAlphaFunc(GLenum func, GLclampf ref)
|
||||||
{
|
{
|
||||||
|
@ -88,18 +92,12 @@ void stub_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean
|
||||||
|
|
||||||
void stub_glCopyTexImage2D(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
|
void stub_glCopyTexImage2D(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
|
||||||
{
|
{
|
||||||
#warning Not implemented
|
|
||||||
#if 0
|
|
||||||
glCopyTexImage2D(target, level, internalFormat, x, y, width, height, border);
|
glCopyTexImage2D(target, level, internalFormat, x, y, width, height, border);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void stub_glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
|
void stub_glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
|
||||||
{
|
{
|
||||||
#warning Not implemented
|
|
||||||
#if 0
|
|
||||||
glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
|
glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void stub_glCullFace(GLenum mode)
|
void stub_glCullFace(GLenum mode)
|
||||||
|
@ -129,18 +127,12 @@ void stub_glDisable(GLenum cap)
|
||||||
|
|
||||||
void stub_glDrawBuffer(GLenum mode)
|
void stub_glDrawBuffer(GLenum mode)
|
||||||
{
|
{
|
||||||
#warning Not implemented
|
|
||||||
#if 0
|
|
||||||
glDrawBuffer(mode);
|
glDrawBuffer(mode);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void stub_glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
|
void stub_glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
|
||||||
{
|
{
|
||||||
#warning Not implemented
|
|
||||||
#if 0
|
|
||||||
glDrawPixels(width, height, format, type, pixels);
|
glDrawPixels(width, height, format, type, pixels);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void stub_glEnable(GLenum cap)
|
void stub_glEnable(GLenum cap)
|
||||||
|
|
Loading…
Reference in a new issue