MCRO
C++23 utilities for Unreal Engine.
Loading...
Searching...
No Matches
Mcro::Rendering::Textures::CTextureSize Concept Reference

Describing a struct which can give texture size and layout information. More...

#include <Textures.h>

Concept definition

template<typename T>
concept Mcro::Rendering::Textures::CTextureSize = requires(T t, typename T::FormatType)
{
t.Width;
t.Height;
t.Format;
}
Describing a struct which can give texture size and layout information.
Definition Textures.h:29

Detailed Description

Describing a struct which can give texture size and layout information.

Definition at line 29 of file Textures.h.