summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i915simple
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-11 17:00:56 +0100
committerBrian <brian.paul@tungstengraphics.com>2007-08-11 17:00:56 +0100
commit83521ee66ad3f3cd3ec8212d6f746caecdc6c407 (patch)
tree9f4bc1ca0fab39874bc997d64b083f4d5288f853 /src/mesa/pipe/i915simple
parentbec2230514ad2e8e52625ecb339fcadfabffd4df (diff)
notes/asserts for get/put_tile()
Diffstat (limited to 'src/mesa/pipe/i915simple')
-rw-r--r--src/mesa/pipe/i915simple/i915_surface.c3
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);
}