/** ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** * Copyright 2013 Ben Vanik. All rights reserved. * * Released under the BSD license - see LICENSE in the root for more details. * ****************************************************************************** */ #ifndef XENIA_GPU_XENOS_UCODE_DISASSEMBLER_H_ #define XENIA_GPU_XENOS_UCODE_DISASSEMBLER_H_ #include #include #include namespace xe { namespace gpu { namespace xenos { char* DisassembleShader( XE_GPU_SHADER_TYPE type, const uint32_t* dwords, size_t dword_count); } // namespace xenos } // namespace gpu } // namespace xe #endif // XENIA_GPU_XENOS_UCODE_DISASSEMBLER_H_