diff options
author | Jason Ekstrand <[email protected]> | 2017-10-11 12:13:35 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-10-12 21:47:06 -0700 |
commit | b8ab78d1afd50cd10bf9be7046f27e4aa22d57ac (patch) | |
tree | da6341e7c9b4aa1c508079a825bdf2fe1a5b380b /src/intel/vulkan/anv_private.h | |
parent | 2d29dd9ee4182e32fcbcea4b4705da60cf863199 (diff) |
anv/pipeline_cache: Rework to use multialloc and blob
This gets rid of all of our hand-rolled size calculation and
serialization code and replaces it with safe "standards" that are used
elsewhere in anv and mesa. This should be significantly safer than
rolling our own.
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index e8a845f7229..b33370c3da1 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -2048,8 +2048,6 @@ struct anv_shader_bin { uint32_t prog_data_size; struct anv_pipeline_bind_map bind_map; - - /* Prog data follows, then params, then the key, all aligned to 8-bytes */ }; struct anv_shader_bin * |