@@ -130,6 +130,14 @@ const GfxCount kMaxRenderTargetCount = 8;
130
130
131
131
class ITransientResourceHeap ;
132
132
133
+ enum class ShaderModuleSourceType
134
+ {
135
+ SlangSource, // a slang source string in memory.
136
+ SlangModuleBinary, // a slang module binary code in memory.
137
+ SlangSourceFile, // a slang source from file.
138
+ SlangModuleBinaryFile, // a slang module binary code from file.
139
+ };
140
+
133
141
class IShaderProgram : public ISlangUnknown
134
142
{
135
143
public:
@@ -162,6 +170,22 @@ class IShaderProgram: public ISlangUnknown
162
170
// Each element must define only 1 Slang EntryPoint.
163
171
slang::IComponentType** slangEntryPoints = nullptr ;
164
172
};
173
+
174
+ struct CreateDesc2
175
+ {
176
+ ShaderModuleSourceType sourceType;
177
+ void * sourceData;
178
+ Size sourceDataSize;
179
+
180
+ // Number of entry points to include in the shader program. 0 means include all entry points
181
+ // defined in the module.
182
+ GfxCount entryPointCount = 0 ;
183
+ // Names of entry points to include in the shader program. The size of the array must be
184
+ // `entryPointCount`.
185
+ const char ** entryPointNames = nullptr ;
186
+ };
187
+
188
+ virtual SLANG_NO_THROW slang::TypeReflection* SLANG_MCALL findTypeByName (const char * name) = 0;
165
189
};
166
190
#define SLANG_UUID_IShaderProgram \
167
191
{ \
@@ -1516,8 +1540,9 @@ class IQueryPool : public ISlangUnknown
1516
1540
{ 0xc2cc3784 , 0x12da , 0x480a , { 0xa8 , 0x74 , 0x8b , 0x31 , 0x96 , 0x1c , 0xa4 , 0x36 } }
1517
1541
1518
1542
1519
- class ICommandEncoder
1543
+ class ICommandEncoder : public ISlangUnknown
1520
1544
{
1545
+ SLANG_COM_INTERFACE ( 0x77ea6383 , 0xbe3d , 0x40aa , { 0x8b , 0x45 , 0xfd , 0xf0 , 0xd7 , 0x5b , 0xfa , 0x34 });
1521
1546
public:
1522
1547
virtual SLANG_NO_THROW void SLANG_MCALL endEncoding () = 0;
1523
1548
virtual SLANG_NO_THROW void SLANG_MCALL writeTimestamp (IQueryPool* queryPool, GfxIndex queryIndex) = 0;
@@ -1566,6 +1591,9 @@ struct ClearResourceViewFlags
1566
1591
1567
1592
class IResourceCommandEncoder : public ICommandEncoder
1568
1593
{
1594
+ // {F99A00E9-ED50-4088-8A0E-3B26755031EA}
1595
+ SLANG_COM_INTERFACE (0xf99a00e9 , 0xed50 , 0x4088 , { 0x8a , 0xe , 0x3b , 0x26 , 0x75 , 0x50 , 0x31 , 0xea });
1596
+
1569
1597
public:
1570
1598
virtual SLANG_NO_THROW void SLANG_MCALL copyBuffer (
1571
1599
IBufferResource* dst,
@@ -1646,6 +1674,8 @@ class IResourceCommandEncoder : public ICommandEncoder
1646
1674
1647
1675
class IRenderCommandEncoder : public IResourceCommandEncoder
1648
1676
{
1677
+ // {7A8D56D0-53E6-4AD6-85F7-D14DC110FDCE}
1678
+ SLANG_COM_INTERFACE (0x7a8d56d0 , 0x53e6 , 0x4ad6 , { 0x85 , 0xf7 , 0xd1 , 0x4d , 0xc1 , 0x10 , 0xfd , 0xce })
1649
1679
public:
1650
1680
// Sets the current pipeline state. This method returns a transient shader object for
1651
1681
// writing shader parameters. This shader object will not retain any resources or
@@ -1728,6 +1758,9 @@ class IRenderCommandEncoder : public IResourceCommandEncoder
1728
1758
1729
1759
class IComputeCommandEncoder : public IResourceCommandEncoder
1730
1760
{
1761
+ // {88AA9322-82F7-4FE6-A68A-29C7FE798737}
1762
+ SLANG_COM_INTERFACE (0x88aa9322 , 0x82f7 , 0x4fe6 , { 0xa6 , 0x8a , 0x29 , 0xc7 , 0xfe , 0x79 , 0x87 , 0x37 })
1763
+
1731
1764
public:
1732
1765
// Sets the current pipeline state. This method returns a transient shader object for
1733
1766
// writing shader parameters. This shader object will not retain any resources or
@@ -1765,6 +1798,7 @@ struct AccelerationStructureQueryDesc
1765
1798
1766
1799
class IRayTracingCommandEncoder : public IResourceCommandEncoder
1767
1800
{
1801
+ SLANG_COM_INTERFACE (0x9a672b87 , 0x5035 , 0x45e3 , { 0x96 , 0x7c , 0x1f , 0x85 , 0xcd , 0xb3 , 0x63 , 0x4f })
1768
1802
public:
1769
1803
virtual SLANG_NO_THROW void SLANG_MCALL buildAccelerationStructure (
1770
1804
const IAccelerationStructure::BuildDesc& desc,
@@ -1799,10 +1833,6 @@ class IRayTracingCommandEncoder : public IResourceCommandEncoder
1799
1833
GfxCount height,
1800
1834
GfxCount depth) = 0;
1801
1835
};
1802
- #define SLANG_UUID_IRayTracingCommandEncoder \
1803
- { \
1804
- 0x9a672b87 , 0x5035 , 0x45e3 , { 0x96 , 0x7c , 0x1f , 0x85 , 0xcd , 0xb3 , 0x63 , 0x4f } \
1805
- }
1806
1836
1807
1837
class ICommandBuffer : public ISlangUnknown
1808
1838
{
@@ -2356,6 +2386,11 @@ class IDevice: public ISlangUnknown
2356
2386
return program;
2357
2387
}
2358
2388
2389
+ virtual SLANG_NO_THROW Result SLANG_MCALL createProgram2 (
2390
+ const IShaderProgram::CreateDesc2& createDesc,
2391
+ IShaderProgram** outProgram,
2392
+ ISlangBlob** outDiagnosticBlob = nullptr ) = 0;
2393
+
2359
2394
virtual SLANG_NO_THROW Result SLANG_MCALL createGraphicsPipelineState (
2360
2395
const GraphicsPipelineStateDesc& desc,
2361
2396
IPipelineState** outState) = 0;
0 commit comments