示例#1
0
static void wine_glFogCoorddvEXT(const GLdouble *f) {
    wine_glFogCoordfEXT(*f);
}
示例#2
0
static void wine_glFogCoordfvEXT(const GLfloat *f) {
    wine_glFogCoordfEXT(*f);
}
示例#3
0
static void wine_glFogCoorddEXT(GLdouble f) {
    wine_glFogCoordfEXT(f);
}
示例#4
0
文件: gl_compat.c 项目: miurahr/wine
static void WINE_GLAPI wine_glFogCoorddvEXT(const GLdouble *f) {
    wine_glFogCoordfEXT((GLfloat) *f);
}
示例#5
0
文件: gl_compat.c 项目: miurahr/wine
static void WINE_GLAPI wine_glFogCoordfvEXT(const GLfloat *f) {
    wine_glFogCoordfEXT(*f);
}
示例#6
0
文件: gl_compat.c 项目: miurahr/wine
static void WINE_GLAPI wine_glFogCoorddEXT(GLdouble f) {
    wine_glFogCoordfEXT((GLfloat) f);
}