blob: 745fc869194922660c95c6d379854f29db5ace18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// debug-shader-program.cpp
#include "debug-shader-program.h"
namespace gfx
{
using namespace Slang;
namespace debug
{
slang::TypeReflection* DebugShaderProgram::findTypeByName(const char* name)
{
return baseObject->findTypeByName(name);
}
} // namespace debug
} // namespace gfx
|