Example #1
0
        public static string Disassemble(byte[] bytecode)
        {
            var shaderModel = ShaderReader.ReadShader(bytecode);

            return(Disassemble(shaderModel));
        }
Example #2
0
        public static string Decompile(byte[] bytecode, string entryPoint = null)
        {
            var shaderModel = ShaderReader.ReadShader(bytecode);

            return(Decompile(shaderModel));
        }