diff options
author | Ilia Mirkin <[email protected]> | 2014-11-29 19:21:33 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-11-30 13:04:28 -0500 |
commit | 8e336ef55bacae58fc099a8b8a4b7d3d007c4434 (patch) | |
tree | b36870f63fe90fcf1dfd8ca7408605ee1c809b18 /src/gallium/drivers/freedreno/freedreno_texture.h | |
parent | 618ff11457f477ce1d30ecfbcee469287760838b (diff) |
freedreno: allow each generation to hook into sampler view setting
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_texture.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_texture.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_texture.h b/src/gallium/drivers/freedreno/freedreno_texture.h index 388b980d857..43571a9fa61 100644 --- a/src/gallium/drivers/freedreno/freedreno_texture.h +++ b/src/gallium/drivers/freedreno/freedreno_texture.h @@ -35,6 +35,10 @@ void fd_sampler_states_bind(struct pipe_context *pctx, unsigned shader, unsigned start, unsigned nr, void **hwcso); +void fd_set_sampler_views(struct pipe_context *pctx, unsigned shader, + unsigned start, unsigned nr, + struct pipe_sampler_view **views); + void fd_texture_init(struct pipe_context *pctx); #endif /* FREEDRENO_TEXTURE_H_ */ |