diff options
| author | Brian Paul <brianp@vmware.com> | 2009-03-13 08:45:11 -0600 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2009-03-13 08:46:03 -0600 | 
| commit | ccad1e45289b83d045cf7264f391f7502ef81110 (patch) | |
| tree | 45b848d5ca90882922ab5ce8f4918090e2249b39 /src/mesa | |
| parent | fcb0d8968dfb32d26219f7671866f993be5f548c (diff) | |
mesa: add GL_DUDV_ATI cases in calculate_derived_texenv()
Diffstat (limited to 'src/mesa')
| -rw-r--r-- | src/mesa/main/texstate.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/mesa/main/texstate.c b/src/mesa/main/texstate.c index a490dff5e9..0f91080024 100644 --- a/src/mesa/main/texstate.c +++ b/src/mesa/main/texstate.c @@ -179,6 +179,7 @@ calculate_derived_texenv( struct gl_tex_env_combine_state *state,     case GL_LUMINANCE:     case GL_RGB:     case GL_YCBCR_MESA: +   case GL_DUDV_ATI:        state->SourceA[0] = GL_PREVIOUS;        break; @@ -218,6 +219,7 @@ calculate_derived_texenv( struct gl_tex_env_combine_state *state,  	 break;        case GL_RGB:        case GL_YCBCR_MESA: +      case GL_DUDV_ATI:  	 mode_rgb = GL_REPLACE;  	 break;        case GL_RGBA: @@ -244,6 +246,7 @@ calculate_derived_texenv( struct gl_tex_env_combine_state *state,        case GL_LUMINANCE_ALPHA:        case GL_RGBA:        case GL_YCBCR_MESA: +      case GL_DUDV_ATI:  	 state->SourceRGB[2] = GL_TEXTURE;  	 state->SourceA[2]   = GL_TEXTURE;  	 state->SourceRGB[0] = GL_CONSTANT; | 
