mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-07 07:46:19 +01:00
28 lines
457 B
C++
28 lines
457 B
C++
#include "dxbc_compiler.h"
|
|
#include "dxbc_names.h"
|
|
|
|
namespace dxvk {
|
|
|
|
DxbcCompiler::DxbcCompiler(
|
|
DxbcProgramVersion version)
|
|
: m_version(version) {
|
|
|
|
}
|
|
|
|
|
|
DxbcCompiler::~DxbcCompiler() {
|
|
|
|
}
|
|
|
|
|
|
void DxbcCompiler::processInstruction(const DxbcInstruction& ins) {
|
|
|
|
}
|
|
|
|
|
|
Rc<DxvkShader> DxbcCompiler::finalize() {
|
|
return new DxvkShader(m_version.shaderStage(),
|
|
m_module.compile(), 0, nullptr);
|
|
}
|
|
|
|
} |