Remove implicit cast operators on ResultValue<T>
As it turned out to not provide a complete solution to the C++-API-change issue on logical-change of the C-API, we simply remove those implicit cast operators. That is, accessing the result and the value need to be explicit.
This commit is contained in:
committed by
Markus Tavenrath
parent
4cdc51ba0f
commit
fba2516d9c
@@ -161,7 +161,16 @@ int main( int /*argc*/, char ** /*argv*/ )
|
||||
renderPass.get() // renderPass
|
||||
);
|
||||
|
||||
vk::UniquePipeline pipeline = device->createGraphicsPipelineUnique( nullptr, graphicsPipelineCreateInfo );
|
||||
vk::ResultValue<vk::UniquePipeline> pipeline =
|
||||
device->createGraphicsPipelineUnique( nullptr, graphicsPipelineCreateInfo );
|
||||
switch ( pipeline.result )
|
||||
{
|
||||
case vk::Result::eSuccess: break;
|
||||
case vk::Result::ePipelineCompileRequiredEXT:
|
||||
// something meaningfull here
|
||||
break;
|
||||
default: assert( false ); // should never happen
|
||||
}
|
||||
|
||||
/* VULKAN_KEY_END */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user