summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_context.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-01-09 05:11:19 -0800
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-02-01 23:30:20 -0800
commitafe2de0a235f8e4312ecbb7275640502098a8a81 (patch)
tree1662acaa7f1667400bbd3fea6e6f16d18e4f882a /src/gallium/drivers/r300/r300_context.c
parentb1776eb14471e7a4d09d3c8a73f02b19b106883b (diff)
gallium-r300: Fit it all together now.
In theory, it could work, but there's still some very big gaps. Anything marked with XXX should be taken care of first, probably.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r--src/gallium/drivers/r300/r300_context.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c
index 7fde1404d9..21bee5beae 100644
--- a/src/gallium/drivers/r300/r300_context.c
+++ b/src/gallium/drivers/r300/r300_context.c
@@ -50,5 +50,7 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
struct radeon_cs_manager* csm = radeon_cs_manager_gem_ctor(fd);
r300->cs = cs_gem_create(csm, 64 * 1024 / 4); */
+ r300_init_surface_functions(r300);
+
return &r300->context;
-} \ No newline at end of file
+}