| 34 | bv_program_add_global(m_prog, varName.c_str()); |
| 35 | } |
| 36 | bv_variable* ShaderDebugger::GetGlobalValue(const std::string& gvarname) |
| 37 | { |
| 38 | return bv_program_get_global(m_prog, const_cast<char*>(gvarname.c_str())); // TODO: why does get_global need non const?? |
| 39 | } |
| 40 | void ShaderDebugger::SetSemanticValue(const std::string& name, bv_variable var) |
| 41 | { |
| 42 | std::string lName = name; |
nothing calls this directly
no outgoing calls
no test coverage detected