added missing prototype
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 8 Feb 2005 02:05:13 +0000 (02:05 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 8 Feb 2005 02:05:13 +0000 (02:05 +0000)
src/mesa/main/texstore.h

index a240bfe..0b91f20 100644 (file)
@@ -2,7 +2,7 @@
  * Mesa 3-D graphics library
  * Version:  6.3
  *
- * Copyright (C) 1999-2004  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -247,8 +247,15 @@ _mesa_validate_pbo_teximage(GLcontext *ctx, GLuint dimensions,
                            const struct gl_pixelstore_attrib *unpack,
                            const char *funcName);
 
+extern const GLvoid *
+_mesa_validate_pbo_compressed_teximage(GLcontext *ctx,
+                                    GLsizei imageSize, const GLvoid *pixels,
+                                    const struct gl_pixelstore_attrib *packing,
+                                    const char *funcName);
+
 extern void
-_mesa_unmap_teximage_pbo(GLcontext *ctx, const struct gl_pixelstore_attrib *unpack);
+_mesa_unmap_teximage_pbo(GLcontext *ctx,
+                         const struct gl_pixelstore_attrib *unpack);
 
 
 #endif