mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-12 04:08:52 +01:00
54ed8f0bb0
Co-authored-by: Philip Rebohle <philip.rebohle@tu-dortmund.de> Co-authored-by: Robin Kertels <robin.kertels@gmail.com> Co-authored-by: pchome <pchome@users.noreply.github.com> Co-authored-by: Christopher Egert <cme3000@gmail.com> Co-authored-by: Derek Lesho <dereklesho52@Gmail.com> Co-authored-by: Luis Cáceres <lacaceres97@gmail.com> Co-authored-by: Nelson Chen <crazysim@gmail.com> Co-authored-by: Edmondo Tommasina <edmondo.tommasina@gmail.com> Co-authored-by: Riesi <riesi@opentrash.com> Co-authored-by: gbMichelle <gbmichelle.dev@gmail.com>
26 lines
816 B
C++
26 lines
816 B
C++
#include "dxso_common.h"
|
|
|
|
namespace dxvk {
|
|
|
|
VkShaderStageFlagBits DxsoProgramInfo::shaderStage() const {
|
|
switch (m_type) {
|
|
case DxsoProgramTypes::PixelShader: return VK_SHADER_STAGE_FRAGMENT_BIT;
|
|
case DxsoProgramTypes::VertexShader: return VK_SHADER_STAGE_VERTEX_BIT;
|
|
default: break;
|
|
}
|
|
|
|
throw DxvkError("DxsoProgramInfo::shaderStage: Unsupported program type");
|
|
}
|
|
|
|
|
|
spv::ExecutionModel DxsoProgramInfo::executionModel() const {
|
|
switch (m_type) {
|
|
case DxsoProgramTypes::PixelShader: return spv::ExecutionModelFragment;
|
|
case DxsoProgramTypes::VertexShader: return spv::ExecutionModelVertex;
|
|
default: break;
|
|
}
|
|
|
|
throw DxvkError("DxsoProgramInfo::executionModel: Unsupported program type");
|
|
}
|
|
|
|
} |