mesa: initial support for new GL 3.0 texture formats
This commit is contained in:
@@ -46,8 +46,9 @@ static const struct {
|
||||
} default_extensions[] = {
|
||||
{ OFF, "GL_ARB_blend_func_extended", F(ARB_blend_func_extended) },
|
||||
{ OFF, "GL_ARB_copy_buffer", F(ARB_copy_buffer) },
|
||||
{ OFF, "GL_ARB_depth_texture", F(ARB_depth_texture) },
|
||||
{ OFF, "GL_ARB_depth_buffer_float", F(ARB_depth_buffer_float) },
|
||||
{ OFF, "GL_ARB_depth_clamp", F(ARB_depth_clamp) },
|
||||
{ OFF, "GL_ARB_depth_texture", F(ARB_depth_texture) },
|
||||
{ ON, "GL_ARB_draw_buffers", F(ARB_draw_buffers) },
|
||||
{ OFF, "GL_ARB_draw_elements_base_vertex", F(ARB_draw_elements_base_vertex) },
|
||||
{ OFF, "GL_ARB_draw_instanced", F(ARB_draw_instanced) },
|
||||
@@ -92,6 +93,7 @@ static const struct {
|
||||
{ OFF, "GL_ARB_texture_multisample", F(ARB_texture_multisample) },
|
||||
{ OFF, "GL_ARB_texture_non_power_of_two", F(ARB_texture_non_power_of_two)},
|
||||
{ OFF, "GL_ARB_texture_rectangle", F(NV_texture_rectangle) },
|
||||
{ OFF, "GL_ARB_texture_rg", F(ARB_texture_rg) },
|
||||
{ OFF, "GL_ARB_texture_rgb10_a2ui", F(ARB_texture_rgb10_a2ui) },
|
||||
{ OFF, "GL_ARB_texture_swizzle", F(EXT_texture_swizzle) },
|
||||
{ ON, "GL_ARB_transpose_matrix", F(ARB_transpose_matrix) },
|
||||
@@ -141,7 +143,6 @@ static const struct {
|
||||
{ OFF, "GL_EXT_secondary_color", F(EXT_secondary_color) },
|
||||
{ ON, "GL_EXT_separate_specular_color", F(EXT_separate_specular_color) },
|
||||
{ OFF, "GL_EXT_shadow_funcs", F(EXT_shadow_funcs) },
|
||||
{ OFF, "GL_EXT_shared_exponent", F(EXT_shared_exponent) },
|
||||
{ OFF, "GL_EXT_shared_texture_palette", F(EXT_shared_texture_palette) },
|
||||
{ OFF, "GL_EXT_stencil_two_side", F(EXT_stencil_two_side) },
|
||||
{ OFF, "GL_EXT_stencil_wrap", F(EXT_stencil_wrap) },
|
||||
@@ -162,6 +163,7 @@ static const struct {
|
||||
{ OFF, "GL_EXT_texture_mirror_clamp", F(EXT_texture_mirror_clamp) },
|
||||
{ ON, "GL_EXT_texture_object", F(EXT_texture_object) },
|
||||
{ OFF, "GL_EXT_texture_rectangle", F(NV_texture_rectangle) },
|
||||
{ OFF, "GL_EXT_texture_shared_exponent", F(EXT_texture_shared_exponent) },
|
||||
{ OFF, "GL_EXT_texture_sRGB", F(EXT_texture_sRGB) },
|
||||
{ OFF, "GL_EXT_texture_swizzle", F(EXT_texture_swizzle) },
|
||||
{ OFF, "GL_EXT_timer_query", F(EXT_timer_query) },
|
||||
|
Reference in New Issue
Block a user