Changeset 156


Ignore:
Timestamp:
Feb 2, 2011, 6:40:02 PM (14 years ago)
Author:
Apollo Demetrious Sharpe
Message:

Added support for glSecondaryColor3{bsifd ubusui}{v} functions; For some reason, these are not included in Mesa3D at the moment.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified pipeline/cpp_pipeline/include/internal.h

    r144 r156  
    194194void GLAPIENTRY _internal_Color4uiv(PGLContext *ctx, const GLuint *v);
    195195void GLAPIENTRY _internal_Color4usv(PGLContext *ctx, const GLushort *v);
     196void GLAPIENTRY _internal_SecondaryColor3b(PGLContext *ctx, GLbyte red, GLbyte green, GLbyte blue);
     197void GLAPIENTRY _internal_SecondaryColor3d(PGLContext *ctx, GLdouble red, GLdouble green, GLdouble blue);
     198void GLAPIENTRY _internal_SecondaryColor3f(PGLContext *ctx, GLfloat red, GLfloat green, GLfloat blue);
     199void GLAPIENTRY _internal_SecondaryColor3i(PGLContext *ctx, GLint red, GLint green, GLint blue);
     200void GLAPIENTRY _internal_SecondaryColor3s(PGLContext *ctx, GLshort red, GLshort green, GLshort blue);
     201void GLAPIENTRY _internal_SecondaryColor3ub(PGLContext *ctx, GLubyte red, GLubyte green, GLubyte blue);
     202void GLAPIENTRY _internal_SecondaryColor3ui(PGLContext *ctx, GLuint red, GLuint green, GLuint blue);
     203void GLAPIENTRY _internal_SecondaryColor3us(PGLContext *ctx, GLushort red, GLushort green, GLushort blue);
     204void GLAPIENTRY _internal_SecondaryColor3bv(PGLContext *ctx, const GLbyte *v);
     205void GLAPIENTRY _internal_SecondaryColor3dv(PGLContext *ctx, const GLdouble *v);
     206void GLAPIENTRY _internal_SecondaryColor3fv(PGLContext *ctx, const GLfloat *v);
     207void GLAPIENTRY _internal_SecondaryColor3iv(PGLContext *ctx, const GLint *v);
     208void GLAPIENTRY _internal_SecondaryColor3sv(PGLContext *ctx, const GLshort *v);
     209void GLAPIENTRY _internal_SecondaryColor3ubv(PGLContext *ctx, const GLubyte *v);
     210void GLAPIENTRY _internal_SecondaryColor3uiv(PGLContext *ctx, const GLuint *v);
     211void GLAPIENTRY _internal_SecondaryColor3usv(PGLContext *ctx, const GLushort *v);
    196212void GLAPIENTRY _internal_TexCoord1d(PGLContext *ctx, GLdouble s);
    197213void GLAPIENTRY _internal_TexCoord1f(PGLContext *ctx, GLfloat s);
Note: See TracChangeset for help on using the changeset viewer.