summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_context.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-01-08 14:52:47 -0800
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-02-01 23:30:19 -0800
commit3e09a07a265d5ee75b110954d160a73d83793c40 (patch)
treed53ffe11b6ca4a97eb2ef56a41d1b79f7ed71dcd /src/gallium/drivers/r300/r300_context.c
parentaa96874c7abffa3fa9eef47ea36ab473ad2d2272 (diff)
gallium-r300: Look less like i915.
Todo: - Figure out how much code goes in winsys. - Make it build. - Make it suck less.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r--src/gallium/drivers/r300/r300_context.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c
index a2ed0270cb..4aef5030fc 100644
--- a/src/gallium/drivers/r300/r300_context.c
+++ b/src/gallium/drivers/r300/r300_context.c
@@ -18,10 +18,10 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
return NULL;
context->winsys = amd_winsys;
- context->pipe.winsys = winsys;
- context->pipe.screen = screen;
+ context->context.winsys = winsys;
+ context->context.screen = screen;
- context->pipe.destroy = r300_destroy_context;
+ context->context.destroy = r300_destroy_context;
- return &context->pipe;
+ return &context->context;
} \ No newline at end of file