blob: f2f159538420f0b1d6824b49e71bbe814a03d708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// 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
|