@@ -49,9 +49,11 @@ class GlslangDownstreamCompiler : public DownstreamCompilerBase
49
49
validate (const uint32_t * contents, int contentsSize) SLANG_OVERRIDE;
50
50
virtual SLANG_NO_THROW SlangResult SLANG_MCALL
51
51
disassemble (const uint32_t * contents, int contentsSize) SLANG_OVERRIDE;
52
- int link (const uint32_t ** modules, const uint32_t * moduleSizes,
53
- const uint32_t moduleCount,
54
- IArtifact** outArtifact) SLANG_OVERRIDE;
52
+ int link (
53
+ const uint32_t ** modules,
54
+ const uint32_t * moduleSizes,
55
+ const uint32_t moduleCount,
56
+ IArtifact** outArtifact) SLANG_OVERRIDE;
55
57
56
58
// / Must be called before use
57
59
SlangResult init (ISlangSharedLibrary* library);
@@ -328,9 +330,11 @@ SlangResult GlslangDownstreamCompiler::disassemble(const uint32_t* contents, int
328
330
return SLANG_FAIL;
329
331
}
330
332
331
- SlangResult GlslangDownstreamCompiler::link (const uint32_t ** modules, const uint32_t * moduleSizes,
332
- const uint32_t moduleCount,
333
- IArtifact** outArtifact)
333
+ SlangResult GlslangDownstreamCompiler::link (
334
+ const uint32_t ** modules,
335
+ const uint32_t * moduleSizes,
336
+ const uint32_t moduleCount,
337
+ IArtifact** outArtifact)
334
338
{
335
339
glslang_LinkRequest request;
336
340
memset (&request, 0 , sizeof (request));
0 commit comments