Changeset 54143 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Feb 11, 2015 2:45:06 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98174
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r54142 r54143 870 870 { 871 871 { 872 1.1 ,872 1.1f, 873 873 " GL_EXT_vertex_array \0" 874 874 " GL_EXT_polygon_offset \0" … … 884 884 }, 885 885 { 886 1.2 ,886 1.2f, 887 887 " EXT_texture3D \0" 888 888 " EXT_bgra \0" … … 896 896 }, 897 897 { 898 1.3 ,898 1.3f, 899 899 " GL_ARB_texture_compression \0" 900 900 " GL_ARB_texture_cube_map \0" … … 909 909 }, 910 910 { 911 1.5 ,911 1.5f, 912 912 " GL_SGIS_generate_mipmap \0" 913 913 /*" GL_NV_blend_equare \0"*/ … … 927 927 }, 928 928 { 929 1.6 ,929 1.6f, 930 930 " GL_ARB_vertex_buffer_object \0" 931 931 " GL_ARB_occlusion_query \0" … … 933 933 }, 934 934 { 935 2.0 ,935 2.0f, 936 936 " GL_ARB_shader_objects \0" /*??*/ 937 937 " GL_ARB_vertex_shader \0" /*??*/ … … 946 946 }, 947 947 { 948 2.1 ,948 2.1f, 949 949 " GL_ARB_pixel_buffer_object \0" 950 950 " GL_EXT_texture_sRGB \0" … … 952 952 }, 953 953 { 954 3.0 ,954 3.0f, 955 955 " GL_ARB_framebuffer_object \0" 956 956 " GL_ARB_map_buffer_range \0" … … 959 959 }, 960 960 { 961 3.1 ,961 3.1f, 962 962 " GL_ARB_copy_buffer \0" 963 963 " GL_ARB_uniform_buffer_object \0" … … 965 965 }, 966 966 { 967 3.2 ,967 3.2f, 968 968 " GL_ARB_vertex_array_bgra \0" 969 969 " GL_ARB_draw_elements_base_vertex \0" … … 978 978 }, 979 979 { 980 3.3 ,980 3.3f, 981 981 " GL_ARB_blend_func_extended \0" 982 982 " GL_ARB_sampler_objects \0" … … 991 991 }, 992 992 { 993 4.0 ,993 4.0f, 994 994 " GL_ARB_texture_query_lod \0" 995 995 " GL_ARB_draw_indirect \0" … … 1006 1006 }, 1007 1007 { 1008 4.1 ,1008 4.1f, 1009 1009 " GL_ARB_ES2_compatibility \0" 1010 1010 " GL_ARB_get_program_binary \0" … … 1299 1299 1300 1300 /* OpenGL 3.2 core */ 1301 if (vmsvga3dCheckGLExtension(pState, 3.2 , " GL_ARB_draw_elements_base_vertex "))1301 if (vmsvga3dCheckGLExtension(pState, 3.2f, " GL_ARB_draw_elements_base_vertex ")) 1302 1302 { 1303 1303 pState->ext.glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)OGLGETPROCADDRESS("glDrawElementsBaseVertex"); … … 1308 1308 1309 1309 /* OpenGL 3.2 core */ 1310 if (vmsvga3dCheckGLExtension(pState, 3.2 , " GL_ARB_provoking_vertex "))1310 if (vmsvga3dCheckGLExtension(pState, 3.2f, " GL_ARB_provoking_vertex ")) 1311 1311 { 1312 1312 pState->ext.glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)OGLGETPROCADDRESS("glProvokingVertex"); … … 1409 1409 } 1410 1410 1411 if (!vmsvga3dCheckGLExtension(pState, 3.2 , " GL_ARB_vertex_array_bgra "))1411 if (!vmsvga3dCheckGLExtension(pState, 3.2f, " GL_ARB_vertex_array_bgra ")) 1412 1412 { 1413 1413 /** @todo Intel drivers don't support this extension! */
Note:
See TracChangeset
for help on using the changeset viewer.