summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_context.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-02-29 10:07:44 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-02-29 10:08:16 -0700
commit78220aea864c36038f8425ad9d8467d2a2bdea58 (patch)
tree8bfeccb26d8c1ca588fd6f6343ea82037af703a2 /src/gallium/include/pipe/p_context.h
parentebe3b34ad225e320a09bb4069ce4d24808386327 (diff)
gallium: remove the ugly pipe->draw stage lookup code in aaline/point/pstipple stages
Added a void *draw ptr to pipe_context. Probably look for a better solution someday.
Diffstat (limited to 'src/gallium/include/pipe/p_context.h')
-rw-r--r--src/gallium/include/pipe/p_context.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h
index d0f25d7d46..1501b52f3e 100644
--- a/src/gallium/include/pipe/p_context.h
+++ b/src/gallium/include/pipe/p_context.h
@@ -56,6 +56,7 @@ struct pipe_context {
struct pipe_screen *screen;
void *priv; /** context private data (for DRI for example) */
+ void *draw; /** private, for draw module (temporary? */
void (*destroy)( struct pipe_context * );