diff options
author | Marek Olšák <[email protected]> | 2015-08-10 02:11:48 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-08-14 15:01:51 +0200 |
commit | 3b7800e75089d4dc8ed9b2a0ce994760c167b93a (patch) | |
tree | 60a42f636674d1eb0811237dae5a95f2ed5e3d22 /src/gallium/drivers/r300 | |
parent | 2ebb8efa08b4ea290b8a2bb9aa2e3784b8272d87 (diff) |
gallium: add an interface for EXT_depth_bounds_test
Reviewed-by: Roland Scheidegger <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 74aae379c09..4ca0b268bde 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -194,6 +194,7 @@ static int r300_get_param(struct pipe_screen* pscreen, enum pipe_cap param) case PIPE_CAP_MAX_SHADER_PATCH_VARYINGS: case PIPE_CAP_TEXTURE_FLOAT_LINEAR: case PIPE_CAP_TEXTURE_HALF_FLOAT_LINEAR: + case PIPE_CAP_DEPTH_BOUNDS_TEST: return 0; /* SWTCL-only features. */ |