diff options
author | Keith Whitwell <keithw@vmware.com> | 2010-03-18 05:59:23 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2010-03-18 05:59:23 +0000 |
commit | 5f4b64b37fdcd70162c382b2ebbd494bef751dbd (patch) | |
tree | cfbad75bf144c56e2b9f58fce92a7cb5823c45d9 | |
parent | d4aca209f531f1b65bf706ce1e5fc0375b587eb6 (diff) |
brw: pipe_resource fixes
-rw-r--r-- | src/gallium/drivers/i965/brw_context.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_context.c b/src/gallium/drivers/i965/brw_context.c index 4bcdcdd17e..227bc790de 100644 --- a/src/gallium/drivers/i965/brw_context.c +++ b/src/gallium/drivers/i965/brw_context.c @@ -39,6 +39,7 @@ #include "brw_state.h" #include "brw_batchbuffer.h" #include "brw_winsys.h" +#include "brw_resource.h" #include "brw_screen.h" @@ -118,7 +119,7 @@ struct pipe_context *brw_create_context(struct pipe_screen *screen, brw->sws = brw_screen(screen)->sws; brw->chipset = brw_screen(screen)->chipset; - brw_tex_init( brw ); + brw_init_resource_functions( brw ); brw_pipe_blend_init( brw ); brw_pipe_depth_stencil_init( brw ); brw_pipe_framebuffer_init( brw ); |