19 lines
370 B
C++
19 lines
370 B
C++
#pragma once
|
|
|
|
#include "opengl/handles/texture_handle.hpp"
|
|
|
|
namespace zgl
|
|
{
|
|
|
|
struct material_metadata
|
|
{
|
|
texture_handle specular_filter_texture_handle;
|
|
texture_handle diffuse_filter_texture_handle;
|
|
texture_handle specular_filter_texture_handle;
|
|
texture_handle shininess_texture_handle;
|
|
texture_handle alpha_texture_handle;
|
|
texture_handle bump_texture_handle;
|
|
};
|
|
|
|
}
|