diff options
author | Ian Romanick <idr@us.ibm.com> | 2004-09-30 21:18:23 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2004-09-30 21:18:23 +0000 |
commit | 75e2f0698e6977989e0b4425dbd7b48d35b77450 (patch) | |
tree | 34a3ed5508274236b4f65f6e65cc1c87e8978797 /src/mesa/drivers/dri/unichrome/via_context.c | |
parent | ba467e86fe2a6f6e34221e5f3f718f9c708df1b4 (diff) |
Factored out code for setting texture coordinate wrap bits. Added support
for GL_ARB_texture_mirrored_repeat. Enabled GL_NV_blend_square. It has
always actually been supported. Removed redundant EXT versions of ARB
extension strings.
Diffstat (limited to 'src/mesa/drivers/dri/unichrome/via_context.c')
-rw-r--r-- | src/mesa/drivers/dri/unichrome/via_context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_context.c b/src/mesa/drivers/dri/unichrome/via_context.c index a496380c79..4ebf393ac8 100644 --- a/src/mesa/drivers/dri/unichrome/via_context.c +++ b/src/mesa/drivers/dri/unichrome/via_context.c @@ -59,7 +59,7 @@ #include <stdio.h> #include "macros.h" -#define DRIVER_DATE "20020221" +#define DRIVER_DATE "20040923" #include "utils.h" @@ -263,12 +263,12 @@ static const char * const card_extensions[] = "GL_ARB_texture_env_add", "GL_ARB_texture_env_combine", /* John Sheng [2003.7.18] tex combine */ "GL_ARB_texture_env_dot3", /* John Sheng [2003.7.18] tex dot3 */ - "GL_EXT_point_parameters", /* John Sheng [2003.7.18] point param. */ + "GL_ARB_texture_mirrored_repeat", "GL_EXT_stencil_wrap", - "GL_EXT_texture_env_add", "GL_EXT_texture_env_combine", /* John Sheng [2003.7.18] tex combine */ "GL_EXT_texture_env_dot3", /* John Sheng [2003.7.18] tex dot3 */ "GL_EXT_texture_lod_bias", + "GL_NV_blend_square", NULL }; |