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