using System; using System.Runtime.InteropServices; namespace Raylib_cs; /// /// RenderBatch type /// [StructLayout(LayoutKind.Sequential)] public unsafe partial struct RenderBatch { /// /// Number of vertex buffers (multi-buffering support) /// public int BufferCount; /// /// Current buffer tracking in case of multi-buffering /// public int CurrentBuffer; /// /// Dynamic buffer(s) for vertex data /// public VertexBuffer* VertexBuffer; /// /// Draw calls array, depends on textureId /// public DrawCall* Draws; /// /// Draw calls counter /// public int DrawCounter; /// /// Current depth value for next draw /// public float CurrentDepth; } /// /// Dynamic vertex buffers (position + texcoords + colors + indices arrays) /// [StructLayout(LayoutKind.Sequential)] public unsafe partial struct VertexBuffer { /// /// Number of elements in the buffer (QUADS) /// public int ElementCount; /// /// Vertex position (XYZ - 3 components per vertex) (shader-location = 0) /// public float* Vertices; /// /// Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1) /// public float* TexCoords; /// /// Vertex normal (XYZ - 3 components per vertex) (shader-location = 2) /// public float* Normals; /// /// Vertex colors (RGBA - 4 components per vertex) (shader-location = 3) /// public byte* Colors; /// /// Vertex indices (in case vertex data comes indexed) (6 indices per quad)
/// unsigned int* for GRAPHICS_API_OPENGL_11 or GRAPHICS_API_OPENGL_33
/// unsigned short* for GRAPHICS_API_OPENGL_ES2 ///
public void* Indices; /// /// OpenGL Vertex Array Object id /// public uint VaoId; /// /// OpenGL Vertex Buffer Objects id (5 types of vertex data) /// public fixed uint VboId[5]; /// /// Access /// public readonly Span VerticesAs() where T : unmanaged { return new(Vertices, ElementCount * sizeof(float) / sizeof(T)); } /// /// Access /// public readonly Span TexCoordsAs() where T : unmanaged { return new(TexCoords, ElementCount * sizeof(float) / sizeof(T)); } /// /// Access /// public readonly Span NormalsAs() where T : unmanaged { return new(Normals, ElementCount * sizeof(float) / sizeof(T)); } /// /// Access /// public readonly Span ColorsAs() where T : unmanaged { return new(Colors, ElementCount * sizeof(byte) / sizeof(T)); } } /// /// Draw call type
/// NOTE: Only texture changes register a new draw, other state-change-related elements are not /// used at this moment (vaoId, shaderId, matrices), raylib just forces a batch draw call if any /// of those state-change happens (this is done in core module) ///
[StructLayout(LayoutKind.Sequential)] public partial struct DrawCall { /// /// Drawing mode: LINES, TRIANGLES, QUADS /// public DrawMode Mode; /// /// Number of vertices for the draw call /// public int VertexCount; /// /// Number of vertices required for index alignment (LINES, TRIANGLES) /// public int VertexAlignment; /// /// Texture id to be used on the draw -> Use to create new draw call if changes /// public uint TextureId; } public enum GlVersion { OpenGl11 = 1, OpenGl21, OpenGl33, OpenGl43, OpenGlEs20 } public enum FramebufferAttachType { ColorChannel0 = 0, ColorChannel1, ColorChannel2, ColorChannel3, ColorChannel4, ColorChannel5, ColorChannel6, ColorChannel7, Depth = 100, Stencil = 200, } public enum FramebufferAttachTextureType { CubemapPositiveX = 0, CubemapNegativeX, CubemapPositiveY, CubemapNegativeY, CubemapPositiveZ, CubemapNegativeZ, Texture2D = 100, Renderbuffer = 200, } /// /// Matrix Modes (equivalent to OpenGL) /// public enum MatrixMode { /// /// GL_MODELVIEW /// ModelView = 0x1700, /// /// GL_PROJECTION /// Projection = 0x1701, /// /// GL_TEXTURE /// Texture = 0x1702 } /// /// Primitive assembly draw modes /// public enum DrawMode { /// /// GL_LINES /// Lines = 0x0001, /// /// GL_TRIANGLES /// Triangles = 0x0004, /// /// GL_QUADS /// Quads = 0x0007 } /// /// Texture parameters (equivalent to OpenGL defines) /// public enum TextureFilters { /// /// RL_TEXTURE_FILTER_NEAREST ///
/// GL_NEAREST ///
Nearest = 0x2600, /// /// RL_TEXTURE_FILTER_LINEAR ///
/// GL_LINEAR ///
Linear = 0x2601, /// /// RL_TEXTURE_FILTER_MIP_NEAREST ///
/// GL_NEAREST_MIPMAP_NEAREST ///
MipNearest = 0x2700, /// /// RL_TEXTURE_FILTER_NEAREST_MIP_LINEAR ///
/// GL_NEAREST_MIPMAP_LINEAR ///
NearestMipLinear = 0x2702, /// /// RL_TEXTURE_FILTER_LINEAR_MIP_NEAREST ///
/// GL_LINEAR_MIPMAP_NEAREST ///
LinearMipNearest = 0x2701, /// /// RL_TEXTURE_FILTER_MIP_LINEAR ///
/// GL_LINEAR_MIPMAP_LINEAR ///
MipLinear = 0x2703, /// /// RL_TEXTURE_FILTER_ANISOTROPIC ///
/// Anisotropic filter (custom identifier) ///
Anisotropic = 0x3000 } /// /// GL Shader type /// public enum ShaderType { /// /// RL_FRAGMENT_SHADER ///
/// GL_FRAGMENT_SHADER ///
Fragment = 0x8B30, /// /// RL_VERTEX_SHADER ///
/// GL_VERTEX_SHADER ///
Vertex = 0x8B31, /// /// RL_COMPUTE_SHADER ///
/// GL_COMPUTE_SHADER ///
Compute = 0x91b9 }