diff options
author | Ilia Mirkin <[email protected]> | 2015-11-09 13:27:07 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-11-11 19:20:41 -0500 |
commit | 3695b253f908b58290d69e2d770209abf0c6beee (patch) | |
tree | ae49b3e0876518773e1765513a1a0f3e8245a040 /src/gallium/drivers/llvmpipe/lp_screen.c | |
parent | 725fcdfbb11ff4c4399d58e08403e4e0064a8c5e (diff) |
gallium: add PIPE_CAP_CLEAR_TEXTURE and clear_texture prototype
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_screen.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index d1c50aefc84..9f5e7378ac7 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -300,6 +300,7 @@ llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) case PIPE_CAP_FORCE_PERSAMPLE_INTERP: case PIPE_CAP_SHAREABLE_SHADERS: case PIPE_CAP_COPY_BETWEEN_COMPRESSED_AND_PLAIN_FORMATS: + case PIPE_CAP_CLEAR_TEXTURE: return 0; } /* should only get here on unhandled cases */ |