#pragma once #include #include namespace Extract { /// /// Translate DXBC bytecode to SPIR-V bytecode. /// /// @param bytecode The DXBC bytecode to translate. /// @return The translated SPIR-V bytecode. /// std::vector translateShader(std::vector bytecode); }