Searched refs:gl_max (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Devices/Graphics/shaderlib/ |
H A D | directx.c | 1941 GLint gl_max; local 2006 VBOX_CHECK_GL_CALL(glGetIntegerv(GL_MAX_CLIP_PLANES, &gl_max)); 2007 gl_info->limits.clipplanes = min(WINED3DMAXUSERCLIPPLANES, gl_max); 2008 TRACE_(d3d_caps)("ClipPlanes support - num Planes=%d\n", gl_max); 2011 glGetIntegerv(GL_MAX_LIGHTS, &gl_max); 2015 VBOX_CHECK_GL_CALL(glGetIntegerv(GL_MAX_LIGHTS, &gl_max)); 2019 VBOX_CHECK_GL_CALL(glGetIntegerv(GL_MAX_LIGHTS, &gl_max)); 2021 gl_info->limits.lights = gl_max; 2022 TRACE_(d3d_caps)("Lights support - max lights=%d\n", gl_max); 2024 VBOX_CHECK_GL_CALL(glGetIntegerv(GL_MAX_TEXTURE_SIZE, &gl_max)); [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | directx.c | 2189 GLint gl_max; local 2254 glGetIntegerv(GL_MAX_CLIP_PLANES, &gl_max); 2255 gl_info->limits.clipplanes = min(WINED3DMAXUSERCLIPPLANES, gl_max); 2256 TRACE_(d3d_caps)("ClipPlanes support - num Planes=%d\n", gl_max); 2258 glGetIntegerv(GL_MAX_LIGHTS, &gl_max); 2259 gl_info->limits.lights = gl_max; 2260 TRACE_(d3d_caps)("Lights support - max lights=%d\n", gl_max); 2262 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &gl_max); 2263 gl_info->limits.texture_size = gl_max; 2264 TRACE_(d3d_caps)("Maximum texture size support - max texture size=%d\n", gl_max); [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | directx.c | 2667 GLint gl_max; local 2688 gl_info->gl_ops.gl.p_glGetIntegerv(GL_MAX_CLIP_PLANES, &gl_max); 2689 gl_info->limits.clipplanes = min(WINED3DMAXUSERCLIPPLANES, gl_max); 2690 TRACE("Clip plane support - max planes %d.\n", gl_max); 2692 gl_info->gl_ops.gl.p_glGetIntegerv(GL_MAX_LIGHTS, &gl_max); 2693 gl_info->limits.lights = gl_max; 2694 TRACE("Light support - max lights %d.\n", gl_max); 2696 gl_info->gl_ops.gl.p_glGetIntegerv(GL_MAX_TEXTURE_SIZE, &gl_max); 2697 gl_info->limits.texture_size = gl_max; 2698 TRACE("Maximum texture size support - max texture size %d.\n", gl_max); [all...] |
Completed in 53 milliseconds