diff options
author | Roland Scheidegger <[email protected]> | 2004-02-06 15:27:42 +0000 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2004-02-06 15:27:42 +0000 |
commit | c71ee917e325e8b8c1591047d6e33adb4e051da8 (patch) | |
tree | 613e0524d6443bae74079ffa4b6685070d32159a /src/mesa/main/texobj.c | |
parent | 4c6b629b3856c3e4acb51bf18fd9915532345967 (diff) |
inform driver of changed wrap/filter parameters due to binding of nv_texrect texture
Diffstat (limited to 'src/mesa/main/texobj.c')
-rw-r--r-- | src/mesa/main/texobj.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index cdcc5acc754..1829cc0c13b 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -818,6 +818,14 @@ _mesa_BindTexture( GLenum target, GLuint texName ) newTexObj->WrapT = GL_CLAMP_TO_EDGE; newTexObj->WrapR = GL_CLAMP_TO_EDGE; newTexObj->MinFilter = GL_LINEAR; + if (ctx->Driver.TexParameter) { + static const GLfloat fparam_wrap[1] = {(GLfloat) GL_CLAMP_TO_EDGE}; + static const GLfloat fparam_filter[1] = {(GLfloat) GL_LINEAR}; + (*ctx->Driver.TexParameter)( ctx, target, newTexObj, GL_TEXTURE_WRAP_S, fparam_wrap ); + (*ctx->Driver.TexParameter)( ctx, target, newTexObj, GL_TEXTURE_WRAP_T, fparam_wrap ); + (*ctx->Driver.TexParameter)( ctx, target, newTexObj, GL_TEXTURE_WRAP_R, fparam_wrap ); + (*ctx->Driver.TexParameter)( ctx, target, newTexObj, GL_TEXTURE_MIN_FILTER, fparam_filter ); + } } } else { |