Update DirectXShaderCompiler to 1.6
This commit is contained in:
@@ -12,10 +12,6 @@
|
|||||||
#include <d3d12shader.h>
|
#include <d3d12shader.h>
|
||||||
#include <ThirdParty/DirectXShaderCompiler/dxcapi.h>
|
#include <ThirdParty/DirectXShaderCompiler/dxcapi.h>
|
||||||
|
|
||||||
#ifndef DXIL_FOURCC
|
|
||||||
#define DXIL_FOURCC(ch0, ch1, ch2, ch3) ((uint32)(uint8)(ch0) | (uint32)(uint8)(ch1) << 8 | (uint32)(uint8)(ch2) << 16 | (uint32)(uint8)(ch3) << 24)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Helper class to include source for DX shaders compiler.
|
/// Helper class to include source for DX shaders compiler.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -76,7 +72,7 @@ public:
|
|||||||
ShaderCompilerDX::ShaderCompilerDX(ShaderProfile profile)
|
ShaderCompilerDX::ShaderCompilerDX(ShaderProfile profile)
|
||||||
: ShaderCompiler(profile)
|
: ShaderCompiler(profile)
|
||||||
{
|
{
|
||||||
IDxcCompiler2* compiler = nullptr;
|
IDxcCompiler3* compiler = nullptr;
|
||||||
IDxcLibrary* library = nullptr;
|
IDxcLibrary* library = nullptr;
|
||||||
IDxcContainerReflection* containerReflection = nullptr;
|
IDxcContainerReflection* containerReflection = nullptr;
|
||||||
if (FAILED(DxcCreateInstance(CLSID_DxcCompiler, __uuidof(compiler), reinterpret_cast<void**>(&compiler))) ||
|
if (FAILED(DxcCreateInstance(CLSID_DxcCompiler, __uuidof(compiler), reinterpret_cast<void**>(&compiler))) ||
|
||||||
@@ -216,7 +212,7 @@ bool ShaderCompilerDX::CompileShader(ShaderFunctionMeta& meta, WritePermutationD
|
|||||||
|
|
||||||
// Prepare
|
// Prepare
|
||||||
auto options = _context->Options;
|
auto options = _context->Options;
|
||||||
auto compiler = (IDxcCompiler2*)_compiler;
|
auto compiler = (IDxcCompiler3*)_compiler;
|
||||||
auto library = (IDxcLibrary*)_library;
|
auto library = (IDxcLibrary*)_library;
|
||||||
auto containerReflection = (IDxcContainerReflection*)_containerReflection;
|
auto containerReflection = (IDxcContainerReflection*)_containerReflection;
|
||||||
auto type = meta.GetStage();
|
auto type = meta.GetStage();
|
||||||
@@ -248,18 +244,27 @@ bool ShaderCompilerDX::CompileShader(ShaderFunctionMeta& meta, WritePermutationD
|
|||||||
ComPtr<IDxcBlobEncoding> textBlob;
|
ComPtr<IDxcBlobEncoding> textBlob;
|
||||||
if (FAILED(library->CreateBlobWithEncodingFromPinned((LPBYTE)options->Source, options->SourceLength, CP_UTF8, &textBlob)))
|
if (FAILED(library->CreateBlobWithEncodingFromPinned((LPBYTE)options->Source, options->SourceLength, CP_UTF8, &textBlob)))
|
||||||
return true;
|
return true;
|
||||||
|
DxcBuffer textBuffer;
|
||||||
|
textBuffer.Ptr = textBlob->GetBufferPointer();
|
||||||
|
textBuffer.Size = textBlob->GetBufferSize();
|
||||||
|
textBuffer.Encoding = DXC_CP_ACP;
|
||||||
const StringAsUTF16<> entryPoint(meta.Name.Get(), meta.Name.Length());
|
const StringAsUTF16<> entryPoint(meta.Name.Get(), meta.Name.Length());
|
||||||
Array<String> definesStrings;
|
Array<String> definesStrings;
|
||||||
Array<DxcDefine> defines;
|
Array<const Char*, FixedAllocation<12>> args;
|
||||||
Array<Char*, FixedAllocation<16>> args;
|
|
||||||
if (_context->Options->NoOptimize)
|
if (_context->Options->NoOptimize)
|
||||||
args.Add(TEXT("-Od"));
|
args.Add(DXC_ARG_SKIP_OPTIMIZATIONS);
|
||||||
else
|
else
|
||||||
args.Add(TEXT("-O3"));
|
args.Add(DXC_ARG_OPTIMIZATION_LEVEL3);
|
||||||
if (_context->Options->TreatWarningsAsErrors)
|
if (_context->Options->TreatWarningsAsErrors)
|
||||||
args.Add(TEXT("-WX"));
|
args.Add(DXC_ARG_WARNINGS_ARE_ERRORS);
|
||||||
if (_context->Options->GenerateDebugData)
|
if (_context->Options->GenerateDebugData)
|
||||||
args.Add(TEXT("-Zi"));
|
args.Add(DXC_ARG_DEBUG);
|
||||||
|
args.Add(TEXT("-T"));
|
||||||
|
args.Add(targetProfile);
|
||||||
|
args.Add(TEXT("-E"));
|
||||||
|
args.Add(entryPoint.Get());
|
||||||
|
args.Add(options->TargetName.Get());
|
||||||
|
Array<const Char*, InlinedAllocation<250>> argsFull;
|
||||||
|
|
||||||
// Compile all shader function permutations
|
// Compile all shader function permutations
|
||||||
for (int32 permutationIndex = 0; permutationIndex < meta.Permutations.Count(); permutationIndex++)
|
for (int32 permutationIndex = 0; permutationIndex < meta.Permutations.Count(); permutationIndex++)
|
||||||
@@ -278,33 +283,37 @@ bool ShaderCompilerDX::CompileShader(ShaderFunctionMeta& meta, WritePermutationD
|
|||||||
|
|
||||||
// Convert defines from char* to Char*
|
// Convert defines from char* to Char*
|
||||||
const int32 macrosCount = _macros.Count() - 1;
|
const int32 macrosCount = _macros.Count() - 1;
|
||||||
definesStrings.Resize(macrosCount * 2);
|
definesStrings.Resize(macrosCount);
|
||||||
defines.Resize(macrosCount);
|
|
||||||
for (int32 i = 0; i < macrosCount; i++)
|
for (int32 i = 0; i < macrosCount; i++)
|
||||||
{
|
{
|
||||||
auto& macro = _macros[i];
|
auto& macro = _macros[i];
|
||||||
auto& define = defines[i];
|
auto& define = definesStrings[i];
|
||||||
auto& defineName = definesStrings[i * 2];
|
define = macro.Name;
|
||||||
auto& defineValue = definesStrings[i * 2 + 1];
|
if (macro.Definition && *macro.Definition)
|
||||||
defineName = macro.Name;
|
{
|
||||||
defineValue = macro.Definition;
|
define += TEXT("=");
|
||||||
define.Name = defineName.GetText();
|
define += macro.Definition;
|
||||||
define.Value = defineValue.Get();
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build full list of arguments
|
||||||
|
argsFull.Clear();
|
||||||
|
for (auto& e : args)
|
||||||
|
argsFull.Add(e);
|
||||||
|
for (auto& d : definesStrings)
|
||||||
|
{
|
||||||
|
argsFull.Add(TEXT("-D"));
|
||||||
|
argsFull.Add(*d);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compile
|
// Compile
|
||||||
ComPtr<IDxcOperationResult> results;
|
ComPtr<IDxcResult> results;
|
||||||
HRESULT result = compiler->Compile(
|
HRESULT result = compiler->Compile(
|
||||||
textBlob.Get(),
|
&textBuffer,
|
||||||
options->TargetName.Get(),
|
(LPCWSTR*)argsFull.Get(),
|
||||||
entryPoint.Get(),
|
argsFull.Count(),
|
||||||
targetProfile,
|
|
||||||
(LPCWSTR*)args.Get(),
|
|
||||||
args.Count(),
|
|
||||||
defines.Get(),
|
|
||||||
defines.Count(),
|
|
||||||
&include,
|
&include,
|
||||||
&results);
|
IID_PPV_ARGS(&results));
|
||||||
if (SUCCEEDED(result) && results)
|
if (SUCCEEDED(result) && results)
|
||||||
results->GetStatus(&result);
|
results->GetStatus(&result);
|
||||||
if (FAILED(result))
|
if (FAILED(result))
|
||||||
@@ -338,11 +347,19 @@ bool ShaderCompilerDX::CompileShader(ShaderFunctionMeta& meta, WritePermutationD
|
|||||||
// Generate debug information
|
// Generate debug information
|
||||||
{
|
{
|
||||||
// Disassemble compiled shader
|
// Disassemble compiled shader
|
||||||
ComPtr<IDxcBlobEncoding> disassembly;
|
ComPtr<IDxcResult> disassembly;
|
||||||
if (FAILED(compiler->Disassemble(shaderBuffer, &disassembly)))
|
DxcBuffer shaderDxcBuffer;
|
||||||
|
shaderDxcBuffer.Ptr = shaderBuffer->GetBufferPointer();
|
||||||
|
shaderDxcBuffer.Size = shaderBuffer->GetBufferSize();
|
||||||
|
shaderDxcBuffer.Encoding = DXC_CP_ACP;
|
||||||
|
if (FAILED(compiler->Disassemble(&shaderDxcBuffer, IID_PPV_ARGS(&disassembly))))
|
||||||
|
return true;
|
||||||
|
ComPtr<IDxcBlob> disassemblyBlob;
|
||||||
|
ComPtr<IDxcBlobUtf16> disassemblyPath;
|
||||||
|
if (FAILED(disassembly->GetOutput(DXC_OUT_DISASSEMBLY, IID_PPV_ARGS(disassemblyBlob.GetAddressOf()), disassemblyPath.GetAddressOf())))
|
||||||
return true;
|
return true;
|
||||||
ComPtr<IDxcBlobEncoding> disassemblyUtf8;
|
ComPtr<IDxcBlobEncoding> disassemblyUtf8;
|
||||||
if (FAILED(library->GetBlobAsUtf8(disassembly, &disassemblyUtf8)))
|
if (FAILED(library->GetBlobAsUtf8(disassemblyBlob, &disassemblyUtf8)))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// Extract debug info
|
// Extract debug info
|
||||||
@@ -356,7 +373,7 @@ bool ShaderCompilerDX::CompileShader(ShaderFunctionMeta& meta, WritePermutationD
|
|||||||
LOG(Error, "IDxcContainerReflection::Load failed.");
|
LOG(Error, "IDxcContainerReflection::Load failed.");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
const uint32 dxilPartKind = DXIL_FOURCC('D', 'X', 'I', 'L');
|
const uint32 dxilPartKind = DXC_PART_DXIL;
|
||||||
uint32 dxilPartIndex = ~0u;
|
uint32 dxilPartIndex = ~0u;
|
||||||
if (FAILED(containerReflection->FindFirstPartKind(dxilPartKind, &dxilPartIndex)))
|
if (FAILED(containerReflection->FindFirstPartKind(dxilPartKind, &dxilPartIndex)))
|
||||||
{
|
{
|
||||||
|
|||||||
BIN
Source/Platforms/Windows/Binaries/ThirdParty/x64/dxcompiler.dll
(Stored with Git LFS)
vendored
BIN
Source/Platforms/Windows/Binaries/ThirdParty/x64/dxcompiler.dll
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
Source/Platforms/Windows/Binaries/ThirdParty/x64/dxcompiler.lib
(Stored with Git LFS)
vendored
BIN
Source/Platforms/Windows/Binaries/ThirdParty/x64/dxcompiler.lib
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
Source/Platforms/Windows/Binaries/ThirdParty/x64/dxil.dll
(Stored with Git LFS)
vendored
BIN
Source/Platforms/Windows/Binaries/ThirdParty/x64/dxil.dll
(Stored with Git LFS)
vendored
Binary file not shown.
430
Source/ThirdParty/DirectXShaderCompiler/dxcapi.h
vendored
430
Source/ThirdParty/DirectXShaderCompiler/dxcapi.h
vendored
@@ -35,23 +35,6 @@ struct IMalloc;
|
|||||||
|
|
||||||
struct IDxcIncludeHandler;
|
struct IDxcIncludeHandler;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Creates a single uninitialized object of the class associated with a specified CLSID.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="rclsid">
|
|
||||||
/// The CLSID associated with the data and code that will be used to create the object.
|
|
||||||
/// </param>
|
|
||||||
/// <param name="riid">
|
|
||||||
/// A reference to the identifier of the interface to be used to communicate
|
|
||||||
/// with the object.
|
|
||||||
/// </param>
|
|
||||||
/// <param name="ppv">
|
|
||||||
/// Address of pointer variable that receives the interface pointer requested
|
|
||||||
/// in riid. Upon successful return, *ppv contains the requested interface
|
|
||||||
/// pointer. Upon failure, *ppv contains NULL.</param>
|
|
||||||
/// <remarks>
|
|
||||||
/// While this function is similar to CoCreateInstance, there is no COM involvement.
|
|
||||||
/// </remarks>
|
|
||||||
typedef HRESULT (__stdcall *DxcCreateInstanceProc)(
|
typedef HRESULT (__stdcall *DxcCreateInstanceProc)(
|
||||||
_In_ REFCLSID rclsid,
|
_In_ REFCLSID rclsid,
|
||||||
_In_ REFIID riid,
|
_In_ REFIID riid,
|
||||||
@@ -102,6 +85,56 @@ DXC_API_IMPORT HRESULT __stdcall DxcCreateInstance2(
|
|||||||
_Out_ LPVOID* ppv
|
_Out_ LPVOID* ppv
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// For convenience, equivalent definitions to CP_UTF8 and CP_UTF16.
|
||||||
|
#define DXC_CP_UTF8 65001
|
||||||
|
#define DXC_CP_UTF16 1200
|
||||||
|
// Use DXC_CP_ACP for: Binary; ANSI Text; Autodetect UTF with BOM
|
||||||
|
#define DXC_CP_ACP 0
|
||||||
|
|
||||||
|
// This flag indicates that the shader hash was computed taking into account source information (-Zss)
|
||||||
|
#define DXC_HASHFLAG_INCLUDES_SOURCE 1
|
||||||
|
|
||||||
|
// Hash digest type for ShaderHash
|
||||||
|
typedef struct DxcShaderHash {
|
||||||
|
UINT32 Flags; // DXC_HASHFLAG_*
|
||||||
|
BYTE HashDigest[16];
|
||||||
|
} DxcShaderHash;
|
||||||
|
|
||||||
|
#define DXC_FOURCC(ch0, ch1, ch2, ch3) ( \
|
||||||
|
(UINT32)(UINT8)(ch0) | (UINT32)(UINT8)(ch1) << 8 | \
|
||||||
|
(UINT32)(UINT8)(ch2) << 16 | (UINT32)(UINT8)(ch3) << 24 \
|
||||||
|
)
|
||||||
|
#define DXC_PART_PDB DXC_FOURCC('I', 'L', 'D', 'B')
|
||||||
|
#define DXC_PART_PDB_NAME DXC_FOURCC('I', 'L', 'D', 'N')
|
||||||
|
#define DXC_PART_PRIVATE_DATA DXC_FOURCC('P', 'R', 'I', 'V')
|
||||||
|
#define DXC_PART_ROOT_SIGNATURE DXC_FOURCC('R', 'T', 'S', '0')
|
||||||
|
#define DXC_PART_DXIL DXC_FOURCC('D', 'X', 'I', 'L')
|
||||||
|
#define DXC_PART_REFLECTION_DATA DXC_FOURCC('S', 'T', 'A', 'T')
|
||||||
|
#define DXC_PART_SHADER_HASH DXC_FOURCC('H', 'A', 'S', 'H')
|
||||||
|
#define DXC_PART_INPUT_SIGNATURE DXC_FOURCC('I', 'S', 'G', '1')
|
||||||
|
#define DXC_PART_OUTPUT_SIGNATURE DXC_FOURCC('O', 'S', 'G', '1')
|
||||||
|
#define DXC_PART_PATCH_CONSTANT_SIGNATURE DXC_FOURCC('P', 'S', 'G', '1')
|
||||||
|
|
||||||
|
// Some option arguments are defined here for continuity with D3DCompile interface
|
||||||
|
#define DXC_ARG_DEBUG L"-Zi"
|
||||||
|
#define DXC_ARG_SKIP_VALIDATION L"-Vd"
|
||||||
|
#define DXC_ARG_SKIP_OPTIMIZATIONS L"-Od"
|
||||||
|
#define DXC_ARG_PACK_MATRIX_ROW_MAJOR L"-Zpr"
|
||||||
|
#define DXC_ARG_PACK_MATRIX_COLUMN_MAJOR L"-Zpc"
|
||||||
|
#define DXC_ARG_AVOID_FLOW_CONTROL L"-Gfa"
|
||||||
|
#define DXC_ARG_PREFER_FLOW_CONTROL L"-Gfp"
|
||||||
|
#define DXC_ARG_ENABLE_STRICTNESS L"-Ges"
|
||||||
|
#define DXC_ARG_ENABLE_BACKWARDS_COMPATIBILITY L"-Gec"
|
||||||
|
#define DXC_ARG_IEEE_STRICTNESS L"-Gis"
|
||||||
|
#define DXC_ARG_OPTIMIZATION_LEVEL0 L"-O0"
|
||||||
|
#define DXC_ARG_OPTIMIZATION_LEVEL1 L"-O1"
|
||||||
|
#define DXC_ARG_OPTIMIZATION_LEVEL2 L"-O2"
|
||||||
|
#define DXC_ARG_OPTIMIZATION_LEVEL3 L"-O3"
|
||||||
|
#define DXC_ARG_WARNINGS_ARE_ERRORS L"-WX"
|
||||||
|
#define DXC_ARG_RESOURCES_MAY_ALIAS L"-res_may_alias"
|
||||||
|
#define DXC_ARG_ALL_RESOURCES_BOUND L"-all_resources_bound"
|
||||||
|
#define DXC_ARG_DEBUG_NAME_FOR_SOURCE L"-Zss"
|
||||||
|
#define DXC_ARG_DEBUG_NAME_FOR_BINARY L"-Zsb"
|
||||||
|
|
||||||
// IDxcBlob is an alias of ID3D10Blob and ID3DBlob
|
// IDxcBlob is an alias of ID3D10Blob and ID3DBlob
|
||||||
struct __declspec(uuid("8BA5FB08-5195-40e2-AC58-0D989C3A0102"))
|
struct __declspec(uuid("8BA5FB08-5195-40e2-AC58-0D989C3A0102"))
|
||||||
@@ -122,13 +155,90 @@ public:
|
|||||||
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcBlobEncoding)
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcBlobEncoding)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Notes on IDxcBlobUtf16 and IDxcBlobUtf8
|
||||||
|
// These guarantee null-terminated text and the stated encoding.
|
||||||
|
// GetBufferSize() will return the size in bytes, including null-terminator
|
||||||
|
// GetStringLength() will return the length in characters, excluding the null-terminator
|
||||||
|
// Name strings will use IDxcBlobUtf16, while other string output blobs,
|
||||||
|
// such as errors/warnings, preprocessed HLSL, or other text will be based
|
||||||
|
// on the -encoding option.
|
||||||
|
|
||||||
|
// The API will use this interface for output name strings
|
||||||
|
struct __declspec(uuid("A3F84EAB-0FAA-497E-A39C-EE6ED60B2D84"))
|
||||||
|
IDxcBlobUtf16 : public IDxcBlobEncoding {
|
||||||
|
public:
|
||||||
|
virtual LPCWSTR STDMETHODCALLTYPE GetStringPointer(void) = 0;
|
||||||
|
virtual SIZE_T STDMETHODCALLTYPE GetStringLength(void) = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcBlobUtf16)
|
||||||
|
};
|
||||||
|
struct __declspec(uuid("3DA636C9-BA71-4024-A301-30CBF125305B"))
|
||||||
|
IDxcBlobUtf8 : public IDxcBlobEncoding {
|
||||||
|
public:
|
||||||
|
virtual LPCSTR STDMETHODCALLTYPE GetStringPointer(void) = 0;
|
||||||
|
virtual SIZE_T STDMETHODCALLTYPE GetStringLength(void) = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcBlobUtf8)
|
||||||
|
};
|
||||||
|
|
||||||
|
struct __declspec(uuid("7f61fc7d-950d-467f-b3e3-3c02fb49187c"))
|
||||||
|
IDxcIncludeHandler : public IUnknown {
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE LoadSource(
|
||||||
|
_In_z_ LPCWSTR pFilename, // Candidate filename.
|
||||||
|
_COM_Outptr_result_maybenull_ IDxcBlob **ppIncludeSource // Resultant source object for included file, nullptr if not found.
|
||||||
|
) = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcIncludeHandler)
|
||||||
|
};
|
||||||
|
|
||||||
|
// Structure for supplying bytes or text input to Dxc APIs.
|
||||||
|
// Use Encoding = 0 for non-text bytes, ANSI text, or unknown with BOM.
|
||||||
|
typedef struct DxcBuffer {
|
||||||
|
LPCVOID Ptr;
|
||||||
|
SIZE_T Size;
|
||||||
|
UINT Encoding;
|
||||||
|
} DxcText;
|
||||||
|
|
||||||
|
struct DxcDefine {
|
||||||
|
LPCWSTR Name;
|
||||||
|
_Maybenull_ LPCWSTR Value;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct __declspec(uuid("73EFFE2A-70DC-45F8-9690-EFF64C02429D"))
|
||||||
|
IDxcCompilerArgs : public IUnknown {
|
||||||
|
// Pass GetArguments() and GetCount() to Compile
|
||||||
|
virtual LPCWSTR* STDMETHODCALLTYPE GetArguments() = 0;
|
||||||
|
virtual UINT32 STDMETHODCALLTYPE GetCount() = 0;
|
||||||
|
|
||||||
|
// Add additional arguments or defines here, if desired.
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE AddArguments(
|
||||||
|
_In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments to add
|
||||||
|
_In_ UINT32 argCount // Number of arguments to add
|
||||||
|
) = 0;
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE AddArgumentsUTF8(
|
||||||
|
_In_opt_count_(argCount)LPCSTR *pArguments, // Array of pointers to UTF-8 arguments to add
|
||||||
|
_In_ UINT32 argCount // Number of arguments to add
|
||||||
|
) = 0;
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE AddDefines(
|
||||||
|
_In_count_(defineCount) const DxcDefine *pDefines, // Array of defines
|
||||||
|
_In_ UINT32 defineCount // Number of defines
|
||||||
|
) = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcCompilerArgs)
|
||||||
|
};
|
||||||
|
|
||||||
|
//////////////////////////
|
||||||
|
// Legacy Interfaces
|
||||||
|
/////////////////////////
|
||||||
|
|
||||||
|
// NOTE: IDxcUtils replaces IDxcLibrary
|
||||||
struct __declspec(uuid("e5204dc7-d18c-4c3c-bdfb-851673980fe7"))
|
struct __declspec(uuid("e5204dc7-d18c-4c3c-bdfb-851673980fe7"))
|
||||||
IDxcLibrary : public IUnknown {
|
IDxcLibrary : public IUnknown {
|
||||||
virtual HRESULT STDMETHODCALLTYPE SetMalloc(_In_opt_ IMalloc *pMalloc) = 0;
|
virtual HRESULT STDMETHODCALLTYPE SetMalloc(_In_opt_ IMalloc *pMalloc) = 0;
|
||||||
virtual HRESULT STDMETHODCALLTYPE CreateBlobFromBlob(
|
virtual HRESULT STDMETHODCALLTYPE CreateBlobFromBlob(
|
||||||
_In_ IDxcBlob *pBlob, UINT32 offset, UINT32 length, _COM_Outptr_ IDxcBlob **ppResult) = 0;
|
_In_ IDxcBlob *pBlob, UINT32 offset, UINT32 length, _COM_Outptr_ IDxcBlob **ppResult) = 0;
|
||||||
virtual HRESULT STDMETHODCALLTYPE CreateBlobFromFile(
|
virtual HRESULT STDMETHODCALLTYPE CreateBlobFromFile(
|
||||||
LPCWSTR pFileName, _In_opt_ UINT32* codePage,
|
_In_z_ LPCWSTR pFileName, _In_opt_ UINT32* codePage,
|
||||||
_COM_Outptr_ IDxcBlobEncoding **pBlobEncoding) = 0;
|
_COM_Outptr_ IDxcBlobEncoding **pBlobEncoding) = 0;
|
||||||
virtual HRESULT STDMETHODCALLTYPE CreateBlobWithEncodingFromPinned(
|
virtual HRESULT STDMETHODCALLTYPE CreateBlobWithEncodingFromPinned(
|
||||||
_In_bytecount_(size) LPCVOID pText, UINT32 size, UINT32 codePage,
|
_In_bytecount_(size) LPCVOID pText, UINT32 size, UINT32 codePage,
|
||||||
@@ -151,41 +261,38 @@ IDxcLibrary : public IUnknown {
|
|||||||
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcLibrary)
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcLibrary)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// NOTE: IDxcResult replaces IDxcOperationResult
|
||||||
struct __declspec(uuid("CEDB484A-D4E9-445A-B991-CA21CA157DC2"))
|
struct __declspec(uuid("CEDB484A-D4E9-445A-B991-CA21CA157DC2"))
|
||||||
IDxcOperationResult : public IUnknown {
|
IDxcOperationResult : public IUnknown {
|
||||||
virtual HRESULT STDMETHODCALLTYPE GetStatus(_Out_ HRESULT *pStatus) = 0;
|
virtual HRESULT STDMETHODCALLTYPE GetStatus(_Out_ HRESULT *pStatus) = 0;
|
||||||
virtual HRESULT STDMETHODCALLTYPE GetResult(_COM_Outptr_result_maybenull_ IDxcBlob **pResult) = 0;
|
|
||||||
virtual HRESULT STDMETHODCALLTYPE GetErrorBuffer(_COM_Outptr_result_maybenull_ IDxcBlobEncoding **pErrors) = 0;
|
// GetResult returns the main result of the operation.
|
||||||
|
// This corresponds to:
|
||||||
|
// DXC_OUT_OBJECT - Compile() with shader or library target
|
||||||
|
// DXC_OUT_DISASSEMBLY - Disassemble()
|
||||||
|
// DXC_OUT_HLSL - Compile() with -P
|
||||||
|
// DXC_OUT_ROOT_SIGNATURE - Compile() with rootsig_* target
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetResult(_COM_Outptr_result_maybenull_ IDxcBlob **ppResult) = 0;
|
||||||
|
|
||||||
|
// GetErrorBuffer Corresponds to DXC_OUT_ERRORS.
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetErrorBuffer(_COM_Outptr_result_maybenull_ IDxcBlobEncoding **ppErrors) = 0;
|
||||||
|
|
||||||
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcOperationResult)
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcOperationResult)
|
||||||
};
|
};
|
||||||
|
|
||||||
struct __declspec(uuid("7f61fc7d-950d-467f-b3e3-3c02fb49187c"))
|
// NOTE: IDxcCompiler3 replaces IDxcCompiler and IDxcCompiler2
|
||||||
IDxcIncludeHandler : public IUnknown {
|
|
||||||
virtual HRESULT STDMETHODCALLTYPE LoadSource(
|
|
||||||
_In_ LPCWSTR pFilename, // Candidate filename.
|
|
||||||
_COM_Outptr_result_maybenull_ IDxcBlob **ppIncludeSource // Resultant source object for included file, nullptr if not found.
|
|
||||||
) = 0;
|
|
||||||
|
|
||||||
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcIncludeHandler)
|
|
||||||
};
|
|
||||||
|
|
||||||
struct DxcDefine {
|
|
||||||
LPCWSTR Name;
|
|
||||||
_Maybenull_ LPCWSTR Value;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct __declspec(uuid("8c210bf3-011f-4422-8d70-6f9acb8db617"))
|
struct __declspec(uuid("8c210bf3-011f-4422-8d70-6f9acb8db617"))
|
||||||
IDxcCompiler : public IUnknown {
|
IDxcCompiler : public IUnknown {
|
||||||
// Compile a single entry point to the target shader model
|
// Compile a single entry point to the target shader model
|
||||||
virtual HRESULT STDMETHODCALLTYPE Compile(
|
virtual HRESULT STDMETHODCALLTYPE Compile(
|
||||||
_In_ IDxcBlob *pSource, // Source text to compile
|
_In_ IDxcBlob *pSource, // Source text to compile
|
||||||
_In_opt_ LPCWSTR pSourceName, // Optional file name for pSource. Used in errors and include handlers.
|
_In_opt_z_ LPCWSTR pSourceName, // Optional file name for pSource. Used in errors and include handlers.
|
||||||
_In_ LPCWSTR pEntryPoint, // entry point name
|
_In_opt_z_ LPCWSTR pEntryPoint, // entry point name
|
||||||
_In_ LPCWSTR pTargetProfile, // shader profile to compile
|
_In_z_ LPCWSTR pTargetProfile, // shader profile to compile
|
||||||
_In_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
_In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
||||||
_In_ UINT32 argCount, // Number of arguments
|
_In_ UINT32 argCount, // Number of arguments
|
||||||
_In_count_(defineCount) const DxcDefine *pDefines, // Array of defines
|
_In_count_(defineCount)
|
||||||
|
const DxcDefine *pDefines, // Array of defines
|
||||||
_In_ UINT32 defineCount, // Number of defines
|
_In_ UINT32 defineCount, // Number of defines
|
||||||
_In_opt_ IDxcIncludeHandler *pIncludeHandler, // user-provided interface to handle #include directives (optional)
|
_In_opt_ IDxcIncludeHandler *pIncludeHandler, // user-provided interface to handle #include directives (optional)
|
||||||
_COM_Outptr_ IDxcOperationResult **ppResult // Compiler output status, buffer, and errors
|
_COM_Outptr_ IDxcOperationResult **ppResult // Compiler output status, buffer, and errors
|
||||||
@@ -194,10 +301,11 @@ IDxcCompiler : public IUnknown {
|
|||||||
// Preprocess source text
|
// Preprocess source text
|
||||||
virtual HRESULT STDMETHODCALLTYPE Preprocess(
|
virtual HRESULT STDMETHODCALLTYPE Preprocess(
|
||||||
_In_ IDxcBlob *pSource, // Source text to preprocess
|
_In_ IDxcBlob *pSource, // Source text to preprocess
|
||||||
_In_opt_ LPCWSTR pSourceName, // Optional file name for pSource. Used in errors and include handlers.
|
_In_opt_z_ LPCWSTR pSourceName, // Optional file name for pSource. Used in errors and include handlers.
|
||||||
_In_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
_In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
||||||
_In_ UINT32 argCount, // Number of arguments
|
_In_ UINT32 argCount, // Number of arguments
|
||||||
_In_count_(defineCount) const DxcDefine *pDefines, // Array of defines
|
_In_count_(defineCount)
|
||||||
|
const DxcDefine *pDefines, // Array of defines
|
||||||
_In_ UINT32 defineCount, // Number of defines
|
_In_ UINT32 defineCount, // Number of defines
|
||||||
_In_opt_ IDxcIncludeHandler *pIncludeHandler, // user-provided interface to handle #include directives (optional)
|
_In_opt_ IDxcIncludeHandler *pIncludeHandler, // user-provided interface to handle #include directives (optional)
|
||||||
_COM_Outptr_ IDxcOperationResult **ppResult // Preprocessor output status, buffer, and errors
|
_COM_Outptr_ IDxcOperationResult **ppResult // Preprocessor output status, buffer, and errors
|
||||||
@@ -212,21 +320,23 @@ IDxcCompiler : public IUnknown {
|
|||||||
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcCompiler)
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcCompiler)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// NOTE: IDxcCompiler3 replaces IDxcCompiler and IDxcCompiler2
|
||||||
struct __declspec(uuid("A005A9D9-B8BB-4594-B5C9-0E633BEC4D37"))
|
struct __declspec(uuid("A005A9D9-B8BB-4594-B5C9-0E633BEC4D37"))
|
||||||
IDxcCompiler2 : public IDxcCompiler {
|
IDxcCompiler2 : public IDxcCompiler {
|
||||||
// Compile a single entry point to the target shader model with debug information.
|
// Compile a single entry point to the target shader model with debug information.
|
||||||
virtual HRESULT STDMETHODCALLTYPE CompileWithDebug(
|
virtual HRESULT STDMETHODCALLTYPE CompileWithDebug(
|
||||||
_In_ IDxcBlob *pSource, // Source text to compile
|
_In_ IDxcBlob *pSource, // Source text to compile
|
||||||
_In_opt_ LPCWSTR pSourceName, // Optional file name for pSource. Used in errors and include handlers.
|
_In_opt_z_ LPCWSTR pSourceName, // Optional file name for pSource. Used in errors and include handlers.
|
||||||
_In_ LPCWSTR pEntryPoint, // Entry point name
|
_In_opt_z_ LPCWSTR pEntryPoint, // Entry point name
|
||||||
_In_ LPCWSTR pTargetProfile, // Shader profile to compile
|
_In_z_ LPCWSTR pTargetProfile, // Shader profile to compile
|
||||||
_In_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
_In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
||||||
_In_ UINT32 argCount, // Number of arguments
|
_In_ UINT32 argCount, // Number of arguments
|
||||||
_In_count_(defineCount) const DxcDefine *pDefines, // Array of defines
|
_In_count_(defineCount)
|
||||||
|
const DxcDefine *pDefines, // Array of defines
|
||||||
_In_ UINT32 defineCount, // Number of defines
|
_In_ UINT32 defineCount, // Number of defines
|
||||||
_In_opt_ IDxcIncludeHandler *pIncludeHandler, // user-provided interface to handle #include directives (optional)
|
_In_opt_ IDxcIncludeHandler *pIncludeHandler, // user-provided interface to handle #include directives (optional)
|
||||||
_COM_Outptr_ IDxcOperationResult **ppResult, // Compiler output status, buffer, and errors
|
_COM_Outptr_ IDxcOperationResult **ppResult, // Compiler output status, buffer, and errors
|
||||||
_Outptr_opt_result_z_ LPWSTR *ppDebugBlobName,// Suggested file name for debug blob.
|
_Outptr_opt_result_z_ LPWSTR *ppDebugBlobName,// Suggested file name for debug blob. (Must be HeapFree()'d!)
|
||||||
_COM_Outptr_opt_ IDxcBlob **ppDebugBlob // Debug blob
|
_COM_Outptr_opt_ IDxcBlob **ppDebugBlob // Debug blob
|
||||||
) = 0;
|
) = 0;
|
||||||
|
|
||||||
@@ -249,17 +359,170 @@ public:
|
|||||||
_In_ LPCWSTR pTargetProfile, // shader profile to link
|
_In_ LPCWSTR pTargetProfile, // shader profile to link
|
||||||
_In_count_(libCount)
|
_In_count_(libCount)
|
||||||
const LPCWSTR *pLibNames, // Array of library names to link
|
const LPCWSTR *pLibNames, // Array of library names to link
|
||||||
UINT32 libCount, // Number of libraries to link
|
_In_ UINT32 libCount, // Number of libraries to link
|
||||||
_In_count_(argCount)
|
_In_opt_count_(argCount) const LPCWSTR *pArguments, // Array of pointers to arguments
|
||||||
const LPCWSTR *pArguments, // Array of pointers to arguments
|
|
||||||
_In_ UINT32 argCount, // Number of arguments
|
_In_ UINT32 argCount, // Number of arguments
|
||||||
_COM_Outptr_ IDxcOperationResult *
|
_COM_Outptr_
|
||||||
*ppResult // Linker output status, buffer, and errors
|
IDxcOperationResult **ppResult // Linker output status, buffer, and errors
|
||||||
) = 0;
|
) = 0;
|
||||||
|
|
||||||
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcLinker)
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcLinker)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/////////////////////////
|
||||||
|
// Latest interfaces. Please use these
|
||||||
|
////////////////////////
|
||||||
|
|
||||||
|
// NOTE: IDxcUtils replaces IDxcLibrary
|
||||||
|
struct __declspec(uuid("4605C4CB-2019-492A-ADA4-65F20BB7D67F"))
|
||||||
|
IDxcUtils : public IUnknown {
|
||||||
|
// Create a sub-blob that holds a reference to the outer blob and points to its memory.
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE CreateBlobFromBlob(
|
||||||
|
_In_ IDxcBlob *pBlob, UINT32 offset, UINT32 length, _COM_Outptr_ IDxcBlob **ppResult) = 0;
|
||||||
|
|
||||||
|
// For codePage, use 0 (or DXC_CP_ACP) for raw binary or ANSI code page
|
||||||
|
|
||||||
|
// Creates a blob referencing existing memory, with no copy.
|
||||||
|
// User must manage the memory lifetime separately.
|
||||||
|
// (was: CreateBlobWithEncodingFromPinned)
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE CreateBlobFromPinned(
|
||||||
|
_In_bytecount_(size) LPCVOID pData, UINT32 size, UINT32 codePage,
|
||||||
|
_COM_Outptr_ IDxcBlobEncoding **pBlobEncoding) = 0;
|
||||||
|
|
||||||
|
// Create blob, taking ownership of memory allocated with supplied allocator.
|
||||||
|
// (was: CreateBlobWithEncodingOnMalloc)
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE MoveToBlob(
|
||||||
|
_In_bytecount_(size) LPCVOID pData, IMalloc *pIMalloc, UINT32 size, UINT32 codePage,
|
||||||
|
_COM_Outptr_ IDxcBlobEncoding **pBlobEncoding) = 0;
|
||||||
|
|
||||||
|
////
|
||||||
|
// New blobs and copied contents are allocated with the current allocator
|
||||||
|
|
||||||
|
// Copy blob contents to memory owned by the new blob.
|
||||||
|
// (was: CreateBlobWithEncodingOnHeapCopy)
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE CreateBlob(
|
||||||
|
_In_bytecount_(size) LPCVOID pData, UINT32 size, UINT32 codePage,
|
||||||
|
_COM_Outptr_ IDxcBlobEncoding **pBlobEncoding) = 0;
|
||||||
|
|
||||||
|
// (was: CreateBlobFromFile)
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE LoadFile(
|
||||||
|
_In_z_ LPCWSTR pFileName, _In_opt_ UINT32* pCodePage,
|
||||||
|
_COM_Outptr_ IDxcBlobEncoding **pBlobEncoding) = 0;
|
||||||
|
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE CreateReadOnlyStreamFromBlob(
|
||||||
|
_In_ IDxcBlob *pBlob, _COM_Outptr_ IStream **ppStream) = 0;
|
||||||
|
|
||||||
|
// Create default file-based include handler
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE CreateDefaultIncludeHandler(
|
||||||
|
_COM_Outptr_ IDxcIncludeHandler **ppResult) = 0;
|
||||||
|
|
||||||
|
// Convert or return matching encoded text blobs
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetBlobAsUtf8(
|
||||||
|
_In_ IDxcBlob *pBlob, _COM_Outptr_ IDxcBlobUtf8 **pBlobEncoding) = 0;
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetBlobAsUtf16(
|
||||||
|
_In_ IDxcBlob *pBlob, _COM_Outptr_ IDxcBlobUtf16 **pBlobEncoding) = 0;
|
||||||
|
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetDxilContainerPart(
|
||||||
|
_In_ const DxcBuffer *pShader,
|
||||||
|
_In_ UINT32 DxcPart,
|
||||||
|
_Outptr_result_nullonfailure_ void **ppPartData,
|
||||||
|
_Out_ UINT32 *pPartSizeInBytes) = 0;
|
||||||
|
|
||||||
|
// Create reflection interface from serialized Dxil container, or DXC_PART_REFLECTION_DATA.
|
||||||
|
// TBD: Require part header for RDAT? (leaning towards yes)
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE CreateReflection(
|
||||||
|
_In_ const DxcBuffer *pData, REFIID iid, void **ppvReflection) = 0;
|
||||||
|
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE BuildArguments(
|
||||||
|
_In_opt_z_ LPCWSTR pSourceName, // Optional file name for pSource. Used in errors and include handlers.
|
||||||
|
_In_opt_z_ LPCWSTR pEntryPoint, // Entry point name. (-E)
|
||||||
|
_In_z_ LPCWSTR pTargetProfile, // Shader profile to compile. (-T)
|
||||||
|
_In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
||||||
|
_In_ UINT32 argCount, // Number of arguments
|
||||||
|
_In_count_(defineCount)
|
||||||
|
const DxcDefine *pDefines, // Array of defines
|
||||||
|
_In_ UINT32 defineCount, // Number of defines
|
||||||
|
_COM_Outptr_ IDxcCompilerArgs **ppArgs // Arguments you can use with Compile() method
|
||||||
|
) = 0;
|
||||||
|
|
||||||
|
// Takes the shader PDB and returns the hash and the container inside it
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetPDBContents(
|
||||||
|
_In_ IDxcBlob *pPDBBlob, _COM_Outptr_ IDxcBlob **ppHash, _COM_Outptr_ IDxcBlob **ppContainer) = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcUtils)
|
||||||
|
};
|
||||||
|
|
||||||
|
// For use with IDxcResult::[Has|Get]Output dxcOutKind argument
|
||||||
|
// Note: text outputs returned from version 2 APIs are UTF-8 or UTF-16 based on -encoding option
|
||||||
|
typedef enum DXC_OUT_KIND {
|
||||||
|
DXC_OUT_NONE = 0,
|
||||||
|
DXC_OUT_OBJECT = 1, // IDxcBlob - Shader or library object
|
||||||
|
DXC_OUT_ERRORS = 2, // IDxcBlobUtf8 or IDxcBlobUtf16
|
||||||
|
DXC_OUT_PDB = 3, // IDxcBlob
|
||||||
|
DXC_OUT_SHADER_HASH = 4, // IDxcBlob - DxcShaderHash of shader or shader with source info (-Zsb/-Zss)
|
||||||
|
DXC_OUT_DISASSEMBLY = 5, // IDxcBlobUtf8 or IDxcBlobUtf16 - from Disassemble
|
||||||
|
DXC_OUT_HLSL = 6, // IDxcBlobUtf8 or IDxcBlobUtf16 - from Preprocessor or Rewriter
|
||||||
|
DXC_OUT_TEXT = 7, // IDxcBlobUtf8 or IDxcBlobUtf16 - other text, such as -ast-dump or -Odump
|
||||||
|
DXC_OUT_REFLECTION = 8, // IDxcBlob - RDAT part with reflection data
|
||||||
|
DXC_OUT_ROOT_SIGNATURE = 9, // IDxcBlob - Serialized root signature output
|
||||||
|
DXC_OUT_EXTRA_OUTPUTS = 10,// IDxcExtraResults - Extra outputs
|
||||||
|
|
||||||
|
DXC_OUT_FORCE_DWORD = 0xFFFFFFFF
|
||||||
|
} DXC_OUT_KIND;
|
||||||
|
|
||||||
|
struct __declspec(uuid("58346CDA-DDE7-4497-9461-6F87AF5E0659"))
|
||||||
|
IDxcResult : public IDxcOperationResult {
|
||||||
|
virtual BOOL STDMETHODCALLTYPE HasOutput(_In_ DXC_OUT_KIND dxcOutKind) = 0;
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetOutput(_In_ DXC_OUT_KIND dxcOutKind,
|
||||||
|
_In_ REFIID iid, _COM_Outptr_opt_result_maybenull_ void **ppvObject,
|
||||||
|
_COM_Outptr_ IDxcBlobUtf16 **ppOutputName) = 0;
|
||||||
|
|
||||||
|
virtual UINT32 GetNumOutputs() = 0;
|
||||||
|
virtual DXC_OUT_KIND GetOutputByIndex(UINT32 Index) = 0;
|
||||||
|
virtual DXC_OUT_KIND PrimaryOutput() = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcResult)
|
||||||
|
};
|
||||||
|
|
||||||
|
// Special names for extra output that should get written to specific streams
|
||||||
|
#define DXC_EXTRA_OUTPUT_NAME_STDOUT L"*stdout*"
|
||||||
|
#define DXC_EXTRA_OUTPUT_NAME_STDERR L"*stderr*"
|
||||||
|
|
||||||
|
struct __declspec(uuid("319b37a2-a5c2-494a-a5de-4801b2faf989"))
|
||||||
|
IDxcExtraOutputs : public IUnknown {
|
||||||
|
|
||||||
|
virtual UINT32 STDMETHODCALLTYPE GetOutputCount() = 0;
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE GetOutput(_In_ UINT32 uIndex,
|
||||||
|
_In_ REFIID iid, _COM_Outptr_opt_result_maybenull_ void **ppvObject,
|
||||||
|
_COM_Outptr_opt_result_maybenull_ IDxcBlobUtf16 **ppOutputType,
|
||||||
|
_COM_Outptr_opt_result_maybenull_ IDxcBlobUtf16 **ppOutputName) = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcExtraOutputs)
|
||||||
|
};
|
||||||
|
|
||||||
|
struct __declspec(uuid("228B4687-5A6A-4730-900C-9702B2203F54"))
|
||||||
|
IDxcCompiler3 : public IUnknown {
|
||||||
|
// Compile a single entry point to the target shader model,
|
||||||
|
// Compile a library to a library target (-T lib_*),
|
||||||
|
// Compile a root signature (-T rootsig_*), or
|
||||||
|
// Preprocess HLSL source (-P)
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE Compile(
|
||||||
|
_In_ const DxcBuffer *pSource, // Source text to compile
|
||||||
|
_In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments
|
||||||
|
_In_ UINT32 argCount, // Number of arguments
|
||||||
|
_In_opt_ IDxcIncludeHandler *pIncludeHandler, // user-provided interface to handle #include directives (optional)
|
||||||
|
_In_ REFIID riid, _Out_ LPVOID *ppResult // IDxcResult: status, buffer, and errors
|
||||||
|
) = 0;
|
||||||
|
|
||||||
|
// Disassemble a program.
|
||||||
|
virtual HRESULT STDMETHODCALLTYPE Disassemble(
|
||||||
|
_In_ const DxcBuffer *pObject, // Program to disassemble: dxil container or bitcode.
|
||||||
|
_In_ REFIID riid, _Out_ LPVOID *ppResult // IDxcResult: status, disassembly text, and errors
|
||||||
|
) = 0;
|
||||||
|
|
||||||
|
DECLARE_CROSS_PLATFORM_UUIDOF(IDxcCompiler3)
|
||||||
|
};
|
||||||
|
|
||||||
static const UINT32 DxcValidatorFlags_Default = 0;
|
static const UINT32 DxcValidatorFlags_Default = 0;
|
||||||
static const UINT32 DxcValidatorFlags_InPlaceEdit = 1; // Validator is allowed to update shader blob in-place.
|
static const UINT32 DxcValidatorFlags_InPlaceEdit = 1; // Validator is allowed to update shader blob in-place.
|
||||||
static const UINT32 DxcValidatorFlags_RootSignatureOnly = 2;
|
static const UINT32 DxcValidatorFlags_RootSignatureOnly = 2;
|
||||||
@@ -356,80 +619,79 @@ IDxcVersionInfo2 : public IDxcVersionInfo {
|
|||||||
// Note: __declspec(selectany) requires 'extern'
|
// Note: __declspec(selectany) requires 'extern'
|
||||||
// On Linux __declspec(selectany) is removed and using 'extern' results in link error.
|
// On Linux __declspec(selectany) is removed and using 'extern' results in link error.
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#define EXTERN extern
|
#define CLSID_SCOPE __declspec(selectany) extern
|
||||||
#else
|
#else
|
||||||
#define EXTERN
|
#define CLSID_SCOPE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// {73e22d93-e6ce-47f3-b5bf-f0664f39c1b0}
|
CLSID_SCOPE const CLSID CLSID_DxcCompiler = {
|
||||||
__declspec(selectany) EXTERN const CLSID CLSID_DxcCompiler = {
|
|
||||||
0x73e22d93,
|
0x73e22d93,
|
||||||
0xe6ce,
|
0xe6ce,
|
||||||
0x47f3,
|
0x47f3,
|
||||||
{ 0xb5, 0xbf, 0xf0, 0x66, 0x4f, 0x39, 0xc1, 0xb0 }
|
{0xb5, 0xbf, 0xf0, 0x66, 0x4f, 0x39, 0xc1, 0xb0}};
|
||||||
};
|
|
||||||
|
|
||||||
// {EF6A8087-B0EA-4D56-9E45-D07E1A8B7806}
|
// {EF6A8087-B0EA-4D56-9E45-D07E1A8B7806}
|
||||||
__declspec(selectany) EXTERN const GUID CLSID_DxcLinker = {
|
CLSID_SCOPE const GUID CLSID_DxcLinker = {
|
||||||
0xef6a8087,
|
0xef6a8087,
|
||||||
0xb0ea,
|
0xb0ea,
|
||||||
0x4d56,
|
0x4d56,
|
||||||
{0x9e, 0x45, 0xd0, 0x7e, 0x1a, 0x8b, 0x78, 0x6}
|
{0x9e, 0x45, 0xd0, 0x7e, 0x1a, 0x8b, 0x78, 0x6}};
|
||||||
};
|
|
||||||
|
|
||||||
// {CD1F6B73-2AB0-484D-8EDC-EBE7A43CA09F}
|
// {CD1F6B73-2AB0-484D-8EDC-EBE7A43CA09F}
|
||||||
__declspec(selectany) EXTERN const CLSID CLSID_DxcDiaDataSource = {
|
CLSID_SCOPE const CLSID CLSID_DxcDiaDataSource = {
|
||||||
0xcd1f6b73,
|
0xcd1f6b73,
|
||||||
0x2ab0,
|
0x2ab0,
|
||||||
0x484d,
|
0x484d,
|
||||||
{ 0x8e, 0xdc, 0xeb, 0xe7, 0xa4, 0x3c, 0xa0, 0x9f }
|
{0x8e, 0xdc, 0xeb, 0xe7, 0xa4, 0x3c, 0xa0, 0x9f}};
|
||||||
};
|
|
||||||
|
// {3E56AE82-224D-470F-A1A1-FE3016EE9F9D}
|
||||||
|
CLSID_SCOPE const CLSID CLSID_DxcCompilerArgs = {
|
||||||
|
0x3e56ae82,
|
||||||
|
0x224d,
|
||||||
|
0x470f,
|
||||||
|
{0xa1, 0xa1, 0xfe, 0x30, 0x16, 0xee, 0x9f, 0x9d}};
|
||||||
|
|
||||||
// {6245D6AF-66E0-48FD-80B4-4D271796748C}
|
// {6245D6AF-66E0-48FD-80B4-4D271796748C}
|
||||||
__declspec(selectany) EXTERN const GUID CLSID_DxcLibrary = {
|
CLSID_SCOPE const GUID CLSID_DxcLibrary = {
|
||||||
0x6245d6af,
|
0x6245d6af,
|
||||||
0x66e0,
|
0x66e0,
|
||||||
0x48fd,
|
0x48fd,
|
||||||
{ 0x80, 0xb4, 0x4d, 0x27, 0x17, 0x96, 0x74, 0x8c }
|
{0x80, 0xb4, 0x4d, 0x27, 0x17, 0x96, 0x74, 0x8c}};
|
||||||
};
|
|
||||||
|
CLSID_SCOPE const GUID CLSID_DxcUtils = CLSID_DxcLibrary;
|
||||||
|
|
||||||
// {8CA3E215-F728-4CF3-8CDD-88AF917587A1}
|
// {8CA3E215-F728-4CF3-8CDD-88AF917587A1}
|
||||||
__declspec(selectany) EXTERN const GUID CLSID_DxcValidator = {
|
CLSID_SCOPE const GUID CLSID_DxcValidator = {
|
||||||
0x8ca3e215,
|
0x8ca3e215,
|
||||||
0xf728,
|
0xf728,
|
||||||
0x4cf3,
|
0x4cf3,
|
||||||
{ 0x8c, 0xdd, 0x88, 0xaf, 0x91, 0x75, 0x87, 0xa1 }
|
{0x8c, 0xdd, 0x88, 0xaf, 0x91, 0x75, 0x87, 0xa1}};
|
||||||
};
|
|
||||||
|
|
||||||
// {D728DB68-F903-4F80-94CD-DCCF76EC7151}
|
// {D728DB68-F903-4F80-94CD-DCCF76EC7151}
|
||||||
__declspec(selectany) EXTERN const GUID CLSID_DxcAssembler = {
|
CLSID_SCOPE const GUID CLSID_DxcAssembler = {
|
||||||
0xd728db68,
|
0xd728db68,
|
||||||
0xf903,
|
0xf903,
|
||||||
0x4f80,
|
0x4f80,
|
||||||
{ 0x94, 0xcd, 0xdc, 0xcf, 0x76, 0xec, 0x71, 0x51 }
|
{0x94, 0xcd, 0xdc, 0xcf, 0x76, 0xec, 0x71, 0x51}};
|
||||||
};
|
|
||||||
|
|
||||||
// {b9f54489-55b8-400c-ba3a-1675e4728b91}
|
// {b9f54489-55b8-400c-ba3a-1675e4728b91}
|
||||||
__declspec(selectany) EXTERN const GUID CLSID_DxcContainerReflection = {
|
CLSID_SCOPE const GUID CLSID_DxcContainerReflection = {
|
||||||
0xb9f54489,
|
0xb9f54489,
|
||||||
0x55b8,
|
0x55b8,
|
||||||
0x400c,
|
0x400c,
|
||||||
{ 0xba, 0x3a, 0x16, 0x75, 0xe4, 0x72, 0x8b, 0x91 }
|
{0xba, 0x3a, 0x16, 0x75, 0xe4, 0x72, 0x8b, 0x91}};
|
||||||
};
|
|
||||||
|
|
||||||
// {AE2CD79F-CC22-453F-9B6B-B124E7A5204C}
|
// {AE2CD79F-CC22-453F-9B6B-B124E7A5204C}
|
||||||
__declspec(selectany) EXTERN const GUID CLSID_DxcOptimizer = {
|
CLSID_SCOPE const GUID CLSID_DxcOptimizer = {
|
||||||
0xae2cd79f,
|
0xae2cd79f,
|
||||||
0xcc22,
|
0xcc22,
|
||||||
0x453f,
|
0x453f,
|
||||||
{0x9b, 0x6b, 0xb1, 0x24, 0xe7, 0xa5, 0x20, 0x4c}
|
{0x9b, 0x6b, 0xb1, 0x24, 0xe7, 0xa5, 0x20, 0x4c}};
|
||||||
};
|
|
||||||
|
|
||||||
// {94134294-411f-4574-b4d0-8741e25240d2}
|
// {94134294-411f-4574-b4d0-8741e25240d2}
|
||||||
__declspec(selectany) EXTERN const GUID CLSID_DxcContainerBuilder = {
|
CLSID_SCOPE const GUID CLSID_DxcContainerBuilder = {
|
||||||
0x94134294,
|
0x94134294,
|
||||||
0x411f,
|
0x411f,
|
||||||
0x4574,
|
0x4574,
|
||||||
{ 0xb4, 0xd0, 0x87, 0x41, 0xe2, 0x52, 0x40, 0xd2 }
|
{0xb4, 0xd0, 0x87, 0x41, 0xe2, 0x52, 0x40, 0xd2}};
|
||||||
};
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user