13 lines
225 B
C++
13 lines
225 B
C++
#pragma once
|
|
|
|
#include "opengl/shading/features/generic_features.hpp"
|
|
|
|
namespace zgl
|
|
{
|
|
struct shader_set_metadata
|
|
{
|
|
shading::features::generic::type static_enabled{};
|
|
shading::features::generic::type dynamic_enable{};
|
|
};
|
|
}
|