diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-02-29 10:07:44 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-02-29 10:08:16 -0700 |
commit | 78220aea864c36038f8425ad9d8467d2a2bdea58 (patch) | |
tree | 8bfeccb26d8c1ca588fd6f6343ea82037af703a2 /src/gallium/include | |
parent | ebe3b34ad225e320a09bb4069ce4d24808386327 (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')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 1 |
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 * ); |