diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-11-04 15:25:42 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-11-04 15:25:42 +0000 |
commit | 9706a83bc959ba8445d0258e47639b44da2238fc (patch) | |
tree | cc491c38358191eb05902c6f39da068123e7c10d /src/gallium/drivers/i965/brw_pipe_sampler.c | |
parent | a09b3d50975e68c13c0421d770f3865ad2a1257c (diff) | |
download | external_mesa3d-9706a83bc959ba8445d0258e47639b44da2238fc.zip external_mesa3d-9706a83bc959ba8445d0258e47639b44da2238fc.tar.gz external_mesa3d-9706a83bc959ba8445d0258e47639b44da2238fc.tar.bz2 |
i965g: hook up more pipe_context functions
Diffstat (limited to 'src/gallium/drivers/i965/brw_pipe_sampler.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_pipe_sampler.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_pipe_sampler.c b/src/gallium/drivers/i965/brw_pipe_sampler.c index 08a5d22..56cf95c 100644 --- a/src/gallium/drivers/i965/brw_pipe_sampler.c +++ b/src/gallium/drivers/i965/brw_pipe_sampler.c @@ -156,10 +156,14 @@ static void brw_set_sampler_textures(struct pipe_context *pipe, } -void brw_sampler_init( struct brw_context *brw ) +void brw_pipe_sampler_init( struct brw_context *brw ) { brw->base.set_sampler_textures = brw_set_sampler_textures; brw->base.create_sampler_state = brw_create_sampler_state; brw->base.bind_sampler_state = brw_bind_sampler_state; brw->base.destroy_sampler_state = brw_destroy_sampler_state; } + +void brw_pipe_sampler_cleanup( struct brw_context *brw ) +{ +} |