mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
16 lines
326 B
C
16 lines
326 B
C
|
#pragma once
|
||
|
|
||
|
#include "dxvk_include.h"
|
||
|
|
||
|
namespace dxvk::util {
|
||
|
|
||
|
/**
|
||
|
* \brief Gets pipeline stage flags for shader stages
|
||
|
*
|
||
|
* \param [in] shaderStages Shader stage flags
|
||
|
* \returns Corresponding pipeline stage flags
|
||
|
*/
|
||
|
VkPipelineStageFlags pipelineStages(
|
||
|
VkShaderStageFlags shaderStages);
|
||
|
|
||
|
}
|