diff options
author | Dave Airlie <[email protected]> | 2016-11-11 11:44:10 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-11-11 12:33:07 +1000 |
commit | 98969808ffbb12538b98ce6d927c1527d196caa9 (patch) | |
tree | 7241d1e45d524c25e853c57d6c8c164648c634ad /src/amd/vulkan/radv_meta_buffer.c | |
parent | e4c465e23095a850f55ee484ef6d9d171a11386d (diff) |
vulkan: import latest public vulkan headers + and fix drivers.
I just noticed the new vulkan headers changed a prototype,
so I've decided to import them and fix the drivers to use the
new API.
Acked-by: Jason Ekstrand <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_meta_buffer.c')
-rw-r--r-- | src/amd/vulkan/radv_meta_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_meta_buffer.c b/src/amd/vulkan/radv_meta_buffer.c index 05c49716678..42297b9ce99 100644 --- a/src/amd/vulkan/radv_meta_buffer.c +++ b/src/amd/vulkan/radv_meta_buffer.c @@ -511,7 +511,7 @@ void radv_CmdUpdateBuffer( VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize dataSize, - const uint32_t* pData) + const void* pData) { RADV_FROM_HANDLE(radv_cmd_buffer, cmd_buffer, commandBuffer); RADV_FROM_HANDLE(radv_buffer, dst_buffer, dstBuffer); |