Merge commit 'origin/gallium-master-merge'
[mesa.git] / src / gallium / state_trackers / glx / dri / dri_extensions.c
1 /**************************************************************************
2 *
3 * Copyright 2009, VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28
29
30
31 #define need_GL_ARB_multisample
32 #define need_GL_ARB_point_parameters
33 #define need_GL_ARB_texture_compression
34 #define need_GL_ARB_vertex_buffer_object
35 #define need_GL_ARB_vertex_program
36 #define need_GL_ARB_window_pos
37 #define need_GL_EXT_blend_color
38 #define need_GL_EXT_blend_equation_separate
39 #define need_GL_EXT_blend_func_separate
40 #define need_GL_EXT_blend_minmax
41 #define need_GL_EXT_cull_vertex
42 #define need_GL_EXT_fog_coord
43 #define need_GL_EXT_framebuffer_object
44 #define need_GL_EXT_multi_draw_arrays
45 #define need_GL_EXT_secondary_color
46 #define need_GL_NV_vertex_program
47 #include "extension_helper.h"
48
49
50 /**
51 * Extension strings exported by the driver.
52 */
53 const struct dri_extension card_extensions[] = {
54 {"GL_ARB_multisample", GL_ARB_multisample_functions},
55 {"GL_ARB_multitexture", NULL},
56 {"GL_ARB_point_parameters", GL_ARB_point_parameters_functions},
57 {"GL_ARB_texture_border_clamp", NULL},
58 {"GL_ARB_texture_compression", GL_ARB_texture_compression_functions},
59 {"GL_ARB_texture_cube_map", NULL},
60 {"GL_ARB_texture_env_add", NULL},
61 {"GL_ARB_texture_env_combine", NULL},
62 {"GL_ARB_texture_env_dot3", NULL},
63 {"GL_ARB_texture_mirrored_repeat", NULL},
64 {"GL_ARB_texture_rectangle", NULL},
65 {"GL_ARB_vertex_buffer_object", GL_ARB_vertex_buffer_object_functions},
66 {"GL_ARB_pixel_buffer_object", NULL},
67 {"GL_ARB_vertex_program", GL_ARB_vertex_program_functions},
68 {"GL_ARB_window_pos", GL_ARB_window_pos_functions},
69 {"GL_EXT_blend_color", GL_EXT_blend_color_functions},
70 {"GL_EXT_blend_equation_separate", GL_EXT_blend_equation_separate_functions},
71 {"GL_EXT_blend_func_separate", GL_EXT_blend_func_separate_functions},
72 {"GL_EXT_blend_minmax", GL_EXT_blend_minmax_functions},
73 {"GL_EXT_blend_subtract", NULL},
74 {"GL_EXT_cull_vertex", GL_EXT_cull_vertex_functions},
75 {"GL_EXT_fog_coord", GL_EXT_fog_coord_functions},
76 {"GL_EXT_framebuffer_object", GL_EXT_framebuffer_object_functions},
77 {"GL_EXT_multi_draw_arrays", GL_EXT_multi_draw_arrays_functions},
78 {"GL_EXT_packed_depth_stencil", NULL},
79 {"GL_EXT_pixel_buffer_object", NULL},
80 {"GL_EXT_secondary_color", GL_EXT_secondary_color_functions},
81 {"GL_EXT_stencil_wrap", NULL},
82 {"GL_EXT_texture_edge_clamp", NULL},
83 {"GL_EXT_texture_env_combine", NULL},
84 {"GL_EXT_texture_env_dot3", NULL},
85 {"GL_EXT_texture_filter_anisotropic", NULL},
86 {"GL_EXT_texture_lod_bias", NULL},
87 {"GL_3DFX_texture_compression_FXT1", NULL},
88 {"GL_APPLE_client_storage", NULL},
89 {"GL_MESA_pack_invert", NULL},
90 {"GL_MESA_ycbcr_texture", NULL},
91 {"GL_NV_blend_square", NULL},
92 {"GL_NV_vertex_program", GL_NV_vertex_program_functions},
93 {"GL_NV_vertex_program1_1", NULL},
94 {"GL_SGIS_generate_mipmap", NULL },
95 {NULL, NULL}
96 };
97
98
99
100 void
101 dri_init_extensions( void )
102 {
103 /* The card_extensions list should be pruned according to the
104 * capabilities of the pipe_screen. This is actually something
105 * that can/should be done inside st_create_context().
106 */
107 driInitExtensions( ctx->st->ctx, card_extensions, GL_TRUE );
108 }