diff options
author | Jason Ekstrand <[email protected]> | 2017-09-27 17:01:27 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-10-03 13:41:00 -0700 |
commit | 8733567e056360fbad7d99f56a64279957bdcf06 (patch) | |
tree | 91285e0491c9ee8419b00264c64d4c15d9aaa045 /src/intel/vulkan | |
parent | e4c7a2ab68b4a67ad9fb37734c8a00379659a815 (diff) |
anv: Remove base_vertex/instance from push_constants
This is just legacy cruft. We don't push these values; we pass them in
as vertex attributes.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 3ba623a37fd..b58c803530c 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -1560,13 +1560,6 @@ struct anv_push_constants { /* Push constant data provided by the client through vkPushConstants */ uint8_t client_data[MAX_PUSH_CONSTANTS_SIZE]; - /* Our hardware only provides zero-based vertex and instance id so, in - * order to satisfy the vulkan requirements, we may have to push one or - * both of these into the shader. - */ - uint32_t base_vertex; - uint32_t base_instance; - /* Image data for image_load_store on pre-SKL */ struct brw_image_param images[MAX_IMAGES]; }; |