diff options
author | Brian Paul <[email protected]> | 2004-01-26 23:57:19 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-01-26 23:57:19 +0000 |
commit | 727d345b41c396af419a389808fdaec11aeafc3e (patch) | |
tree | 80aef40ed487c4773ff4b6977624f16d8015a2d1 /src/mesa/drivers/dri/i830 | |
parent | 8135a445f3b0ae207ec5e4485b5936050d438320 (diff) |
remove bogus assertion in DeleteTexture() function
Diffstat (limited to 'src/mesa/drivers/dri/i830')
-rw-r--r-- | src/mesa/drivers/dri/i830/i830_tex.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i830/i830_tex.c b/src/mesa/drivers/dri/i830/i830_tex.c index 00b869a7a90..9e5e22ee686 100644 --- a/src/mesa/drivers/dri/i830/i830_tex.c +++ b/src/mesa/drivers/dri/i830/i830_tex.c @@ -428,7 +428,6 @@ static void i830BindTexture( GLcontext *ctx, GLenum target, static void i830DeleteTexture( GLcontext *ctx, struct gl_texture_object *tObj ) { driTextureObject * t = (driTextureObject *) tObj->DriverData; - assert(t); if ( t != NULL ) { i830ContextPtr imesa = I830_CONTEXT( ctx ); |