notes/asserts for get/put_tile()
authorBrian <brian.paul@tungstengraphics.com>
Sat, 11 Aug 2007 16:00:56 +0000 (17:00 +0100)
committerBrian <brian.paul@tungstengraphics.com>
Sat, 11 Aug 2007 16:00:56 +0000 (17:00 +0100)
src/mesa/pipe/i915simple/i915_surface.c

index 12b39bb..a67784b 100644 (file)
@@ -43,6 +43,8 @@ i915_get_tile(struct pipe_surface *ps,
               GLuint x, GLuint y, GLuint w, GLuint h, GLfloat *p)
 {
    /* any need to get tiles from i915 surfaces? */
+   /* Yes, for glReadPixels (for a while at least). */
+   assert(0);
 }
 
 
@@ -51,6 +53,7 @@ i915_put_tile(struct pipe_surface *ps,
               GLuint x, GLuint y, GLuint w, GLuint h, const GLfloat *p)
 {
    /* any need to put tiles into i915 surfaces? */
+   assert(0);
 }