blob: 6c92151fafdf3a5d55b4ab22aa041d3685465138 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// cpu-shader-program.h
#pragma once
#include "cpu-base.h"
#include "cpu-shader-object-layout.h"
namespace gfx
{
using namespace Slang;
namespace cpu
{
class ShaderProgramImpl : public ShaderProgramBase
{
public:
RefPtr<RootShaderObjectLayoutImpl> layout;
~ShaderProgramImpl() {}
};
} // namespace cpu
} // namespace gfx
|