diff --git a/Raylib-cs/Raylib-cs.csproj b/Raylib-cs/Raylib-cs.csproj index a878c1e..740ff31 100644 --- a/Raylib-cs/Raylib-cs.csproj +++ b/Raylib-cs/Raylib-cs.csproj @@ -21,6 +21,7 @@ git https://github.com/ChrisDill/Raylib-cs/ https://www.raylib.com/ + true diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index bcd97d7..6a9ce4a 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -5,7 +5,7 @@ using System.Security; namespace Raylib_cs { - // Color type, RGBA (32bit) + /// Color type, RGBA (32bit) [StructLayout(LayoutKind.Sequential)] public struct Color { @@ -65,7 +65,7 @@ namespace Raylib_cs } } - // Rectangle type + /// Rectangle type [StructLayout(LayoutKind.Sequential)] public struct Rectangle { @@ -83,8 +83,8 @@ namespace Raylib_cs } } - // Image type, bpp always RGBA (32bit) - // NOTE: Data stored in CPU memory (RAM) + /// Image type, bpp always RGBA (32bit) + /// NOTE: Data stored in CPU memory (RAM) [StructLayout(LayoutKind.Sequential)] public struct Image { @@ -95,8 +95,8 @@ namespace Raylib_cs public PixelFormat format; // Data format (PixelFormat type) } - // Texture2D type - // NOTE: Data stored in GPU memory + /// Texture2D type + /// NOTE: Data stored in GPU memory [StructLayout(LayoutKind.Sequential)] public struct Texture2D { @@ -107,7 +107,7 @@ namespace Raylib_cs public PixelFormat format; // Data format (PixelFormat type) } - // RenderTexture2D type, for texture rendering + /// RenderTexture2D type, for texture rendering [StructLayout(LayoutKind.Sequential)] public struct RenderTexture2D { @@ -116,7 +116,7 @@ namespace Raylib_cs public Texture2D depth; // Depth buffer attachment texture } - // N-Patch layout info + /// N-Patch layout info [StructLayout(LayoutKind.Sequential)] public struct NPatchInfo { @@ -128,7 +128,7 @@ namespace Raylib_cs public NPatchLayout layout; // layout of the n-patch: 3x3, 1x3 or 3x1 } - // Font character info + /// Font character info [StructLayout(LayoutKind.Sequential)] public struct CharInfo { @@ -139,7 +139,7 @@ namespace Raylib_cs public Image image; // Character image data } - // Font type, includes texture and charSet array data + /// Font type, includes texture and charSet array data [StructLayout(LayoutKind.Sequential)] public struct Font { @@ -151,7 +151,7 @@ namespace Raylib_cs public IntPtr chars; // Characters info data (CharInfo *) } - // Camera type, defines a camera position/orientation in 3d space + /// Camera type, defines a camera position/orientation in 3d space [StructLayout(LayoutKind.Sequential)] public struct Camera3D { @@ -171,7 +171,7 @@ namespace Raylib_cs } } - // Camera2D type, defines a 2d camera + /// Camera2D type, defines a 2d camera [StructLayout(LayoutKind.Sequential)] public struct Camera2D { @@ -189,8 +189,8 @@ namespace Raylib_cs } } - // Vertex data definning a mesh - // NOTE: Data stored in CPU memory (and GPU) + /// Vertex data definning a mesh + /// NOTE: Data stored in CPU memory (and GPU) [StructLayout(LayoutKind.Sequential)] public struct Mesh { @@ -217,7 +217,7 @@ namespace Raylib_cs public IntPtr vboId; // OpenGL Vertex Buffer Objects id (default vertex data, uint[]) } - // Shader type (generic) + /// Shader type (generic) [StructLayout(LayoutKind.Sequential)] public struct Shader { @@ -225,7 +225,7 @@ namespace Raylib_cs public IntPtr locs; // Shader locations array (MAX_SHADER_LOCATIONS, int *) } - // Material texture map + /// Material texture map [StructLayout(LayoutKind.Sequential)] public struct MaterialMap { @@ -234,7 +234,7 @@ namespace Raylib_cs public float value; // Material map value } - // Material type (generic) + /// Material type (generic) [StructLayout(LayoutKind.Sequential)] public struct Material { @@ -243,7 +243,7 @@ namespace Raylib_cs public IntPtr param; // Material generic parameters (if required, float *) } - // Transformation properties + /// Transformation properties [StructLayout(LayoutKind.Sequential)] public struct Transform { @@ -252,7 +252,7 @@ namespace Raylib_cs public Vector3 scale; // Scale } - // Bone information + /// Bone information [StructLayout(LayoutKind.Sequential)] public struct BoneInfo { @@ -260,7 +260,7 @@ namespace Raylib_cs public int parent; // Bone parent } - // Model type + /// Model type [StructLayout(LayoutKind.Sequential)] public struct Model { @@ -275,7 +275,7 @@ namespace Raylib_cs public IntPtr bindPose; // Bones base transformation (pose, Transform *) } - // Model animation + /// Model animation [StructLayout(LayoutKind.Sequential)] public struct ModelAnimation { @@ -285,7 +285,7 @@ namespace Raylib_cs public IntPtr framePoses; // Poses array by frame (Transform **) } - // Ray type (useful for raycast) + /// Ray type (useful for raycast) [StructLayout(LayoutKind.Sequential)] public struct Ray { @@ -299,7 +299,7 @@ namespace Raylib_cs } } - // Raycast hit information + /// Raycast hit information [StructLayout(LayoutKind.Sequential)] public struct RayHitInfo { @@ -309,7 +309,7 @@ namespace Raylib_cs public Vector3 normal; // Surface normal of hit } - // Bounding box type + /// Bounding box type [StructLayout(LayoutKind.Sequential)] public struct BoundingBox { @@ -323,7 +323,7 @@ namespace Raylib_cs } } - // Wave type, defines audio wave data + /// Wave type, defines audio wave data [StructLayout(LayoutKind.Sequential)] public struct Wave { @@ -334,8 +334,8 @@ namespace Raylib_cs public IntPtr data; // Buffer data pointer (void *) } - // Audio stream type - // NOTE: Useful to create custom audio streams not bound to a specific file + /// Audio stream type + /// NOTE: Useful to create custom audio streams not bound to a specific file [StructLayout(LayoutKind.Sequential)] public struct AudioStream { @@ -345,7 +345,7 @@ namespace Raylib_cs public uint channels; // Number of channels (1-mono, 2-stereo) } - // Sound source type + /// Sound source type [StructLayout(LayoutKind.Sequential)] public struct Sound { @@ -353,8 +353,8 @@ namespace Raylib_cs public uint sampleCount; // Total number of samples } - // Music stream type (audio file streaming from memory) - // NOTE: Anything longer than ~10 seconds should be streamed + /// Music stream type (audio file streaming from memory) + /// NOTE: Anything longer than ~10 seconds should be streamed [StructLayout(LayoutKind.Sequential)] public struct Music { @@ -365,7 +365,7 @@ namespace Raylib_cs public IntPtr ctxData; // Audio context data, depends on type (void *) } - // Head-Mounted-Display device parameters + /// Head-Mounted-Display device parameters [StructLayout(LayoutKind.Sequential)] public unsafe struct VrDeviceInfo { @@ -381,7 +381,7 @@ namespace Raylib_cs public fixed float chromaAbCorrection[4]; // HMD chromatic aberration correction parameters } - // VR Stereo rendering configuration for simulator + /// VR Stereo rendering configuration for simulator [StructLayout(LayoutKind.Sequential)] public struct VrStereoConfig { @@ -397,9 +397,9 @@ namespace Raylib_cs public Vector2 scaleIn; // VR distortion scale in } - // System config flags - // NOTE: Every bit registers one state (use it with bit masks) - // By default all flags are set to 0 + /// System config flags + /// NOTE: Every bit registers one state (use it with bit masks) + /// By default all flags are set to 0 [Flags] public enum ConfigFlags { @@ -419,7 +419,7 @@ namespace Raylib_cs FLAG_INTERLACED_HINT = 0x00010000, // Set to try enabling interlaced video format (for V3D) } - // Trace log level + /// Trace log level public enum TraceLogLevel { LOG_ALL = 0, // Display all logs @@ -432,9 +432,9 @@ namespace Raylib_cs LOG_NONE // Disable logging } - // Keyboard keys (US keyboard layout) - // NOTE: Use GetKeyPressed() to allow redefining - // required keys for alternative layouts + /// Keyboard keys (US keyboard layout) + /// NOTE: Use GetKeyPressed() to allow redefining + /// required keys for alternative layouts public enum KeyboardKey { KEY_NULL = 0, @@ -557,7 +557,7 @@ namespace Raylib_cs KEY_VOLUME_DOWN = 25 } - // Mouse buttons + /// Mouse buttons public enum MouseButton { MOUSE_LEFT_BUTTON = 0, @@ -565,7 +565,7 @@ namespace Raylib_cs MOUSE_MIDDLE_BUTTON = 2 } - // Mouse cursor + /// Mouse cursor public enum MouseCursor { MOUSE_CURSOR_DEFAULT = 0, @@ -581,7 +581,7 @@ namespace Raylib_cs MOUSE_CURSOR_NOT_ALLOWED = 10 // The operation-not-allowed shape } - // Gamepad buttons + /// Gamepad buttons public enum GamepadButton { // This is here just for error checking @@ -618,7 +618,7 @@ namespace Raylib_cs GAMEPAD_BUTTON_RIGHT_THUMB } - // Gamepad axis + /// Gamepad axis public enum GamepadAxis { // This is here just for error checking @@ -637,7 +637,7 @@ namespace Raylib_cs GAMEPAD_AXIS_RIGHT_TRIGGER // [1..-1] (pressure-level) } - // Material map index + /// Material map index public enum MaterialMapIndex { MAP_ALBEDO = 0, // MAP_DIFFUSE @@ -653,7 +653,7 @@ namespace Raylib_cs MAP_BRDF } - // Shader location index + /// Shader location index public enum ShaderLocationIndex { LOC_VERTEX_POSITION = 0, @@ -683,7 +683,7 @@ namespace Raylib_cs LOC_MAP_BRDF } - // Shader uniform data type + /// Shader uniform data type public enum ShaderUniformDataType { UNIFORM_FLOAT = 0, @@ -697,8 +697,8 @@ namespace Raylib_cs UNIFORM_SAMPLER2D } - // Pixel formats - // NOTE: Support depends on OpenGL version and platform + /// Pixel formats + /// NOTE: Support depends on OpenGL version and platform public enum PixelFormat { UNCOMPRESSED_GRAYSCALE = 1, // 8 bit per pixel (no alpha) @@ -724,9 +724,9 @@ namespace Raylib_cs COMPRESSED_ASTC_8x8_RGBA // 2 bpp } - // Texture parameters: filter mode - // NOTE 1: Filtering considers mipmaps if available in the texture - // NOTE 2: Filter is accordingly set for minification and magnification + /// 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 { FILTER_POINT = 0, // No filter, just pixel aproximation @@ -737,7 +737,7 @@ namespace Raylib_cs FILTER_ANISOTROPIC_16X, // Anisotropic filtering 16x } - // Texture parameters: wrap mode + /// Texture parameters: wrap mode public enum TextureWrap { WRAP_REPEAT = 0, // Repeats texture in tiled mode @@ -746,7 +746,7 @@ namespace Raylib_cs WRAP_MIRROR_CLAMP // Mirrors and clamps to border the texture in tiled mode } - // Cubemap layouts + /// Cubemap layouts public enum CubemapLayout { CUBEMAP_AUTO_DETECT = 0, // Automatically detect layout type @@ -757,7 +757,7 @@ namespace Raylib_cs CUBEMAP_PANORAMA // Layout is defined by a panorama image (equirectangular map) } - // Font type, defines generation method + /// Font type, defines generation method public enum FontType { FONT_DEFAULT = 0, // Default font generation, anti-aliased @@ -765,7 +765,7 @@ namespace Raylib_cs FONT_SDF // SDF font generation, requires external shader } - // Color blending modes (pre-defined) + /// Color blending modes (pre-defined) public enum BlendMode { BLEND_ALPHA = 0, // Blend textures considering alpha (default) @@ -776,8 +776,8 @@ namespace Raylib_cs BLEND_CUSTOM // Belnd textures using custom src/dst factors (use SetBlendModeCustom()) } - // Gestures - // NOTE: It could be used as flags to enable only some gestures + /// Gestures + /// NOTE: It could be used as flags to enable only some gestures [Flags] public enum Gestures { @@ -794,7 +794,7 @@ namespace Raylib_cs GESTURE_PINCH_OUT = 512 } - // Camera system modes + /// Camera system modes public enum CameraMode { CAMERA_CUSTOM = 0, @@ -804,14 +804,14 @@ namespace Raylib_cs CAMERA_THIRD_PERSON } - // Camera projection + /// Camera projection public enum CameraProjection { CAMERA_PERSPECTIVE = 0, CAMERA_ORTHOGRAPHIC } - // N-patch layout + /// N-patch layout public enum NPatchLayout { NPATCH_NINE_PATCH = 0, // Npatch defined by 3x3 tiles @@ -870,206 +870,210 @@ namespace Raylib_cs // Window-related functions - // Initialize window and OpenGL context + /// Initialize window and OpenGL context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void InitWindow(int width, int height, [MarshalAs(UnmanagedType.LPUTF8Str)] string title); - // Check if KEY_ESCAPE pressed or Close icon pressed + /// Check if KEY_ESCAPE pressed or Close icon pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool WindowShouldClose(); - // Close window and unload OpenGL context + /// Close window and unload OpenGL context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseWindow(); - // Check if window has been initialized successfully + /// Check if window has been initialized successfully [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowReady(); - // Check if window is currently fullscreen + /// Check if window is currently fullscreen [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowFullscreen(); - // Check if window is currently hidden (only PLATFORM_DESKTOP) + /// Check if window is currently hidden (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowHidden(); - // Check if window is currently minimized (only PLATFORM_DESKTOP) + /// Check if window is currently minimized (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowMinimized(); - // Check if window is currently maximized (only PLATFORM_DESKTOP) + /// Check if window is currently maximized (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowMaximized(); - // Check if window is currently focused (only PLATFORM_DESKTOP) + /// Check if window is currently focused (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowFocused(); - // Check if window has been resized last frame + /// Check if window has been resized last frame [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowResized(); - // Check if one specific window flag is enabled + /// Check if one specific window flag is enabled [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowState(ConfigFlags flag); - // Set window configuration state using flags + /// Set window configuration state using flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool SetWindowState(ConfigFlags flag); - // Clear window configuration state flags + /// Clear window configuration state flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearWindowState(ConfigFlags flag); - // Toggle fullscreen mode (only PLATFORM_DESKTOP) + /// Toggle fullscreen mode (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ToggleFullscreen(); - // Set window state: maximized, if resizable (only PLATFORM_DESKTOP) + /// Set window state: maximized, if resizable (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MaximizeWindow(); - // Set window state: minimized, if resizable (only PLATFORM_DESKTOP) + /// Set window state: minimized, if resizable (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MinimizeWindow(); - // Set window state: not minimized/maximized (only PLATFORM_DESKTOP) + /// Set window state: not minimized/maximized (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void RestoreWindow(); - // Set icon for window (only PLATFORM_DESKTOP) + /// Set icon for window (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowIcon(Image image); - // Set title for window (only PLATFORM_DESKTOP) + /// Set title for window (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowTitle([MarshalAs(UnmanagedType.LPUTF8Str)] string title); - // Set window position on screen (only PLATFORM_DESKTOP) + /// Set window position on screen (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowPosition(int x, int y); - // Set monitor for the current window (fullscreen mode) + /// Set monitor for the current window (fullscreen mode) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMonitor(int monitor); - // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) + /// Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMinSize(int width, int height); - // Set window dimensions + /// Set window dimensions [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowSize(int width, int height); - // Get native window handle - // IntPtr refers to a void * + /// Get native window handle + /// IntPtr refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr GetWindowHandle(); - // Get current screen width + /// Get current screen width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenWidth(); - // Get current screen height + /// Get current screen height [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenHeight(); - // Get number of connected monitors + /// Get number of connected monitors [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorCount(); - // Get current connected monitor + /// Get current connected monitor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCurrentMonitor(); - // Get specified monitor position + /// Get specified monitor position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMonitorPosition(); - // Get primary monitor width + /// Get primary monitor width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorWidth(int monitor); - // Get primary monitor height + /// Get primary monitor height [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorHeight(int monitor); - // Get primary monitor physical width in millimetres + /// Get primary monitor physical width in millimetres [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorPhysicalWidth(int monitor); - // Get primary monitor physical height in millimetres + /// Get primary monitor physical height in millimetres [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorPhysicalHeight(int monitor); - // Get specified monitor refresh rate + /// Get specified monitor refresh rate [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorRefreshRate(int monitor); - // Get window position XY on monitor + /// Get window position XY on monitor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWindowPosition(); - // Get window scale DPI factor + /// Get window scale DPI factor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWindowScaleDPI(); - // Get the human-readable, UTF-8 encoded name of the primary monitor + /// Get the human-readable, UTF-8 encoded name of the primary monitor [DllImport(nativeLibName, EntryPoint = "GetMonitorName", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_GetMonitorName(int monitor); + + /// Get the human-readable, UTF-8 encoded name of the primary monitor public static string GetMonitorName(int monitor) { return Marshal.PtrToStringUTF8(INTERNAL_GetMonitorName(monitor)); } - // Get clipboard text content + /// Get clipboard text content [DllImport(nativeLibName, EntryPoint = "GetClipboardText", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_GetClipboardText(); + + /// Get clipboard text content public static string GetClipboardText() { return Marshal.PtrToStringUTF8(INTERNAL_GetClipboardText()); } - // Set clipboard text content + /// Set clipboard text content [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetClipboardText([MarshalAs(UnmanagedType.LPUTF8Str)] string text); // Cursor-related functions - // Shows cursor + /// Shows cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ShowCursor(); - // Hides cursor + /// Hides cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void HideCursor(); - // Check if cursor is not visible + /// Check if cursor is not visible [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsCursorHidden(); - // Enables cursor (unlock cursor) + /// Enables cursor (unlock cursor) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EnableCursor(); - // Disables cursor (lock cursor) + /// Disables cursor (lock cursor) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DisableCursor(); - // Disables cursor (lock cursor) + /// Disables cursor (lock cursor) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsCursorOnScreen(); @@ -1077,218 +1081,218 @@ namespace Raylib_cs // Drawing-related functions - // Set background color (framebuffer clear color) + /// Set background color (framebuffer clear color) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearBackground(Color color); - // Setup canvas (framebuffer) to start drawing + /// Setup canvas (framebuffer) to start drawing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginDrawing(); - // End canvas drawing and swap buffers (double buffering) + /// End canvas drawing and swap buffers (double buffering) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndDrawing(); - // Initialize 2D mode with custom camera (2D) + /// Initialize 2D mode with custom camera (2D) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginMode2D(Camera2D camera); - // Ends 2D mode with custom camera + /// Ends 2D mode with custom camera [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndMode2D(); - // Initializes 3D mode with custom camera (3D) + /// Initializes 3D mode with custom camera (3D) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginMode3D(Camera3D camera); - // Ends 3D mode and returns to default 2D orthographic mode + /// Ends 3D mode and returns to default 2D orthographic mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndMode3D(); - // Initializes render texture for drawing + /// Initializes render texture for drawing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginTextureMode(RenderTexture2D target); - // Ends drawing to render texture + /// Ends drawing to render texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndTextureMode(); - // Begin custom shader drawing + /// Begin custom shader drawing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginShaderMode(Shader shader); - // End custom shader drawing (use default shader) + /// End custom shader drawing (use default shader) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndShaderMode(); - // Begin blending mode (alpha, additive, multiplied) + /// Begin blending mode (alpha, additive, multiplied) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginBlendMode(BlendMode mode); - // End blending mode (reset to default: alpha blending) + /// End blending mode (reset to default: alpha blending) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndBlendMode(); - // Begin scissor mode (define screen area for following drawing) + /// Begin scissor mode (define screen area for following drawing) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginScissorMode(int x, int y, int width, int height); - // End scissor mode + /// End scissor mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndScissorMode(); - // Begin stereo rendering (requires VR simulator) + /// Begin stereo rendering (requires VR simulator) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginVrStereoMode(VrStereoConfig config); - // End stereo rendering (requires VR simulator) + /// End stereo rendering (requires VR simulator) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndVrStereoMode(); // VR stereo config functions for VR simulator - // Load VR stereo config for VR simulator device parameters + /// Load VR stereo config for VR simulator device parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern VrStereoConfig LoadVrStereoConfig(VrDeviceInfo device); - // Unload VR stereo configs + /// Unload VR stereo configs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadVrStereoConfig(VrStereoConfig config); // Shader management functions - // Load shader from files and bind default locations + /// Load shader from files and bind default locations [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShader(string vsFileName, string fsFileName); - // Load shader from code strings and bind default locations + /// Load shader from code strings and bind default locations [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShaderFromMemory(string vsCode, string fsCode); - // Get shader uniform location + /// Get shader uniform location [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocation(Shader shader, string uniformName); - // Get shader attribute location + /// Get shader attribute location [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocationAttrib(Shader shader, string attribName); - // Set shader uniform value - // value refers to a const void * + /// Set shader uniform value + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType); - // Set shader uniform value - // value refers to a const void * + /// Set shader uniform value + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, ref int value, ShaderUniformDataType uniformType); - // Set shader uniform value - // value refers to a const void * + /// Set shader uniform value + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, ref float value, ShaderUniformDataType uniformType); - // Set shader uniform value vector - // value refers to a const void * + /// Set shader uniform value vector + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueV(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType, int count); - // Set shader uniform value (matrix 4x4) + /// Set shader uniform value (matrix 4x4) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix4x4 mat); - // Set shader uniform value for texture + /// Set shader uniform value for texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueTexture(Shader shader, int uniformLoc, Texture2D texture); - // Unload shader from GPU memory (VRAM) + /// Unload shader from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadShader(Shader shader); // Screen-space-related functions - // Returns a ray trace from mouse position + /// Returns a ray trace from mouse position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera); - // Returns camera transform matrix (view matrix) + /// Returns camera transform matrix (view matrix) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraMatrix(Camera3D camera); - // Returns camera 2d transform matrix + /// Returns camera 2d transform matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraMatrix2D(Camera2D camera); - // Returns the screen space position for a 3d world space position + /// Returns the screen space position for a 3d world space position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWorldToScreen(Vector3 position, Camera3D camera); - // Returns size position for a 3d world space position + /// Returns size position for a 3d world space position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWorldToScreenEx(Vector3 position, Camera3D camera, int width, int height); - // Returns the screen space position for a 2d camera world space position + /// Returns the screen space position for a 2d camera world space position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWorldToScreen2D(Vector2 position, Camera2D camera); - // Returns the world space position for a 2d camera screen space position + /// Returns the world space position for a 2d camera screen space position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetScreenToWorld2D(Vector2 position, Camera2D camera); // Timing-related functions - // Set target FPS (maximum) + /// Set target FPS (maximum) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTargetFPS(int fps); - // Returns current FPS + /// Returns current FPS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetFPS(); - // Returns time in seconds for last frame drawn + /// Returns time in seconds for last frame drawn [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetFrameTime(); - // Returns elapsed time in seconds since InitWindow() + /// Returns elapsed time in seconds since InitWindow() [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern double GetTime(); // Misc. functions - // Returns a random value between min and max (both included) + /// Returns a random value between min and max (both included) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetRandomValue(int min, int max); - // Takes a screenshot of current screen (saved a .png) + /// Takes a screenshot of current screen (saved a .png) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TakeScreenshot(string fileName); - // Setup window configuration flags (view FLAGS) + /// Setup window configuration flags (view FLAGS) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetConfigFlags(ConfigFlags flags); - // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR) + /// Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TraceLog(TraceLogLevel logLevel, string text); - // Set the current threshold (minimum) log level + /// Set the current threshold (minimum) log level [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTraceLogLevel(TraceLogLevel logLevel); - // Internal memory allocator + /// Internal memory allocator [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr MemAlloc(int size); - // Internal memory reallocator + /// Internal memory reallocator [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr MemRealloc(IntPtr ptr, int size); - // Internal memory free + /// Internal memory free [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MemFree(IntPtr ptr); @@ -1296,87 +1300,87 @@ namespace Raylib_cs // Set custom callbacks // WARNING: Callbacks setup is intended for advance users - // Set custom trace log + /// Set custom trace log [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTraceLogCallback(TraceLogCallback callback); - // Set custom file binary data loader + /// Set custom file binary data loader [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetLoadFileDataCallback(LoadFileDataCallback callback); - // Set custom file binary data saver + /// Set custom file binary data saver [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSaveFileDataCallback(SaveFileDataCallback callback); - // Set custom file text data loader + /// Set custom file text data loader [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetLoadFileTextCallback(LoadFileTextCallback callback); - // Set custom file text data saver + /// Set custom file text data saver [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSaveFileTextCallback(SaveFileTextCallback callback); // Files management functions - // Load file data as byte array (read) - // IntPtr refers to unsigned char * + /// Load file data as byte array (read) + /// IntPtr refers to unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadFileData(string fileName, ref int bytesRead); - // Unload file data allocated by LoadFileData() - // data refers to a unsigned char * + /// Unload file data allocated by LoadFileData() + /// data refers to a unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFileData(IntPtr data); - // Save data to file from byte array (write) + /// Save data to file from byte array (write) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool SaveFileData(string fileName, IntPtr data, int bytesToWrite); - // Check file extension + /// Check file extension [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsFileExtension(string fileName, string ext); - // Check if a file has been dropped into window + /// Check if a file has been dropped into window [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsFileDropped(); - // Get dropped files names (memory should be freed) + /// Get dropped files names (memory should be freed) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr GetDroppedFiles(ref int count); - // Clear dropped files paths buffer (free memory) + /// Clear dropped files paths buffer (free memory) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearDroppedFiles(); - // Get file modification time (last write time) + /// Get file modification time (last write time) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetFileModTime(string fileName); - // Compress data (DEFLATE algorythm) + /// Compress data (DEFLATE algorythm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr CompressData(byte[] data, int dataLength, ref int compDataLength); - // Decompress data (DEFLATE algorythm) + /// Decompress data (DEFLATE algorythm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr DecompressData(byte[] compData, int compDataLength, ref int dataLength); // Persistent storage management - // Save integer value to storage file (to defined position) + /// Save integer value to storage file (to defined position) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool SaveStorageValue(uint position, int value); - // Load integer value from storage file (from defined position) + /// Load integer value from storage file (from defined position) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int LoadStorageValue(uint position); - // Open URL with default system browser (if available) + /// Open URL with default system browser (if available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void OpenURL(string url); @@ -1386,166 +1390,168 @@ namespace Raylib_cs // Input-related functions: keyboard - // Detect if a key has been pressed once + /// Detect if a key has been pressed once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyPressed(KeyboardKey key); - // Detect if a key is being pressed + /// Detect if a key is being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyDown(KeyboardKey key); - // Detect if a key has been released once + /// Detect if a key has been released once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyReleased(KeyboardKey key); - // Detect if a key is NOT being pressed + /// Detect if a key is NOT being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyUp(KeyboardKey key); - // Set a custom key to exit program (default is ESC) + /// Set a custom key to exit program (default is ESC) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetExitKey(KeyboardKey key); - // Get key pressed (keycode), call it multiple times for keys queued + /// Get key pressed (keycode), call it multiple times for keys queued [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetKeyPressed(); - // Get char pressed (unicode), call it multiple times for chars queued + /// Get char pressed (unicode), call it multiple times for chars queued [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCharPressed(); // Input-related functions: gamepads - // Detect if a gamepad is available + /// Detect if a gamepad is available [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadAvailable(int gamepad); - // Check gamepad name (if available) + /// Check gamepad name (if available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadName(int gamepad, string name); - // Return gamepad internal name id + /// Return gamepad internal name id [DllImport(nativeLibName, EntryPoint = "GetGamepadName", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_GetGamepadName(int gamepad); + + /// Return gamepad internal name id public static string GetGamepadName(int gamepad) { return Marshal.PtrToStringUTF8(INTERNAL_GetGamepadName(gamepad)); } - // Detect if a gamepad button has been pressed once + /// Detect if a gamepad button has been pressed once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonPressed(int gamepad, GamepadButton button); - // Detect if a gamepad button is being pressed + /// Detect if a gamepad button is being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonDown(int gamepad, GamepadButton button); - // Detect if a gamepad button has been released once + /// Detect if a gamepad button has been released once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonReleased(int gamepad, GamepadButton button); - // Detect if a gamepad button is NOT being pressed + /// Detect if a gamepad button is NOT being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonUp(int gamepad, GamepadButton button); - // Get the last gamepad button pressed + /// Get the last gamepad button pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGamepadButtonPressed(); - // Return gamepad axis count for a gamepad + /// Return gamepad axis count for a gamepad [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGamepadAxisCount(int gamepad); - // Return axis movement value for a gamepad axis + /// Return axis movement value for a gamepad axis [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGamepadAxisMovement(int gamepad, GamepadAxis axis); - // Set internal gamepad mappings (SDL_GameControllerDB) + /// Set internal gamepad mappings (SDL_GameControllerDB) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int SetGamepadMappings(string mappings); // Input-related functions: mouse - // Detect if a mouse button has been pressed once + /// Detect if a mouse button has been pressed once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonPressed(MouseButton button); - // Detect if a mouse button is being pressed + /// Detect if a mouse button is being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonDown(MouseButton button); - // Detect if a mouse button has been released once + /// Detect if a mouse button has been released once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonReleased(MouseButton button); - // Detect if a mouse button is NOT being pressed + /// Detect if a mouse button is NOT being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonUp(MouseButton button); - // Returns mouse position X + /// Returns mouse position X [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseX(); - // Returns mouse position Y + /// Returns mouse position Y [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseY(); - // Returns mouse position XY + /// Returns mouse position XY [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMousePosition(); - // Set mouse position XY + /// Set mouse position XY [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMousePosition(int x, int y); - // Set mouse offset + /// Set mouse offset [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseOffset(int offsetX, int offsetY); - // Set mouse scaling + /// Set mouse scaling [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseScale(float scaleX, float scaleY); - // Returns mouse wheel movement Y + /// Returns mouse wheel movement Y [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMouseWheelMove(); - // Returns mouse cursor + /// Returns mouse cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern MouseCursor GetMouseCursor(); - // Set mouse cursor + /// Set mouse cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseCursor(MouseCursor cursor); // Input-related functions: touch - // Returns touch position X for touch point 0 (relative to screen size) + /// Returns touch position X for touch point 0 (relative to screen size) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchX(); - // Returns touch position Y for touch point 0 (relative to screen size) + /// Returns touch position Y for touch point 0 (relative to screen size) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchY(); - // Returns touch position XY for a touch point index (relative to screen size) + /// Returns touch position XY for a touch point index (relative to screen size) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetTouchPosition(int index); @@ -1553,40 +1559,40 @@ namespace Raylib_cs // Gestures and Touch Handling Functions (Module: gestures) //------------------------------------------------------------------------------------ - // Enable a set of gestures using flags + /// Enable a set of gestures using flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetGesturesEnabled(Gestures flags); - // Check if a gesture have been detected + /// Check if a gesture have been detected [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGestureDetected(Gestures gesture); - // Get latest detected gesture + /// Get latest detected gesture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGestureDetected(); - // Get touch points count + /// Get touch points count [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchPointsCount(); - // Get gesture hold time in milliseconds + /// Get gesture hold time in milliseconds [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureHoldDuration(); - // Get gesture drag vector + /// Get gesture drag vector [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGestureDragVector(); - // Get gesture drag angle + /// Get gesture drag angle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureDragAngle(); - // Get gesture pinch delta + /// Get gesture pinch delta [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGesturePinchVector(); - // Get gesture pinch angle + /// Get gesture pinch angle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGesturePinchAngle(); @@ -1594,27 +1600,27 @@ namespace Raylib_cs // Camera System Functions (Module: camera) //------------------------------------------------------------------------------------ - // Set camera mode (multiple camera modes available) + /// Set camera mode (multiple camera modes available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraMode(Camera3D camera, CameraMode mode); - // Update camera position for selected mode + /// Update camera position for selected mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateCamera(ref Camera3D camera); - // Set camera pan key to combine with mouse movement (free camera) + /// Set camera pan key to combine with mouse movement (free camera) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraPanControl(KeyboardKey panKey); - // Set camera alt key to combine with mouse movement (free camera) + /// Set camera alt key to combine with mouse movement (free camera) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraAltControl(KeyboardKey altKey); - // Set camera smooth zoom key to combine with mouse (free camera) + /// Set camera smooth zoom key to combine with mouse (free camera) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraSmoothZoomControl(KeyboardKey szKey); - // Set camera move controls (1st person and 3rd person cameras) + /// Set camera move controls (1st person and 3rd person cameras) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraMoveControls(KeyboardKey frontKey, KeyboardKey backKey, KeyboardKey rightKey, KeyboardKey leftKey, KeyboardKey upKey, KeyboardKey downKey); @@ -1622,193 +1628,193 @@ namespace Raylib_cs // Basic Shapes Drawing Functions (Module: shapes) //------------------------------------------------------------------------------------ - // Set texture and rectangle to be used on shapes drawing - // NOTE: It can be useful when using basic shapes and one single font, - // defining a font char white rectangle would allow drawing everything in a single draw call + /// Set texture and rectangle to be used on shapes drawing + /// NOTE: It can be useful when using basic shapes and one single font, + /// defining a font char white rectangle would allow drawing everything in a single draw call [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShapesTexture(Texture2D texture, Rectangle source); // Basic shapes drawing functions - // Draw a pixel + /// Draw a pixel [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixel(int posX, int posY, Color color); - // Draw a pixel (Vector version) + /// Draw a pixel (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixelV(Vector2 position, Color color); - // Draw a line + /// Draw a line [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color); - // Draw a line (Vector version) + /// Draw a line (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineV(Vector2 startPos, Vector2 endPos, Color color); - // Draw a line defining thickness + /// Draw a line defining thickness [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color); - // Draw a line using cubic-bezier curves in-out + /// Draw a line using cubic-bezier curves in-out [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color); - // Draw line using quadratic bezier curves with a control point + /// Draw line using quadratic bezier curves with a control point [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineBezierQuad(Vector2 startPos, Vector2 endPos, Vector2 controlPos, float thick, Color color); - // Draw lines sequence + /// Draw lines sequence [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineStrip(Vector2[] points, int numPoints, Color color); - // Draw a color-filled circle + /// Draw a color-filled circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircle(int centerX, int centerY, float radius, Color color); - // Draw a piece of a circle + /// Draw a piece of a circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleSector(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color); - // Draw circle sector outline + /// Draw circle sector outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleSectorLines(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color); - // Draw a gradient-filled circle + /// Draw a gradient-filled circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2); - // Draw a color-filled circle (Vector version) + /// Draw a color-filled circle (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleV(Vector2 center, float radius, Color color); - // Draw circle outline + /// Draw circle outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color); - // Draw ellipse + /// Draw ellipse [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawEllipse(int centerX, int centerY, float radiusH, float radiusV, Color color); - // Draw ellipse outline + /// Draw ellipse outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawEllipseLines(int centerX, int centerY, float radiusH, float radiusV, Color color); - // Draw ring + /// Draw ring [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRing(Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color); - // Draw ring outline + /// Draw ring outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRingLines(Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color); - // Draw a color-filled rectangle + /// Draw a color-filled rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangle(int posX, int posY, int width, int height, Color color); - // Draw a color-filled rectangle (Vector version) + /// Draw a color-filled rectangle (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleV(Vector2 position, Vector2 size, Color color); - // Draw a color-filled rectangle + /// Draw a color-filled rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRec(Rectangle rec, Color color); - // Draw a color-filled rectangle with pro parameters + /// Draw a color-filled rectangle with pro parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color); - // Draw a vertical-gradient-filled rectangle + /// Draw a vertical-gradient-filled rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2); - // Draw a horizontal-gradient-filled rectangle + /// Draw a horizontal-gradient-filled rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2); - // Draw a gradient-filled rectangle with custom vertex colors + /// Draw a gradient-filled rectangle with custom vertex colors [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4); - // Draw rectangle outline + /// Draw rectangle outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleLines(int posX, int posY, int width, int height, Color color); - // Draw rectangle outline with extended parameters + /// Draw rectangle outline with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); - // Draw rectangle with rounded edges + /// Draw rectangle with rounded edges [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRounded(Rectangle rec, float roundness, int segments, Color color); - // Draw rectangle with rounded edges outline + /// Draw rectangle with rounded edges outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRoundedLines(Rectangle rec, float roundness, int segments, int lineThick, Color color); - // Draw a color-filled triangle (vertex in counter-clockwise order!) + /// Draw a color-filled triangle (vertex in counter-clockwise order!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); - // Draw triangle outline (vertex in counter-clockwise order!) + /// Draw triangle outline (vertex in counter-clockwise order!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); - // Draw a triangle fan defined by points (first vertex is the center) + /// Draw a triangle fan defined by points (first vertex is the center) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleFan(Vector2[] points, int numPoints, Color color); - // Draw a triangle strip defined by points + /// Draw a triangle strip defined by points [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleStrip(Vector2[] points, int pointsCount, Color color); - // Draw a regular polygon (Vector version) + /// Draw a regular polygon (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color); - // Draw a polygon outline of n sides + /// Draw a polygon outline of n sides [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPolyLines(Vector2 center, int sides, float radius, float rotation, Color color); // Basic shapes collision detection functions - // Check collision between two rectangles + /// Check collision between two rectangles [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); - // Check collision between two circles + /// Check collision between two circles [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); - // Check collision between circle and rectangle + /// Check collision between circle and rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec); - // Check if point is inside rectangle + /// Check if point is inside rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec); - // Check if point is inside circle + /// Check if point is inside circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); - // Check if point is inside a triangle + /// Check if point is inside a triangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3); - // Check the collision between two lines defined by two points each, returns collision point by reference + /// Check the collision between two lines defined by two points each, returns collision point by reference [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionLines(Vector2 startPos1, Vector2 endPos1, Vector2 startPos2, Vector2 endPos2, ref Vector2 collisionPoint); - // Get collision rectangle for two rectangles collision + /// Get collision rectangle for two rectangles collision [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); @@ -1820,198 +1826,198 @@ namespace Raylib_cs // Image loading functions // NOTE: This functions do not require GPU access - // Load image from file into CPU memory (RAM) + /// Load image from file into CPU memory (RAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImage(string fileName); - // Load image from RAW file data + /// Load image from RAW file data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageRaw(string fileName, int width, int height, PixelFormat format, int headerSize); - // Load image sequence from file (frames appended to image.data) + /// Load image sequence from file (frames appended to image.data) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageAnim(string fileName, ref int frames); - // Load image from memory buffer, fileType refers to extension: i.e. "png" - // fileData refers to const unsigned char * + /// Load image from memory buffer, fileType refers to extension: i.e. "png" + /// fileData refers to const unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageFromMemory(string fileType, IntPtr fileData, int dataSize); - // Unload image from CPU memory (RAM) + /// Unload image from CPU memory (RAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImage(Image image); - // Export image data to file + /// Export image data to file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportImage(Image image, string fileName); - // Export image as code file defining an array of bytes + /// Export image as code file defining an array of bytes [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportImageAsCode(Image image, string fileName); // Image generation functions - // Generate image: plain color + /// Generate image: plain color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageColor(int width, int height, Color color); - // Generate image: vertical gradient + /// Generate image: vertical gradient [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientV(int width, int height, Color top, Color bottom); - // Generate image: horizontal gradient + /// Generate image: horizontal gradient [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientH(int width, int height, Color left, Color right); - // Generate image: radial gradient + /// Generate image: radial gradient [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); - // Generate image: checked + /// Generate image: checked [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2); - // Generate image: white noise + /// Generate image: white noise [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageWhiteNoise(int width, int height, float factor); - // Generate image: perlin noise + /// Generate image: perlin noise [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale); - // Generate image: cellular algorithm. Bigger tileSize means bigger cells + /// Generate image: cellular algorithm. Bigger tileSize means bigger cells [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageCellular(int width, int height, int tileSize); // Image manipulation functions - // Create an image duplicate (useful for transformations) + /// Create an image duplicate (useful for transformations) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageCopy(Image image); - // Create an image from another image piece + /// Create an image from another image piece [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageFromImage(Image image, Rectangle rec); - // Create an image from text (default font) + /// Create an image from text (default font) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageText([MarshalAs(UnmanagedType.LPUTF8Str)] string text, int fontSize, Color color); - // Create an image from text (custom sprite font) + /// Create an image from text (custom sprite font) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageTextEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, float fontSize, float spacing, Color tint); - // Convert image to POT (power-of-two) + /// Convert image to POT (power-of-two) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageToPOT(ref Image image, Color fill); - // Convert image data to desired format + /// Convert image data to desired format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFormat(ref Image image, int newFormat); - // Apply alpha mask to image + /// Apply alpha mask to image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaMask(ref Image image, Image alphaMask); - // Clear alpha channel to desired color + /// Clear alpha channel to desired color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaClear(ref Image image, Color color, float threshold); - // Crop image depending on alpha value + /// Crop image depending on alpha value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaCrop(ref Image image, float threshold); - // Premultiply alpha channel + /// Premultiply alpha channel [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaPremultiply(ref Image image); - // Crop an image to a defined rectangle + /// Crop an image to a defined rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageCrop(ref Image image, Rectangle crop); - // Resize image (Bicubic scaling algorithm) + /// Resize image (Bicubic scaling algorithm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResize(ref Image image, int newWidth, int newHeight); - // Resize image (Nearest-Neighbor scaling algorithm) + /// Resize image (Nearest-Neighbor scaling algorithm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResizeNN(ref Image image, int newWidth, int newHeight); - // Resize canvas and fill with color + /// Resize canvas and fill with color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResizeCanvas(ref Image image, int newWidth, int newHeight, int offsetX, int offsetY, Color color); - // Generate all mipmap levels for a provided image + /// Generate all mipmap levels for a provided image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageMipmaps(ref Image image); - // Dither image data to 16bpp or lower (Floyd-Steinberg dithering) + /// Dither image data to 16bpp or lower (Floyd-Steinberg dithering) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDither(ref Image image, int rBpp, int gBpp, int bBpp, int aBpp); - // Flip image vertically + /// Flip image vertically [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipVertical(ref Image image); - // Flip image horizontally + /// Flip image horizontally [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipHorizontal(ref Image image); - // Rotate image clockwise 90deg + /// Rotate image clockwise 90deg [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCW(ref Image image); - // Rotate image counter-clockwise 90deg + /// Rotate image counter-clockwise 90deg [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCCW(ref Image image); - // Modify image color: tint + /// Modify image color: tint [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorTint(ref Image image, Color color); - // Modify image color: invert + /// Modify image color: invert [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorInvert(ref Image image); - // Modify image color: grayscale + /// Modify image color: grayscale [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorGrayscale(ref Image image); - // Modify image color: contrast (-100 to 100) + /// Modify image color: contrast (-100 to 100) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorContrast(ref Image image, float contrast); - // Modify image color: brightness (-255 to 255) + /// Modify image color: brightness (-255 to 255) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorBrightness(ref Image image, int brightness); - // Modify image color: replace color + /// Modify image color: replace color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorReplace(ref Image image, Color color, Color replace); - // Load color data from image as a Color array (RGBA - 32bit) - // IntPtr refers to Color * + /// Load color data from image as a Color array (RGBA - 32bit) + /// IntPtr refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadImageColors(Image image); - // Load colors palette from image as a Color array (RGBA - 32bit) - // IntPtr refers to Color * + /// Load colors palette from image as a Color array (RGBA - 32bit) + /// IntPtr refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadImagePaletee(Image image, int maxPaletteSize, ref int colorsCount); - // Unload color data loaded with LoadImageColors() - // colors refers to Color * + /// Unload color data loaded with LoadImageColors() + /// colors refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImageColors(IntPtr colors); - // Unload colors palette loaded with LoadImagePalette() - // colors refers to Color * + /// Unload colors palette loaded with LoadImagePalette() + /// colors refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImagePaletee(IntPtr colors); - // Get image alpha border rectangle + /// Get image alpha border rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetImageAlphaBorder(Image image, float threshold); @@ -2019,59 +2025,59 @@ namespace Raylib_cs // Image drawing functions // NOTE: Image software-rendering functions (CPU) - // Clear image background with given color + /// Clear image background with given color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageClearBackground(ref Image dst, Color color); - // Draw pixel within an image + /// Draw pixel within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawPixel(ref Image dst, int posX, int posY, Color color); - // Draw pixel within an image (Vector version) + /// Draw pixel within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawPixelV(ref Image dst, Vector2 position, Color color); - // Draw line within an image + /// Draw line within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawLine(ref Image dst, int startPosX, int startPosY, int endPosX, int endPosY, Color color); - // Draw line within an image (Vector version) + /// Draw line within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawLineV(ref Image dst, Vector2 start, Vector2 end, Color color); - // Draw circle within an image + /// Draw circle within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircle(ref Image dst, int centerX, int centerY, int radius, Color color); - // Draw circle within an image (Vector version) + /// Draw circle within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircleV(ref Image dst, Vector2 center, int radius, Color color); - // Draw rectangle within an image + /// Draw rectangle within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangle(ref Image dst, int posX, int posY, int width, int height, Color color); - // Draw rectangle within an image (Vector version) + /// Draw rectangle within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleV(ref Image dst, Vector2 position, Vector2 size, Color color); - // Draw rectangle within an image + /// Draw rectangle within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleRec(ref Image dst, Rectangle rec, Color color); - // Draw rectangle lines within an image + /// Draw rectangle lines within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleLines(ref Image dst, Rectangle rec, int thick, Color color); - // Draw a source image within a destination image (tint applied to source) + /// Draw a source image within a destination image (tint applied to source) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDraw(ref Image dst, Image src, Rectangle srcRec, Rectangle dstRec, Color tint); - // Draw text (using default font) within an image (destination) + /// Draw text (using default font) within an image (destination) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawText(ref Image dst, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, int x, int y, int fontSize, Color color); - // Draw text (custom sprite font) within an image (destination) + /// Draw text (custom sprite font) within an image (destination) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTextEx(ref Image dst, Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Vector2 position, float fontSize, float spacing, Color tint); @@ -2079,146 +2085,146 @@ namespace Raylib_cs // Texture loading functions // NOTE: These functions require GPU access - // Load texture from file into GPU memory (VRAM) + /// Load texture from file into GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTexture(string fileName); - // Load texture from image data + /// Load texture from image data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTextureFromImage(Image image); - // Load cubemap from image, multiple image cubemap layouts supported + /// Load cubemap from image, multiple image cubemap layouts supported [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTextureCubemap(Image image, CubemapLayout layout); - // Load texture for rendering (framebuffer) + /// Load texture for rendering (framebuffer) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RenderTexture2D LoadRenderTexture(int width, int height); - // Unload texture from GPU memory (VRAM) + /// Unload texture from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadTexture(Texture2D texture); - // Unload render texture from GPU memory (VRAM) + /// Unload render texture from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadRenderTexture(RenderTexture2D target); - // Update GPU texture with new data - // pixels refers to a const void * + /// Update GPU texture with new data + /// pixels refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateTexture(Texture2D texture, IntPtr pixels); - // Update GPU texture rectangle with new data - // pixels refers to a const void * + /// Update GPU texture rectangle with new data + /// pixels refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateTextureRec(Texture2D texture, Rectangle rec, IntPtr pixels); - // Get pixel data from GPU texture and return an Image + /// Get pixel data from GPU texture and return an Image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GetTextureData(Texture2D texture); - // Get pixel data from screen buffer and return an Image (screenshot) + /// Get pixel data from screen buffer and return an Image (screenshot) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GetScreenData(); // Texture configuration functions - // Generate GPU mipmaps for a texture + /// Generate GPU mipmaps for a texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void GenTextureMipmaps(ref Texture2D texture); - // Set texture scaling filter mode + /// Set texture scaling filter mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureFilter(Texture2D texture, TextureFilter filter); - // Set texture wrapping mode + /// Set texture wrapping mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureWrap(Texture2D texture, TextureWrap wrap); // Texture drawing functions - // Draw a Texture2D + /// Draw a Texture2D [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint); - // Draw a Texture2D with position defined as Vector2 + /// Draw a Texture2D with position defined as Vector2 [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint); - // Draw a Texture2D with extended parameters + /// Draw a Texture2D with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale, Color tint); - // Draw a part of a texture defined by a rectangle + /// Draw a part of a texture defined by a rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint); - // Draw texture quad with tiling and offset parameters + /// Draw texture quad with tiling and offset parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureQuad(Texture2D texture, Vector2 tiling, Vector2 offset, Rectangle quad, Color tint); - // Draw part of a texture (defined by a rectangle) with rotation and scale tiled into dest. + /// Draw part of a texture (defined by a rectangle) with rotation and scale tiled into dest. [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureTiled(Texture2D texture, Rectangle source, Rectangle dest, Vector2 origin, float rotation, float scale, Color tint); - // Draw a part of a texture defined by a rectangle with 'pro' parameters + /// Draw a part of a texture defined by a rectangle with 'pro' parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint); - // Draws a texture (or part of it) that stretches or shrinks nicely + /// Draws a texture (or part of it) that stretches or shrinks nicely [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureNPatch(Texture2D texture, NPatchInfo nPatchInfo, Rectangle destRec, Vector2 origin, float rotation, Color tint); - // Draw a textured polygon + /// Draw a textured polygon [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTexturePoly(Texture2D texture, Vector2 center, Vector2[] points, Vector2[] texcoords, int pointsCount, Color tint); // Color/pixel related functions - // Returns hexadecimal value for a Color + /// Returns hexadecimal value for a Color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int ColorToInt(Color color); - // Returns color normalized as float [0..1] + /// Returns color normalized as float [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector4 ColorNormalize(Color color); - // Returns color from normalized values [0..1] + /// Returns color from normalized values [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorFromNormalized(Vector4 normalized); - // Returns HSV values for a Color, hue [0..360], saturation/value [0..1] + /// Returns HSV values for a Color, hue [0..360], saturation/value [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 ColorToHSV(Color color); - // Returns a Color from HSV values, hue [0..360], saturation/value [0..1] + /// Returns a Color from HSV values, hue [0..360], saturation/value [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorFromHSV(float hue, float saturation, float value); - // Returns color with alpha applied, alpha goes from 0.0f to 1.0f + /// Returns color with alpha applied, alpha goes from 0.0f to 1.0f [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorAlpha(Color color, float alpha); - // Returns src alpha-blended into dst color with tint + /// Returns src alpha-blended into dst color with tint [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorAlphaBlend(Color dst, Color src, Color tint); - // Get Color structure from hexadecimal value + /// Get Color structure from hexadecimal value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color GetColor(int hexValue); - // Get Color from a source pixel pointer of certain format + /// Get Color from a source pixel pointer of certain format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color GetPixelColor(IntPtr srcPtr, PixelFormat format); - // Set color formatted into destination pixel pointer + /// Set color formatted into destination pixel pointer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetPixelColor(IntPtr srcPtr, Color color, PixelFormat format); - // Get pixel data size in bytes for certain format + /// Get pixel data size in bytes for certain format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetPixelDataSize(int width, int height, PixelFormat format); @@ -2229,132 +2235,132 @@ namespace Raylib_cs // Font loading/unloading functions - // Get the default Font + /// Get the default Font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font GetFontDefault(); - // Load font from file into GPU memory (VRAM) + /// Load font from file into GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFont(string fileName); - // Load font from file with extended parameters + /// Load font from file with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontEx(string fileName, int fontSize, int[] fontChars, int charsCount); - // Load font from Image (XNA style) + /// Load font from Image (XNA style) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontFromImage(Image image, Color key, int firstChar); - // Load font from memory buffer, fileType refers to extension: i.e. "ttf" - // fileData refers to const unsigned char * + /// Load font from memory buffer, fileType refers to extension: i.e. "ttf" + /// fileData refers to const unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontFromMemory(string fileType, IntPtr fileData, int dataSize, int fontSize, int[] fontChars, int charsCount); - // Load font data for further use - // fileData refers to const unsigned char * - // IntPtr refers to CharInfo * + /// Load font data for further use + /// fileData refers to const unsigned char * + /// IntPtr refers to CharInfo * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadFontData(IntPtr fileData, int dataSize, int fontSize, int[] fontChars, int charsCount, FontType type); - // Generate image font atlas using chars info + /// Generate image font atlas using chars info [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageFontAtlas(IntPtr chars, ref IntPtr recs, int charsCount, int fontSize, int padding, int packMethod); - // Unload font chars info data (RAM) - // chars refers to CharInfo * + /// Unload font chars info data (RAM) + /// chars refers to CharInfo * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFontData(IntPtr chars, int charsCount); - // Unload Font from GPU memory (VRAM) + /// Unload Font from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFont(Font font); // Text drawing functions - // Shows current FPS + /// Shows current FPS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawFPS(int posX, int posY); - // Draw text (using default font) + /// Draw text (using default font) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawText([MarshalAs(UnmanagedType.LPUTF8Str)] string text, int posX, int posY, int fontSize, Color color); - // Draw text using font and additional parameters + /// Draw text using font and additional parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Vector2 position, float fontSize, float spacing, Color tint); - // Draw text using font inside rectangle limits + /// Draw text using font inside rectangle limits [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextRec(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint); - // Draw text using font inside rectangle limits with support for text selection + /// Draw text using font inside rectangle limits with support for text selection [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextRecEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint, int selectStart, int selectLength, Color selectText, Color selectBack); - // Draw one character (codepoint) + /// Draw one character (codepoint) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextCodepoint(Font font, int codepoint, Vector2 position, float scale, Color tint); // Text misc. functions - // Measure string width for default font + /// Measure string width for default font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int MeasureText([MarshalAs(UnmanagedType.LPUTF8Str)] string text, int fontSize); - // Measure string size for Font + /// Measure string size for Font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 MeasureTextEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, float fontSize, float spacing); - // Get index position for a unicode character on font + /// Get index position for a unicode character on font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGlyphIndex(Font font, int character); // Text strings management functions // NOTE: Some strings allocate memory internally for returned strings, just be careful! - // Text formatting with variables (sprintf style) + /// Text formatting with variables (sprintf style) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextFormat(string text); - // Get a piece of a text string + /// Get a piece of a text string [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextSubtext(string text, int position, int length); - // Append text at specific position and move cursor! + /// Append text at specific position and move cursor! [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TextAppend(ref char text, string append, ref int position); - // Get Pascal case notation version of provided string + /// Get Pascal case notation version of provided string [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextToPascal(string text); - // Get integer value from text (negative values not supported) + /// Get integer value from text (negative values not supported) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int TextToInteger(string text); - // Encode text codepoint into utf8 text (memory must be freed!) + /// Encode text codepoint into utf8 text (memory must be freed!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextToUtf8(string text, int length); // UTF8 text strings management functions - // Get all codepoints in a string, codepoints count returned by parameters - // IntPtr refers to a int * + /// Get all codepoints in a string, codepoints count returned by parameters + /// IntPtr refers to a int * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr GetCodepoints(string text, ref int count); - // Get total number of characters (codepoints) in a UTF8 encoded string + /// Get total number of characters (codepoints) in a UTF8 encoded string [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCodepointsCount(string text); - // Returns next codepoint in a UTF8 encoded string; 0x3f('?') is returned on failure + /// Returns next codepoint in a UTF8 encoded string; 0x3f('?') is returned on failure [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetNextCodepoint(string text, ref int bytesProcessed); - // Encode codepoint into utf8 text (char array length returned as parameter) + /// Encode codepoint into utf8 text (char array length returned as parameter) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string CodepointToUtf8(string text, ref int byteLength); @@ -2365,75 +2371,75 @@ namespace Raylib_cs // Basic geometric 3D shapes drawing functions - // Draw a line in 3D world space + /// Draw a line in 3D world space [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); - // Draw a point in 3D space, actually a small line + /// Draw a point in 3D space, actually a small line [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPoint3D(Vector3 position, Color color); - // Draw a circle in 3D world space + /// Draw a circle in 3D world space [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color); - // Draw a color-filled triangle (vertex in counter-clockwise order!) + /// Draw a color-filled triangle (vertex in counter-clockwise order!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangle3D(Vector3 v1, Vector3 v2, Vector3 v3, Color color); - // Draw a triangle strip defined by points + /// Draw a triangle strip defined by points [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleStrip3D(Vector3[] points, int pointsCount, Color color); - // Draw cube + /// Draw cube [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCube(Vector3 position, float width, float height, float length, Color color); - // Draw cube (Vector version) + /// Draw cube (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color); - // Draw cube wires + /// Draw cube wires [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeWires(Vector3 position, float width, float height, float length, Color color); - // Draw cube wires (Vector version) + /// Draw cube wires (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeWiresV(Vector3 position, Vector3 size, Color color); - // Draw cube textured + /// Draw cube textured [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height, float length, Color color); - // Draw sphere + /// Draw sphere [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphere(Vector3 centerPos, float radius, Color color); - // Draw sphere with extended parameters + /// Draw sphere with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices, Color color); - // Draw sphere wires + /// Draw sphere wires [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color); - // Draw a cylinder/cone + /// Draw a cylinder/cone [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); - // Draw a cylinder/cone wires + /// Draw a cylinder/cone wires [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); - // Draw a plane XZ + /// Draw a plane XZ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color); - // Draw a ray line + /// Draw a ray line [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRay(Ray ray, Color color); - // Draw a grid (centered at (0, 0, 0)) + /// Draw a grid (centered at (0, 0, 0)) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawGrid(int slices, float spacing); @@ -2444,47 +2450,47 @@ namespace Raylib_cs // Model loading/unloading functions - // Load model from files (meshes and materials) + /// Load model from files (meshes and materials) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModel(string fileName); - // Load model from generated mesh (default material) + /// Load model from generated mesh (default material) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModelFromMesh(Mesh mesh); - // Unload model from memory (RAM and/or VRAM) + /// Unload model from memory (RAM and/or VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModel(Model model); - // Unload model (but not meshes) from memory (RAM and/or VRAM) + /// Unload model (but not meshes) from memory (RAM and/or VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelKeepMeshes(Model model); // Mesh loading/unloading functions - // Upload vertex data into GPU and provided VAO/VBO ids + /// Upload vertex data into GPU and provided VAO/VBO ids [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UploadMesh(ref Mesh mesh, bool dynamic); - // Update mesh vertex data in GPU for a specific buffer index - // data refers to a void * + /// Update mesh vertex data in GPU for a specific buffer index + /// data refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateMeshBuffer(Mesh mesh, int index, IntPtr data, int dataSize, int offset); - // Draw a 3d mesh with material and transform + /// Draw a 3d mesh with material and transform [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawMesh(Mesh mesh, Material material, Matrix4x4 transform); - // Draw multiple mesh instances with material and different transforms + /// Draw multiple mesh instances with material and different transforms [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawMeshInstanced(Mesh mesh, Material material, Matrix4x4[] transforms, int instances); - // Unload mesh from memory (RAM and/or VRAM) + /// Unload mesh from memory (RAM and/or VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMesh(ref Mesh mesh); - // Export mesh data to file, returns true on success + /// Export mesh data to file, returns true on success [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool ExportMesh(Mesh mesh, string fileName); @@ -2492,48 +2498,48 @@ namespace Raylib_cs // Material loading/unloading functions - // Load materials from model file - // IntPtr refers to Material * + /// Load materials from model file + /// IntPtr refers to Material * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadMaterials(string fileName, ref int materialCount); - // Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps) + /// Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Material LoadMaterialDefault(); - // Unload material from GPU memory (VRAM) + /// Unload material from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMaterial(Material material); - // Set texture for a material map type (MAP_DIFFUSE, MAP_SPECULAR...) + /// Set texture for a material map type (MAP_DIFFUSE, MAP_SPECULAR...) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMaterialTexture(ref Material material, int mapType, Texture2D texture); - // Set material for a mesh + /// Set material for a mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetModelMeshMaterial(ref Model model, int meshId, int materialId); // Model animations loading/unloading functions - // Load model animations from file - // IntPtr refers to ModelAnimation * + /// Load model animations from file + /// IntPtr refers to ModelAnimation * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadModelAnimations(string fileName, ref int animsCount); - // Update model animation pose + /// Update model animation pose [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateModelAnimation(Model model, ModelAnimation anim, int frame); - // Unload animation data + /// Unload animation data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelAnimation(ModelAnimation anim); - // Unload animation array data + /// Unload animation array data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelAnimations(ModelAnimation[] animations, int count); - // Check model animation skeleton match + /// Check model animation skeleton match [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsModelAnimationValid(Model model, ModelAnimation anim); @@ -2541,134 +2547,134 @@ namespace Raylib_cs // Mesh generation functions - // Generate polygonal mesh + /// Generate polygonal mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPoly(int sides, float radius); - // Generate plane mesh (with subdivisions) + /// Generate plane mesh (with subdivisions) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ); - // Generate cuboid mesh + /// Generate cuboid mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCube(float width, float height, float length); - // Generate sphere mesh (standard sphere) + /// Generate sphere mesh (standard sphere) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshSphere(float radius, int rings, int slices); - // Generate half-sphere mesh (no bottom cap) + /// Generate half-sphere mesh (no bottom cap) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices); - // Generate cylinder mesh + /// Generate cylinder mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCylinder(float radius, float height, int slices); - // Generate torus mesh + /// Generate torus mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides); - // Generate trefoil knot mesh + /// Generate trefoil knot mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshKnot(float radius, float size, int radSeg, int sides); - // Generate heightmap mesh from image data + /// Generate heightmap mesh from image data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshHeightmap(Image heightmap, Vector3 size); - // Generate cubes-based map mesh from image data + /// Generate cubes-based map mesh from image data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Mesh manipulation functions - // Compute mesh bounding box limits + /// Compute mesh bounding box limits [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern BoundingBox MeshBoundingBox(Mesh mesh); - // Compute mesh tangents + /// Compute mesh tangents [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MeshTangents(ref Mesh mesh); - // Compute mesh binormals + /// Compute mesh binormals [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MeshBinormals(ref Mesh mesh); // Model drawing functions - // Draw a model (with texture if set) + /// Draw a model (with texture if set) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModel(Model model, Vector3 position, float scale, Color tint); - // Draw a model with extended parameters + /// Draw a model with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); - // Draw a model wires (with texture if set) + /// Draw a model wires (with texture if set) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelWires(Model model, Vector3 position, float scale, Color tint); - // Draw a model wires (with texture if set) with extended parameters + /// Draw a model wires (with texture if set) with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); - // Draw bounding box (wires) + /// Draw bounding box (wires) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBoundingBox(BoundingBox box, Color color); - // Draw a billboard texture + /// Draw a billboard texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboard(Camera3D camera, Texture2D texture, Vector3 center, float size, Color tint); - // Draw a billboard texture defined by sourceRec + /// Draw a billboard texture defined by sourceRec [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboardRec(Camera3D camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint); // Collision detection functions - // Detect collision between two spheres + /// Detect collision between two spheres [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB); - // Detect collision between two bounding boxes + /// Detect collision between two bounding boxes [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); - // Detect collision between box and sphere + /// Detect collision between box and sphere [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere); - // Detect collision between ray and sphere + /// Detect collision between ray and sphere [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius); - // Detect collision between ray and sphere, returns collision point + /// Detect collision between ray and sphere, returns collision point [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, ref Vector3 collisionPoint); - // Detect collision between ray and box + /// Detect collision between ray and box [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box); - // Get collision info between ray and model + /// Get collision info between ray and model [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayModel(Ray ray, Model model); - // Get collision info between ray and triangle + /// Get collision info between ray and triangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3); - // Get collision info between ray and ground plane (Y-normal plane) + /// Get collision info between ray and ground plane (Y-normal plane) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight); @@ -2679,236 +2685,236 @@ namespace Raylib_cs // Audio device management functions - // Initialize audio device and context + /// Initialize audio device and context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void InitAudioDevice(); - // Close the audio device and context + /// Close the audio device and context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseAudioDevice(); - // Check if audio device has been initialized successfully + /// Check if audio device has been initialized successfully [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsAudioDeviceReady(); - // Set master volume (listener) + /// Set master volume (listener) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMasterVolume(float volume); // Wave/Sound loading/unloading functions - // Load wave data from file + /// Load wave data from file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWave(string fileName); - // Load wave from memory buffer, fileType refers to extension: i.e. "wav" - // fileData refers to a const unsigned char * + /// Load wave from memory buffer, fileType refers to extension: i.e. "wav" + /// fileData refers to a const unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWaveFromMemory(string fileType, IntPtr fileData, int dataSize); - // Load sound from file + /// Load sound from file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSound(string fileName); - // Load sound from wave data + /// Load sound from wave data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSoundFromWave(Wave wave); - // Update sound buffer with new data - // data refers to a const void * + /// Update sound buffer with new data + /// data refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateSound(Sound sound, IntPtr data, int samplesCount); - // Unload wave data + /// Unload wave data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadWave(Wave wave); - // Unload sound + /// Unload sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadSound(Sound sound); - // Export wave data to file + /// Export wave data to file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportWave(Wave wave, string fileName); - // Export wave sample data to code (.h) + /// Export wave sample data to code (.h) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportWaveAsCode(Wave wave, string fileName); // Wave/Sound management functions - // Play a sound + /// Play a sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlaySound(Sound sound); - // Stop playing a sound + /// Stop playing a sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopSound(Sound sound); - // Pause a sound + /// Pause a sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseSound(Sound sound); - // Resume a paused sound + /// Resume a paused sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeSound(Sound sound); - // Play a sound (using multichannel buffer pool) + /// Play a sound (using multichannel buffer pool) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlaySoundMulti(Sound sound); - // Stop any sound playing (using multichannel buffer pool) + /// Stop any sound playing (using multichannel buffer pool) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopSoundMulti(); - // Get number of sounds playing in the multichannel + /// Get number of sounds playing in the multichannel [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetSoundsPlaying(); - // Check if a sound is currently playing + /// Check if a sound is currently playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsSoundPlaying(Sound sound); - // Set volume for a sound (1.0 is max level) + /// Set volume for a sound (1.0 is max level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSoundVolume(Sound sound, float volume); - // Set pitch for a sound (1.0 is base level) + /// Set pitch for a sound (1.0 is base level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSoundPitch(Sound sound, float pitch); - // Convert wave data to desired format + /// Convert wave data to desired format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void WaveFormat(ref Wave wave, int sampleRate, int sampleSize, int channels); - // Copy a wave to a new wave + /// Copy a wave to a new wave [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave WaveCopy(Wave wave); - // Crop a wave to defined samples range + /// Crop a wave to defined samples range [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void WaveCrop(ref Wave wave, int initSample, int finalSample); - // Get samples data from wave as a floats array - // IntPtr refers to float * + /// Get samples data from wave as a floats array + /// IntPtr refers to float * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadWaveSamples(Wave wave); - // Unload samples data loaded with LoadWaveSamples() - // samples refers to float * + /// Unload samples data loaded with LoadWaveSamples() + /// samples refers to float * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadWaveSamples(IntPtr samples); // Music management functions - // Load music stream from file + /// Load music stream from file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Music LoadMusicStream(string fileName); - // Load music stream from data + /// Load music stream from data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Music LoadMusicStreamFromMemory(string fileType, IntPtr data, int dataSize); - // Unload music stream + /// Unload music stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMusicStream(Music music); - // Start music playing + /// Start music playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlayMusicStream(Music music); - // Updates buffers for music streaming + /// Updates buffers for music streaming [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateMusicStream(Music music); - // Stop music playing + /// Stop music playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopMusicStream(Music music); - // Pause music playing + /// Pause music playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseMusicStream(Music music); - // Resume playing paused music + /// Resume playing paused music [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeMusicStream(Music music); - // Check if music is playing + /// Check if music is playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMusicPlaying(Music music); - // Set volume for music (1.0 is max level) + /// Set volume for music (1.0 is max level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicVolume(Music music, float volume); - // Set pitch for a music (1.0 is base level) + /// Set pitch for a music (1.0 is base level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicPitch(Music music, float pitch); - // Get music time length (in seconds) + /// Get music time length (in seconds) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMusicTimeLength(Music music); - // Get current music time played (in seconds) + /// Get current music time played (in seconds) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMusicTimePlayed(Music music); // AudioStream management functions - // Init audio stream (to stream raw audio pcm data) + /// Init audio stream (to stream raw audio pcm data) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels); - // Update audio stream buffers with data - // data refers to a const void * + /// Update audio stream buffers with data + /// data refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateAudioStream(AudioStream stream, IntPtr data, int samplesCount); - // Close audio stream and free memory + /// Close audio stream and free memory [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseAudioStream(AudioStream stream); - // Check if any audio stream buffers requires refill + /// Check if any audio stream buffers requires refill [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsAudioStreamProcessed(AudioStream stream); - // Play audio stream + /// Play audio stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlayAudioStream(AudioStream stream); - // Pause audio stream + /// Pause audio stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseAudioStream(AudioStream stream); - // Resume audio stream + /// Resume audio stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeAudioStream(AudioStream stream); - // Check if audio stream is playing + /// Check if audio stream is playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsAudioStreamPlaying(AudioStream stream); - // Stop audio stream + /// Stop audio stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopAudioStream(AudioStream stream); - // Set volume for audio stream (1.0 is max level) + /// Set volume for audio stream (1.0 is max level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamVolume(AudioStream stream, float volume); - // Set pitch for audio stream (1.0 is base level) + /// Set pitch for audio stream (1.0 is base level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); - // Default size for new audio streams + /// Default size for new audio streams [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamBufferSizeDefault(int size); } diff --git a/Raylib-cs/Rlgl.cs b/Raylib-cs/Rlgl.cs index 58c2e37..f0bb0d8 100644 --- a/Raylib-cs/Rlgl.cs +++ b/Raylib-cs/Rlgl.cs @@ -5,7 +5,7 @@ using System.Security; namespace Raylib_cs { - // RenderBatch type + /// RenderBatch type [StructLayout(LayoutKind.Sequential)] public struct RenderBatch { @@ -103,35 +103,35 @@ namespace Raylib_cs // Functions Declaration - Matrix operations // ------------------------------------------------------------------------------------ - // Choose the current matrix to be transformed + /// Choose the current matrix to be transformed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlMatrixMode(int mode); - // Push the current matrix to stack + /// Push the current matrix to stack [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlPushMatrix(); - // Pop lattest inserted matrix from stack + /// Pop lattest inserted matrix from stack [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlPopMatrix(); - // Reset current matrix to identity matrix + /// Reset current matrix to identity matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadIdentity(); - // Multiply the current matrix by a translation matrix + /// Multiply the current matrix by a translation matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlTranslatef(float x, float y, float z); - // Multiply the current matrix by a rotation matrix + /// Multiply the current matrix by a rotation matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlRotatef(float angleDeg, float x, float y, float z); - // Multiply the current matrix by a scaling matrix + /// Multiply the current matrix by a scaling matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlScalef(float x, float y, float z); - // Multiply the current matrix by another matrix + /// Multiply the current matrix by another matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlMultMatrixf(ref float[] matf); @@ -141,7 +141,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlOrtho(double left, double right, double bottom, double top, double znear, double zfar); - // Set the viewport area + /// Set the viewport area [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlViewport(int x, int y, int width, int height); @@ -150,43 +150,43 @@ namespace Raylib_cs // Functions Declaration - Vertex level operations // ------------------------------------------------------------------------------------ - // Initialize drawing mode (how to organize vertex) + /// Initialize drawing mode (how to organize vertex) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlBegin(int mode); - // Finish vertex providing + /// Finish vertex providing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnd(); - // Define one vertex (position) - 2 int + /// Define one vertex (position) - 2 int [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlVertex2i(int x, int y); - // Define one vertex (position) - 2 float + /// Define one vertex (position) - 2 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlVertex2f(float x, float y); - // Define one vertex (position) - 3 float + /// Define one vertex (position) - 3 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlVertex3f(float x, float y, float z); - // Define one vertex (texture coordinate) - 2 float + /// Define one vertex (texture coordinate) - 2 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlTexCoord2f(float x, float y); - // Define one vertex (normal) - 3 float + /// Define one vertex (normal) - 3 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlNormal3f(float x, float y, float z); - // Define one vertex (color) - 4 byte + /// Define one vertex (color) - 4 byte [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlColor4ub(byte r, byte g, byte b, byte a); - // Define one vertex (color) - 3 float + /// Define one vertex (color) - 3 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlColor3f(float x, float y, float z); - // Define one vertex (color) - 4 float + /// Define one vertex (color) - 4 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlColor4f(float x, float y, float z, float w); @@ -196,183 +196,183 @@ namespace Raylib_cs // NOTE: This functions are used to completely abstract raylib code from OpenGL layer // ------------------------------------------------------------------------------------ - // Vertex buffers state + /// Vertex buffers state - // Enable vertex array (VAO, if supported) + /// Enable vertex array (VAO, if supported) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlEnableVertexArray(uint vaoId); - // Disable vertex array (VAO, if supported) + /// Disable vertex array (VAO, if supported) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexArray(); - // Enable vertex buffer (VBO) + /// Enable vertex buffer (VBO) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableVertexBuffer(uint id); - // Disable vertex buffer (VBO) + /// Disable vertex buffer (VBO) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexBuffer(); - // Enable vertex buffer element (VBO element) + /// Enable vertex buffer element (VBO element) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableVertexBufferElement(uint id); - // Disable vertex buffer element (VBO element) + /// Disable vertex buffer element (VBO element) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexBufferElement(); - // Enable vertex attribute index + /// Enable vertex attribute index [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableVertexAttribute(uint index); - // Disable vertex attribute index + /// Disable vertex attribute index [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexAttribute(uint index); // Textures state - // Select and active a texture slot + /// Select and active a texture slot [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlActiveTextureSlot(int slot); - // Enable texture + /// Enable texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableTexture(uint id); - // Disable texture + /// Disable texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableTexture(); - // Enable texture cubemap + /// Enable texture cubemap [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableTextureCubemap(uint id); - // Disable texture cubemap + /// Disable texture cubemap [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableTextureCubemap(); - // Set texture parameters (filter, wrap) + /// Set texture parameters (filter, wrap) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlTextureParameters(uint id, int param, int value); // Shader state - // Enable shader program + /// Enable shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableShader(uint id); - // Disable shader program + /// Disable shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableShader(); // Framebuffer state - // Enable render texture (fbo) + /// Enable render texture (fbo) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableFramebuffer(uint id); - // Disable render texture (fbo), return to default framebuffer + /// Disable render texture (fbo), return to default framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableFramebuffer(); // General render state - // Enable depth test + /// Enable depth test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableDepthTest(); - // Disable depth test + /// Disable depth test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableDepthTest(); - // Enable depth write + /// Enable depth write [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableDepthMask(); - // Disable depth write + /// Disable depth write [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableDepthMask(); - // Enable backface culling + /// Enable backface culling [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableBackfaceCulling(); - // Disable backface culling + /// Disable backface culling [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableBackfaceCulling(); - // Enable scissor test + /// Enable scissor test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableScissorTest(); - // Disable scissor test + /// Disable scissor test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableScissorTest(); - // Scissor test + /// Scissor test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlScissor(int x, int y, int width, int height); - // Enable wire mode + /// Enable wire mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableWireMode(); - // Disable wire mode + /// Disable wire mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableWireMode(); - // Set the line drawing width + /// Set the line drawing width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetLineWidth(float width); - // Get the line drawing width + /// Get the line drawing width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float rlGetLineWidth(); - // Enable line aliasing + /// Enable line aliasing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableSmoothLines(); - // Disable line aliasing + /// Disable line aliasing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableSmoothLines(); - // Enable stereo rendering + /// Enable stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableStereoRender(); - // Disable stereo rendering + /// Disable stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableStereoRender(); - // Check if stereo render is enabled + /// Check if stereo render is enabled [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlIsStereoRenderEnabled(); - // Clear color buffer with color + /// Clear color buffer with color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlClearColor(byte r, byte g, byte b, byte a); - // Clear used screen buffers (color and depth) + /// Clear used screen buffers (color and depth) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlClearScreenBuffers(); - // Check and log OpenGL error codes + /// Check and log OpenGL error codes [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlCheckErrors(); - // Set blending mode + /// Set blending mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetBlendMode(int mode); - // Set blending mode factor and equation (using OpenGL factors) + /// Set blending mode factor and equation (using OpenGL factors) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetBlendModeFactors(int glSrcFactor, int glDstFactor, int glEquation); @@ -381,87 +381,87 @@ namespace Raylib_cs // Functions Declaration - rlgl functionality // ------------------------------------------------------------------------------------ - // Initialize rlgl (buffers, shaders, textures, states) + /// Initialize rlgl (buffers, shaders, textures, states) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlglInit(int width, int height); - // De-inititialize rlgl (buffers, shaders, textures) + /// De-inititialize rlgl (buffers, shaders, textures) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlglClose(); - // Load OpenGL extensions - // loader refers to a void * + /// Load OpenGL extensions + /// loader refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadExtensions(IntPtr loader); - // Returns current OpenGL version + /// Returns current OpenGL version [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern GlVersion rlGetVersion(); - // Get default framebuffer width + /// Get default framebuffer width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetFramebufferWidth(); - // Get default framebuffer height + /// Get default framebuffer height [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetFramebufferHeight(); - // Get default shader + /// Get default shader [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader rlGetShaderDefault(); - // Get default texture + /// Get default texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D rlGetTextureDefault(); // Render batch management - // Load a render batch system + /// Load a render batch system [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RenderBatch rlLoadRenderBatch(int numBuffers, int bufferElements); - // Unload render batch system + /// Unload render batch system [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUnloadRenderBatch(RenderBatch batch); - // Draw render batch data (Update->Draw->Reset) + /// Draw render batch data (Update->Draw->Reset) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDrawRenderBatch(ref RenderBatch batch); - // Set the active render batch for rlgl (NULL for default internal) + /// Set the active render batch for rlgl (NULL for default internal) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetRenderBatchActive(ref RenderBatch batch); - // Update and draw internal render batch + /// Update and draw internal render batch [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDrawRenderBatchActive(); - // Check internal buffer overflow for a given number of vertex + /// Check internal buffer overflow for a given number of vertex [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlCheckRenderBatchLimit(int vCount); - // Set current texture for render batch and check buffers limits + /// Set current texture for render batch and check buffers limits [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetTexture(uint id); // Vertex buffers management - // Load vertex array (vao) if supported + /// Load vertex array (vao) if supported [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadVertexArray(); - // Load a vertex buffer attribute + /// Load a vertex buffer attribute [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadVertexBuffer(IntPtr buffer, int size, bool dynamic); - // Load a new attributes element buffer + /// Load a new attributes element buffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadVertexBufferElement(IntPtr buffer, int size, bool dynamic); - // Update GPU buffer with new data + /// Update GPU buffer with new data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUpdateVertexBuffer(int bufferId, IntPtr data, int dataSize, int offset); @@ -477,7 +477,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetVertexAttributeDivisor(uint index, int divisor); - // Set vertex attribute default value + /// Set vertex attribute default value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetVertexAttributeDefault(int locIndex, IntPtr value, int attribType, int count); @@ -496,64 +496,64 @@ namespace Raylib_cs // Textures data management - // Load texture in GPU - // data refers to a void * + /// Load texture in GPU + /// data refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadTexture(IntPtr data, int width, int height, PixelFormat format, int mipmapCount); - // Load depth texture/renderbuffer (to be attached to fbo) + /// Load depth texture/renderbuffer (to be attached to fbo) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadTextureDepth(int width, int height, bool useRenderBuffer); - // Load texture cubemap - // data refers to a void * + /// Load texture cubemap + /// data refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadTextureCubemap(IntPtr data, int size, PixelFormat format); - // Update GPU texture with new data - // data refers to a const void * + /// Update GPU texture with new data + /// data refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUpdateTexture(uint id, int width, int height, PixelFormat format, IntPtr data); - // Get OpenGL internal formats + /// Get OpenGL internal formats [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlGetGlTextureFormats(PixelFormat format, ref uint glInternalFormat, ref uint glFormat, ref uint glType); - // Unload texture from GPU memory + /// Unload texture from GPU memory [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUnloadTexture(uint id); - // Generate mipmap data for selected texture + /// Generate mipmap data for selected texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlGenerateMipmaps(ref Texture2D texture); - // Read texture pixel data - // IntPtr refers to a void * + /// Read texture pixel data + /// IntPtr refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr rlReadTexturePixels(Texture2D texture); - // Read screen pixel data (color buffer) - // IntPtr refers to a unsigned char * + /// Read screen pixel data (color buffer) + /// IntPtr refers to a unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr rlReadScreenPixels(int width, int height); // Framebuffer management (fbo) - // Load an empty framebuffer + /// Load an empty framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadFramebuffer(int width, int height); - // Attach texture/renderbuffer to a framebuffer + /// Attach texture/renderbuffer to a framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlFramebufferAttach(uint fboId, uint texId, FramebufferAttachType attachType, FramebufferAttachTextureType texType, int mipLevel); - // Verify framebuffer is complete + /// Verify framebuffer is complete [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlFramebufferComplete(uint id); - // Delete framebuffer from GPU + /// Delete framebuffer from GPU [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlUnloadFramebuffer(uint id); @@ -561,93 +561,93 @@ namespace Raylib_cs // Shaders management - // Load shader from code strings + /// Load shader from code strings [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadShaderCode(string vsCode, string fsCode); - // Compile custom shader and return shader id (type: GL_VERTEX_SHADER, GL_FRAGMENT_SHADER) + /// Compile custom shader and return shader id (type: GL_VERTEX_SHADER, GL_FRAGMENT_SHADER) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlCompileShader(string shaderCode, int type); - // Load custom shader program + /// Load custom shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadShaderProgram(uint vShaderId, uint fShaderId); - // Unload shader program + /// Unload shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUnloadShaderProgram(uint id); - // Get shader location uniform + /// Get shader location uniform [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetLocationUniform(uint shaderId, string uniformName); - // Get shader location attribute + /// Get shader location attribute [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetLocationAttrib(uint shaderId, string attribName); - // Set shader value uniform + /// Set shader value uniform [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetUniform(int locIndex, IntPtr value, int uniformType, int count); - // Set shader value matrix + /// Set shader value matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetUniformMatrix(int locIndex, Matrix4x4 mat); - // Set shader value sampler + /// Set shader value sampler [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetUniformSampler(int locIndex, uint textureId); - // Set shader currently active + /// Set shader currently active [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetShader(Shader shader); // Matrix state management - // Get internal modelview matrix + /// Get internal modelview matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixModelView(); - // Get internal projection matrix + /// Get internal projection matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixProjection(); - // Get internal accumulated transform matrix + /// Get internal accumulated transform matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixTramsform(); - // Get internal projection matrix for stereo render (selected eye) + /// Get internal projection matrix for stereo render (selected eye) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixProjectionStereo(int eye); - // Get internal view offset matrix for stereo render (selected eye) + /// Get internal view offset matrix for stereo render (selected eye) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixViewOffsetStereo(int eye); - // Set a custom projection matrix (replaces internal projection matrix) + /// Set a custom projection matrix (replaces internal projection matrix) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixProjection(Matrix4x4 view); - // Set a custom modelview matrix (replaces internal modelview matrix) + /// Set a custom modelview matrix (replaces internal modelview matrix) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixModelView(Matrix4x4 proj); - // Set eyes projection matrices for stereo rendering + /// Set eyes projection matrices for stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixProjectionStereo(Matrix4x4 left, Matrix4x4 right); - // Set eyes view offsets matrices for stereo rendering + /// Set eyes view offsets matrices for stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixViewOffsetStereo(Matrix4x4 left, Matrix4x4 right); // Quick and dirty cube/quad buffers load->draw->unload - // Load and draw a cube + /// Load and draw a cube [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadDrawCube(); - // Load and draw a quad + /// Load and draw a quad [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadDrawQuad(); }