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/intel/vulkan/anv_blorp.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/intel/vulkan/anv_blorp.c')
-rw-r--r-- | src/intel/vulkan/anv_blorp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_blorp.c b/src/intel/vulkan/anv_blorp.c index 0feb5d5567a..b78c21defb4 100644 --- a/src/intel/vulkan/anv_blorp.c +++ b/src/intel/vulkan/anv_blorp.c @@ -645,7 +645,7 @@ void anv_CmdUpdateBuffer( VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize dataSize, - const uint32_t* pData) + const void* pData) { ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer); ANV_FROM_HANDLE(anv_buffer, dst_buffer, dstBuffer); |