12 lines
193 B
C
12 lines
193 B
C
|
#pragma once
|
|||
|
|
|||
|
namespace hgl::graph
|
|||
|
{
|
|||
|
struct ShaderBufferSource
|
|||
|
{
|
|||
|
const char *struct_name;
|
|||
|
const char *name;
|
|||
|
const char *codes;
|
|||
|
};
|
|||
|
}//namespace hgl::graph
|