15 lines
204 B
C++
15 lines
204 B
C++
#pragma once
|
|
|
|
#include "assets/data/material_data.hpp"
|
|
|
|
namespace assets
|
|
{
|
|
|
|
struct texture_view
|
|
{
|
|
std::weak_ptr<std::uint8_t[]> data;
|
|
int width, height;
|
|
texture_components::flags component_flags;
|
|
};
|
|
|
|
} |