mirror of
https://github.com/hedge-dev/XenosRecomp.git
synced 2025-10-30 07:12:17 +00:00
11 lines
No EOL
215 B
C++
11 lines
No EOL
215 B
C++
#pragma once
|
|
|
|
struct DxcCompiler
|
|
{
|
|
IDxcCompiler3* dxcCompiler = nullptr;
|
|
|
|
DxcCompiler();
|
|
~DxcCompiler();
|
|
|
|
IDxcBlob* compile(const std::string& shaderSource, bool isPixelShader, bool compileSpirv);
|
|
}; |