using System.Runtime.InteropServices; namespace Raylib_cs; /// /// Texture parameters: filter mode
/// NOTE 1: Filtering considers mipmaps if available in the texture
/// NOTE 2: Filter is accordingly set for minification and magnification ///
public enum TextureFilter { /// /// No filter, just pixel aproximation /// Point = 0, /// /// Linear filtering /// Bilinear, /// /// Trilinear filtering (linear with mipmaps) /// Trilinear, /// /// Anisotropic filtering 4x /// Anisotropic4X, /// /// Anisotropic filtering 8x /// Anisotropic8X, /// /// Anisotropic filtering 16x /// Anisotropic16X, } /// /// Texture parameters: wrap mode /// public enum TextureWrap { /// /// Repeats texture in tiled mode /// Repeat = 0, /// /// Clamps texture to edge pixel in tiled mode /// Clamp, /// /// Mirrors and repeats the texture in tiled mode /// MirrorRepeat, /// /// Mirrors and clamps to border the texture in tiled mode /// MirrorClamp } /// /// Cubemap layouts /// public enum CubemapLayout { /// /// Automatically detect layout type /// AutoDetect = 0, /// /// Layout is defined by a vertical line with faces /// LineVertical, /// /// Layout is defined by a horizontal line with faces /// LineHorizontal, /// /// Layout is defined by a 3x4 cross with cubemap faces /// CrossThreeByFour, /// /// Layout is defined by a 4x3 cross with cubemap faces /// CrossFourByThree } /// /// Texture2D type
/// NOTE: Data stored in GPU memory ///
[StructLayout(LayoutKind.Sequential)] public partial struct Texture2D { /// /// OpenGL texture id /// public uint Id; /// /// Texture base width /// public int Width; /// /// Texture base height /// public int Height; /// /// Mipmap levels, 1 by default /// public int Mipmaps; /// /// Data format (PixelFormat type) /// public PixelFormat Format; }