diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-08-11 17:00:56 +0100 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-08-11 17:00:56 +0100 |
commit | 83521ee66ad3f3cd3ec8212d6f746caecdc6c407 (patch) | |
tree | 9f4bc1ca0fab39874bc997d64b083f4d5288f853 /src/mesa | |
parent | bec2230514ad2e8e52625ecb339fcadfabffd4df (diff) |
notes/asserts for get/put_tile()
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/i915simple/i915_surface.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/pipe/i915simple/i915_surface.c b/src/mesa/pipe/i915simple/i915_surface.c index 12b39bb1e4..a67784b70c 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); } |