mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
17 lines
No EOL
343 B
C++
17 lines
No EOL
343 B
C++
#include "spirv_gen_debuginfo.h"
|
|
|
|
namespace dxvk {
|
|
|
|
SpirvDebugInfo:: SpirvDebugInfo() { }
|
|
SpirvDebugInfo::~SpirvDebugInfo() { }
|
|
|
|
|
|
void SpirvDebugInfo::assignName(
|
|
uint32_t id,
|
|
const char* name) {
|
|
m_code.putIns (spv::OpName, 2 + m_code.strLen(name));
|
|
m_code.putWord(id);
|
|
m_code.putStr (name);
|
|
}
|
|
|
|
} |