From: Brian Date: Sat, 11 Aug 2007 16:00:56 +0000 (+0100) Subject: notes/asserts for get/put_tile() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83521ee66ad3f3cd3ec8212d6f746caecdc6c407;p=mesa.git notes/asserts for get/put_tile() --- diff --git a/src/mesa/pipe/i915simple/i915_surface.c b/src/mesa/pipe/i915simple/i915_surface.c index 12b39bb1e4a..a67784b70cf 100644 --- a/src/mesa/pipe/i915simple/i915_surface.c +++ b/src/mesa/pipe/i915simple/i915_surface.c @@ -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); }