diff options
author | Samuel Pitoiset <[email protected]> | 2016-01-11 22:11:19 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2016-02-21 10:41:32 +0100 |
commit | a9b70a86db9fe948ca7ce40aad4831408b1377ef (patch) | |
tree | 833463db331e743c29ecf92f404f586424f42c97 /src/gallium/drivers/nouveau/nvc0/nvc0_context.h | |
parent | 527652629dc6e7dc593e16505e4b6b648b1f09cc (diff) |
nvc0: bind driver constbuf for compute on Fermi
Changes from v3:
- add new validation state for COMPUTE driver constbuf
Changes from v2:
- always bind the driver consts even if user params come in via clover
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nvc0/nvc0_context.h')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_context.h b/src/gallium/drivers/nouveau/nvc0/nvc0_context.h index d8dc48b1f0d..86116a07f85 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_context.h +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_context.h @@ -65,6 +65,7 @@ #define NVC0_NEW_CP_SAMPLERS (1 << 3) #define NVC0_NEW_CP_CONSTBUF (1 << 4) #define NVC0_NEW_CP_GLOBALS (1 << 5) +#define NVC0_NEW_CP_DRIVERCONST (1 << 6) /* 3d bufctx (during draw_vbo, blit_3d) */ #define NVC0_BIND_FB 0 |