summaryrefslogtreecommitdiff
path: root/src/mesa/main/teximage.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-03-05 22:18:23 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-03-05 22:18:23 +0000
commit75280a2c742ee241d392618a3b29548fce1520a9 (patch)
tree96502805dcb61c4ba1eb2fa7e2b2bb744f4bdf77 /src/mesa/main/teximage.c
parent89700a4abdf0eaa1da80fc9e0c1f856c39a1a9a4 (diff)
added missing ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH() macros
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r--src/mesa/main/teximage.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index 87ed959b23..79a4353aba 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -1,4 +1,4 @@
-/* $Id: teximage.c,v 1.81 2001/03/03 20:33:28 brianp Exp $ */
+/* $Id: teximage.c,v 1.82 2001/03/05 22:18:23 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -1637,6 +1637,8 @@ _mesa_TexSubImage1D( GLenum target, GLint level,
struct gl_texture_object *texObj;
struct gl_texture_image *texImage;
+ ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
+
if (ctx->NewState & _NEW_PIXEL)
_mesa_update_state(ctx);
@@ -1679,6 +1681,8 @@ _mesa_TexSubImage2D( GLenum target, GLint level,
struct gl_texture_object *texObj;
struct gl_texture_image *texImage;
+ ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
+
if (ctx->NewState & _NEW_PIXEL)
_mesa_update_state(ctx);
@@ -1722,6 +1726,8 @@ _mesa_TexSubImage3D( GLenum target, GLint level,
struct gl_texture_object *texObj;
struct gl_texture_image *texImage;
+ ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
+
if (ctx->NewState & _NEW_PIXEL)
_mesa_update_state(ctx);
@@ -2243,6 +2249,8 @@ _mesa_CompressedTexSubImage1DARB(GLenum target, GLint level, GLint xoffset,
struct gl_texture_image *texImage;
GET_CURRENT_CONTEXT(ctx);
+ ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
+
if (subtexture_error_check(ctx, 1, target, level, xoffset, 0, 0,
width, 1, 1, format, GL_NONE)) {
return; /* error was detected */
@@ -2277,6 +2285,8 @@ _mesa_CompressedTexSubImage2DARB(GLenum target, GLint level, GLint xoffset,
struct gl_texture_image *texImage;
GET_CURRENT_CONTEXT(ctx);
+ ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
+
if (subtexture_error_check(ctx, 2, target, level, xoffset, yoffset, 0,
width, height, 1, format, GL_NONE)) {
return; /* error was detected */
@@ -2311,6 +2321,8 @@ _mesa_CompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset,
struct gl_texture_image *texImage;
GET_CURRENT_CONTEXT(ctx);
+ ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
+
if (subtexture_error_check(ctx, 3, target, level, xoffset, yoffset, zoffset,
width, height, depth, format, GL_NONE)) {
return; /* error was detected */