mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
Fix typo in name GetInitialShaderBob() -> GetInitialShaderBlob()
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user