Fix typo in name GetInitialShaderBob() -> GetInitialShaderBlob()

This commit is contained in:
Jake Turner
2026-02-23 11:39:22 +00:00
parent 2815523744
commit 4a30e1ad8a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ void WrappedShader::ShaderEntry::Reload()
m_Access.clear();
if(m_Bytecode.empty() && m_DXBCFile)
{
m_Bytecode = m_DXBCFile->GetInitialShaderBob();
m_Bytecode = m_DXBCFile->GetInitialShaderBlob();
if(m_Bytecode.empty())
m_Bytecode = m_DXBCFile->GetShaderBlob();
}
@@ -203,7 +203,7 @@ public:
uint32_t Major = 0, Minor = 0;
} m_Version;
const bytebuf &GetInitialShaderBob() const { return m_InitialShaderBlob; }
const bytebuf &GetInitialShaderBlob() const { return m_InitialShaderBlob; }
const bytebuf &GetShaderBlob() const { return m_ShaderBlob; }
const IDebugInfo *GetDebugInfo() const { return m_DebugInfo; }
const Reflection *GetReflection() const { return m_Reflection; }