Commit cae8cde7 by Hernan Liatis

Add missing semi-colon in Android code

Error happened while moving code from android tree to swiftshader tree. Whoops! Change-Id: Ie7085f8e6d54b2b11547bb6a38348c20140beae9 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/31868Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarHernan Liatis <hliatis@google.com>
parent c42b2200
...@@ -984,7 +984,7 @@ VKAPI_ATTR VkResult VKAPI_CALL vkCreateImage(VkDevice device, const VkImageCreat ...@@ -984,7 +984,7 @@ VKAPI_ATTR VkResult VKAPI_CALL vkCreateImage(VkDevice device, const VkImageCreat
const VkNativeBufferANDROID* nativeBufferInfo = reinterpret_cast<const VkNativeBufferANDROID*>(extensionCreateInfo); const VkNativeBufferANDROID* nativeBufferInfo = reinterpret_cast<const VkNativeBufferANDROID*>(extensionCreateInfo);
backmem.nativeHandle = nativeBufferInfo->handle; backmem.nativeHandle = nativeBufferInfo->handle;
backmem.stride = nativeBufferInfo->stride; backmem.stride = nativeBufferInfo->stride;
swapchainImage = true swapchainImage = true;
} }
break; break;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment