vk/0.132: Rename bool32_t -> VkBool32

sed -i 's/bool32_t/VkBool32/g' \
  $(git ls-files src/vulkan include/vulkan)
This commit is contained in:
Chad Versace
2015-07-13 12:59:42 -07:00
parent 77dcfe3c70
commit 8f3b2187e1
5 changed files with 62 additions and 62 deletions
+1 -1
View File
@@ -1461,7 +1461,7 @@ VkResult anv_WaitForFences(
VkDevice _device,
uint32_t fenceCount,
const VkFence* pFences,
bool32_t waitAll,
VkBool32 waitAll,
uint64_t timeout)
{
ANV_FROM_HANDLE(anv_device, device, _device);
+2 -2
View File
@@ -256,7 +256,7 @@ emit_rs_state(struct anv_pipeline *pipeline,
.PointWidth = 1.0,
};
/* FINISHME: bool32_t rasterizerDiscardEnable; */
/* FINISHME: VkBool32 rasterizerDiscardEnable; */
GEN8_3DSTATE_SF_pack(NULL, pipeline->state_sf, &sf);
@@ -412,7 +412,7 @@ emit_ds_state(struct anv_pipeline *pipeline,
return;
}
/* bool32_t depthBoundsEnable; // optional (depth_bounds_test) */
/* VkBool32 depthBoundsEnable; // optional (depth_bounds_test) */
struct GEN8_3DSTATE_WM_DEPTH_STENCIL wm_depth_stencil = {
.DepthTestEnable = info->depthTestEnable,