diff options
author | Nicolai Hähnle <[email protected]> | 2017-03-29 20:44:57 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-03-31 07:56:25 +0200 |
commit | d0c7f924a36f5a93c5a432baf3c653b9b07e006b (patch) | |
tree | 5193b685a5fa5480b6d145d27eacbd91a155f71d /src/gallium/drivers/llvmpipe | |
parent | 44125b29d1924e3a24ee86c022c69749aaa38e07 (diff) |
gallium: add PIPE_CAP_TGSI CLOCK
Reviewed-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-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 f6ac9b65bcf..0b399dd57b0 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -347,6 +347,7 @@ llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) case PIPE_CAP_GLSL_OPTIMIZE_CONSERVATIVELY: case PIPE_CAP_TGSI_FS_FBFETCH: case PIPE_CAP_TGSI_MUL_ZERO_WINS: + case PIPE_CAP_TGSI_CLOCK: return 0; } /* should only get here on unhandled cases */ |