summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2008-04-25 12:48:42 -0700
committerEric Anholt <eric@anholt.net>2008-04-25 13:25:22 -0700
commitb3d32c0b3ef8ff4896aef154d8162efe904ed460 (patch)
tree45a8425147b36c133a35fa9819cf9cbb8cafebcb
parentcda337c257e397d0117cbd8b3b8e752332544822 (diff)
Add list of extensions supported by the 965 driver.
-rw-r--r--drivers/965-master75
-rwxr-xr-xscripts/process-glxinfo9
2 files changed, 84 insertions, 0 deletions
diff --git a/drivers/965-master b/drivers/965-master
new file mode 100644
index 0000000..73eed52
--- /dev/null
+++ b/drivers/965-master
@@ -0,0 +1,75 @@
+GL_ARB_depth_texture
+GL_ARB_draw_buffers
+GL_ARB_fragment_program
+GL_ARB_multisample
+GL_ARB_multitexture
+GL_ARB_occlusion_query
+GL_ARB_point_parameters
+GL_ARB_point_sprite
+GL_ARB_shadow
+GL_ARB_texture_border_clamp
+GL_ARB_texture_compression
+GL_ARB_texture_cube_map
+GL_ARB_texture_env_add
+GL_ARB_texture_env_combine
+GL_ARB_texture_env_crossbar
+GL_ARB_texture_env_dot3
+GL_ARB_texture_mirrored_repeat
+GL_ARB_texture_non_power_of_two
+GL_ARB_texture_rectangle
+GL_ARB_transpose_matrix
+GL_ARB_vertex_program
+GL_ARB_window_pos
+GL_EXT_abgr
+GL_EXT_bgra
+GL_EXT_blend_color
+GL_EXT_blend_equation_separate
+GL_EXT_blend_func_separate
+GL_EXT_blend_logic_op
+GL_EXT_blend_minmax
+GL_EXT_blend_subtract
+GL_EXT_clip_volume_hint
+GL_EXT_copy_texture
+GL_EXT_draw_range_elements
+GL_EXT_fog_coord
+GL_EXT_framebuffer_object
+GL_EXT_multi_draw_arrays
+GL_EXT_packed_pixels
+GL_EXT_point_parameters
+GL_EXT_polygon_offset
+GL_EXT_rescale_normal
+GL_EXT_secondary_color
+GL_EXT_separate_specular_color
+GL_EXT_shadow_funcs
+GL_EXT_stencil_wrap
+GL_EXT_subtexture
+GL_EXT_texture
+GL_EXT_texture3D
+GL_EXT_texture_edge_clamp
+GL_EXT_texture_env_add
+GL_EXT_texture_env_combine
+GL_EXT_texture_env_dot3
+GL_EXT_texture_lod_bias
+GL_EXT_texture_object
+GL_EXT_texture_rectangle
+GL_EXT_vertex_array
+GL_3DFX_texture_compression_FXT1
+GL_APPLE_packed_pixels
+GL_ATI_draw_buffers
+GL_IBM_texture_mirrored_repeat
+GL_INGR_blend_func_separate
+GL_MESA_pack_invert
+GL_MESA_ycbcr_texture
+GL_NV_blend_square
+GL_NV_light_max_exponent
+GL_NV_point_sprite
+GL_NV_texgen_reflection
+GL_NV_texture_rectangle
+GL_NV_vertex_program
+GL_NV_vertex_program1_1
+GL_SGIS_generate_mipmap
+GL_SGIS_texture_border_clamp
+GL_SGIS_texture_edge_clamp
+GL_SGIS_texture_lod
+GL_SGIX_depth_texture
+GL_SUN_multi_draw_arrays
diff --git a/scripts/process-glxinfo b/scripts/process-glxinfo
new file mode 100755
index 0000000..7575e33
--- /dev/null
+++ b/scripts/process-glxinfo
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# from the formatted list in glxinfo after
+# "OpenGL extensions:", produce a nice one-entry-per-line list.
+
+cat $1 | perl -pi \
+ -e 's|, \n|\n|g;' \
+ -e 's|, |\n|g;' \
+ -e 's| ||g;'