diff options
author | Ilia Mirkin <[email protected]> | 2014-12-15 23:17:28 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-12-15 23:18:07 -0500 |
commit | 1402f689f1a75e34219834821e83fe2c7dc40f61 (patch) | |
tree | 9be58ae9dfa911cc68fd212a77a7de086fa33bd3 /src | |
parent | fef58979e191e4410fbab2f7dd14cafc340712da (diff) |
nvc0: add missed PIPE_CAP_VERTEXID_NOBASE
Commit ade8b26bf missed adding this cap to nvc0.
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index 2a759311bf7..7f68236ad14 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -189,6 +189,7 @@ nvc0_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param) case PIPE_CAP_TGSI_VS_LAYER_VIEWPORT: case PIPE_CAP_FAKE_SW_MSAA: case PIPE_CAP_TGSI_VS_WINDOW_SPACE_POSITION: + case PIPE_CAP_VERTEXID_NOBASE: return 0; case PIPE_CAP_VENDOR_ID: |