We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5cac5e commit c0f70d0Copy full SHA for c0f70d0
1 file changed
CathodeLib/Scripts/CATHODE/Shaders.cs
@@ -353,7 +353,7 @@ private ShaderType GetTypeFromDXBC(byte[] dxbc)
353
reader.BaseStream.Position = chunkOffsets[x];
354
355
fourcc chunkFourcc = Utilities.Consume<fourcc>(reader);
356
- Console.WriteLine(chunkFourcc.ToString());
+ //Console.WriteLine(chunkFourcc.ToString());
357
int chunkSize = reader.ReadInt32();
358
byte[] chunkContent = reader.ReadBytes(chunkSize);
359
using (BinaryReader chunkReader = new BinaryReader(new MemoryStream(chunkContent)))
0 commit comments