using System; using System.Numerics; using System.Runtime.InteropServices; using System.Security; namespace Raylib_cs; [SuppressUnmanagedCodeSecurity] public static unsafe partial class Raylib { /// /// Used by DllImport to load the native library /// public const string NativeLibName = "raylib"; public const string RAYLIB_VERSION = "5.5"; public const float DEG2RAD = MathF.PI / 180.0f; public const float RAD2DEG = 180.0f / MathF.PI; /// /// Get color with alpha applied, alpha goes from 0.0f to 1.0f
/// NOTE: Added for compatability with previous versions ///
public static Color Fade(Color color, float alpha) => ColorAlpha(color, alpha); //------------------------------------------------------------------------------------ // Window and Graphics Device Functions (Module: core) //------------------------------------------------------------------------------------ // Window-related functions /// Initialize window and OpenGL context [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void InitWindow(int width, int height, sbyte* title); /// Check if KEY_ESCAPE pressed or Close icon pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool WindowShouldClose(); /// Close window and unload OpenGL context [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseWindow(); /// Check if window has been initialized successfully [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowReady(); /// Check if window is currently fullscreen [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowFullscreen(); /// Check if window is currently hidden [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowHidden(); /// Check if window is currently minimized [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowMinimized(); /// Check if window is currently maximized [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowMaximized(); /// Check if window is currently focused [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowFocused(); /// Check if window has been resized last frame [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowResized(); /// Check if one specific window flag is enabled [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWindowState(ConfigFlags flag); /// Set window configuration state using flags [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool SetWindowState(ConfigFlags flag); /// Clear window configuration state flags [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearWindowState(ConfigFlags flag); /// Toggle window state: fullscreen/windowed, resizes monitor to match window resolution [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ToggleFullscreen(); /// Toggle window state: borderless windowed, resizes window to match monitor resolution [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ToggleBorderlessWindowed(); /// Set window state: maximized, if resizable [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MaximizeWindow(); /// Set window state: minimized, if resizable [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MinimizeWindow(); /// Set window state: not minimized/maximized [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void RestoreWindow(); /// Set icon for window (single image, RGBA 32bit) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowIcon(Image image); /// Set icon for window (multiple images, RGBA 32bit) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowIcons(Image* images, int count); /// Set title for window [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowTitle(sbyte* title); /// Set window position on screen [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowPosition(int x, int y); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMinSize(int width, int height); /// Set window maximum dimensions (for FLAG_WINDOW_RESIZABLE) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMaxSize(int width, int height); /// Set window dimensions [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowSize(int width, int height); /// Set window opacity [0.0f..1.0f] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowOpacity(float opacity); /// Set window focused [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowFocused(); /// Get native window handle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void* GetWindowHandle(); /// Get current screen width [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenWidth(); /// Get current screen height [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenHeight(); /// Get current render width (it considers HiDPI) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetRenderWidth(); /// Get current render height (it considers HiDPI) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetRenderHeight(); /// Get number of connected monitors [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorCount(); /// Get current monitor where window is placed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCurrentMonitor(); /// Get specified monitor position [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMonitorPosition(int monitor); /// Get specified monitor width [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorWidth(int monitor); /// Get specified monitor height [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorHeight(int monitor); /// Get specified monitor physical width in millimetres [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorPhysicalWidth(int monitor); /// Get specified monitor physical height in millimetres [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorPhysicalHeight(int monitor); /// Get specified monitor refresh rate [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorRefreshRate(int monitor); /// Get window position XY on monitor [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWindowPosition(); /// 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 specified monitor [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetMonitorName(int monitor); /// Get clipboard text content [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetClipboardText(); /// Get clipboard image content (only works on Windows) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GetClipboardImage(); /// Set clipboard text content [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetClipboardText(sbyte* text); /// Enable waiting for events on EndDrawing(), no automatic event polling [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EnableEventWaiting(); /// Disable waiting for events on EndDrawing(), automatic events polling [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DisableEventWaiting(); // Custom frame control functions // NOTE: Those functions are intended for advance users that want full control over the frame processing // By default EndDrawing() does this job: draws everything + SwapScreenBuffer() + manage frame timming + PollInputEvents() // To avoid that behaviour and control frame processes manually, enable in config.h: SUPPORT_CUSTOM_FRAME_CONTROL /// Swap back buffer with front buffer (screen drawing) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SwapScreenBuffer(); /// Register all input events [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PollInputEvents(); /// Wait for some time (halt program execution) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void WaitTime(double seconds); // Cursor-related functions /// Shows cursor [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ShowCursor(); /// Hides cursor [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void HideCursor(); /// Check if cursor is not visible [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsCursorHidden(); /// Enables cursor (unlock cursor) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EnableCursor(); /// Disables cursor (lock cursor) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DisableCursor(); /// Check if cursor is on the screen [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsCursorOnScreen(); // Drawing-related functions /// Set background color (framebuffer clear color) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearBackground(Color color); /// Setup canvas (framebuffer) to start drawing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginDrawing(); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginMode2D(Camera2D camera); /// Ends 2D mode with custom camera [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndMode2D(); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndMode3D(); /// Initializes render texture for drawing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginTextureMode(RenderTexture2D target); /// Ends drawing to render texture [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndTextureMode(); /// Begin custom shader drawing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginShaderMode(Shader shader); /// End custom shader drawing (use default shader) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndShaderMode(); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndBlendMode(); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndScissorMode(); /// Begin stereo rendering (requires VR simulator) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginVrStereoMode(VrStereoConfig config); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern VrStereoConfig LoadVrStereoConfig(VrDeviceInfo device); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShader(sbyte* vsFileName, sbyte* fsFileName); /// Load shader from code strings and bind default locations [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShaderFromMemory(sbyte* vsCode, sbyte* fsCode); /// Check if a shader is valid (loaded on GPU) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsShaderValid(Shader shader); /// Get shader uniform location [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocation(Shader shader, sbyte* uniformName); /// Get shader attribute location [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocationAttrib(Shader shader, sbyte* attribName); /// Set shader uniform value [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue( Shader shader, int locIndex, void* value, ShaderUniformDataType uniformType ); /// Set shader uniform value vector [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueV( Shader shader, int locIndex, void* value, ShaderUniformDataType uniformType, int count ); /// Set shader uniform value (matrix 4x4) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueMatrix(Shader shader, int locIndex, Matrix4x4 mat); /// Set shader uniform value for texture (sampler2d) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueTexture(Shader shader, int locIndex, Texture2D texture); /// Unload shader from GPU memory (VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadShader(Shader shader); // Screen-space-related functions /// Get a ray trace from screen position (i.e mouse) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Ray GetScreenToWorldRay(Vector2 position, Camera3D camera); /// Get a ray trace from screen position (i.e mouse) in a viewport [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Ray GetScreenToWorldRayEx(Vector2 position, Camera3D camera, int width, int height); /// Get camera transform matrix (view matrix) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraMatrix(Camera3D camera); /// Get camera 2d transform matrix [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraMatrix2D(Camera2D camera); /// Get the screen space position for a 3d world space position [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWorldToScreen(Vector3 position, Camera3D camera); /// Get 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); /// Get 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); /// Get 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTargetFPS(int fps); /// Get current FPS [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetFPS(); /// Get time in seconds for last frame drawn [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetFrameTime(); /// Get elapsed time in seconds since InitWindow() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern double GetTime(); // Misc. functions /// Get a random value between min and max (both included) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetRandomValue(int min, int max); /// Set the seed for the random number generator [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int SetRandomSeed(uint seed); /// Load random values sequence, no values repeated [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int* LoadRandomSequence(uint count, int min, int max); /// Unload random values sequence [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadRandomSequence(int* sequence); /// Takes a screenshot of current screen (saved a .png) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TakeScreenshot(sbyte* fileName); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TraceLog(TraceLogLevel logLevel, sbyte* text); /// Set the current threshold (minimum) log level [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTraceLogLevel(TraceLogLevel logLevel); /// Internal memory allocator [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void* MemAlloc(uint size); /// Internal memory reallocator [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void* MemRealloc(void* ptr, uint size); /// Internal memory free [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MemFree(void* ptr); // Set custom callbacks // WARNING: Callbacks setup is intended for advance users /// Set custom trace log [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTraceLogCallback(delegate* unmanaged[Cdecl] callback); /// Set custom file binary data loader [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetLoadFileDataCallback(delegate* unmanaged[Cdecl] callback); /// Set custom file binary data saver [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSaveFileDataCallback( delegate* unmanaged[Cdecl] callback ); /// Set custom file text data loader [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetLoadFileTextCallback(delegate* unmanaged[Cdecl] callback); /// Set custom file text data saver [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSaveFileTextCallback(delegate* unmanaged[Cdecl] callback); // Files management functions /// Load file data as byte array (read) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern byte* LoadFileData(sbyte* fileName, int* dataSize); /// Unload file data allocated by LoadFileData() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFileData(byte* data); /// Save data to file from byte array (write), returns true on success [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool SaveFileData(sbyte* fileName, void* data, int dataSize); /// Export data to code (.h), returns true on success [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportDataAsCode(byte* data, int dataSize, sbyte* fileName); // Load text data from file (read), returns a '\0' terminated string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* LoadFileText(sbyte* fileName); // Unload file text data allocated by LoadFileText() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFileText(sbyte* text); // Save text data to file (write), string must be '\0' terminated, returns true on success [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool SaveFileText(sbyte* fileName, sbyte* text); // Check if file exists [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool FileExists(sbyte* fileName); // Check if a directory path exists [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool DirectoryExists(sbyte* dirPath); /// Check file extension (including point: .png, .wav) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsFileExtension(sbyte* fileName, sbyte* ext); /// Get file length in bytes [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetFileLength(sbyte* fileName); /// Get pointer to extension for a filename string (includes dot: '.png') [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetFileExtension(sbyte* fileName); /// Get pointer to filename for a path string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetFileName(sbyte* filePath); /// Get filename string without extension (uses static string) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetFileNameWithoutExt(sbyte* filePath); /// Get full path for a given fileName with path (uses static string) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetDirectoryPath(sbyte* filePath); /// Get previous directory path for a given path (uses static string) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetPrevDirectoryPath(sbyte* dirPath); /// Get current working directory (uses static string) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetWorkingDirectory(); /// Get the directory of the running application (uses static string) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetApplicationDirectory(); /// Create directories (including full path requested), returns 0 on success [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int MakeDirectory(sbyte* dirPath); /// Load directory filepaths [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern FilePathList LoadDirectoryFiles(sbyte* dirPath, int* count); /// Load directory filepaths with extension filtering and recursive directory scan. Use 'DIR' in the filter string to include directories in the result [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern FilePathList LoadDirectoryFilesEx(sbyte* basePath, sbyte* filter, CBool scanSubdirs); /// Unload filepaths [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadDirectoryFiles(FilePathList files); /// Check if a given path is a file or a directory [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsPathFile(sbyte* path); /// Check if fileName is valid for the platform/OS [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsFileNameValid(sbyte* fileName); /// Change working directory, return true on success [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ChangeDirectory(sbyte* dir); /// Check if a file has been dropped into window [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsFileDropped(); /// Load dropped filepaths [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern FilePathList LoadDroppedFiles(); /// Unload dropped filepaths [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadDroppedFiles(FilePathList files); /// Get file modification time (last write time) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern long GetFileModTime(sbyte* fileName); // Compression/Encoding functionality /// Compress data (DEFLATE algorithm), memory must be MemFree() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern byte* CompressData(byte* data, int dataSize, int* compDataSize); /// Decompress data (DEFLATE algorithm), memory must be MemFree() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern byte* DecompressData(byte* compData, int compDataSize, int* dataSize); /// Encode data to Base64 string, memory must be MemFree() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* EncodeDataBase64(byte* data, int dataSize, int* outputSize); /// Decode Base64 string data, memory must be MemFree() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern byte* DecodeDataBase64(byte* data, int* outputSize); /// Compute CRC32 hash code [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint ComputeCRC32(byte* data, int dataSize); /// Compute MD5 hash code, returns static int[4] (16 bytes) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint* ComputeMD5(byte* data, int dataSize); /// Compute SHA1 hash code, returns static int[5] (20 bytes) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint* ComputeSHA1(byte* data, int dataSize); /// Open URL with default system browser (if available) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void OpenURL(sbyte* url); // Automation events functionality /// Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern AutomationEventList LoadAutomationEventList(sbyte* fileName); /// Unload automation events list from file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadAutomationEventList(AutomationEventList list); /// Export automation events list as text file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportAutomationEventList(AutomationEventList list, sbyte* fileName); /// Set automation event list to record to [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAutomationEventList(AutomationEventList* list); /// Set automation event internal base frame to start recording [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAutomationEventBaseFrame(int frame); /// Start recording automation events (AutomationEventList must be set) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StartAutomationEventRecording(); /// Stop recording automation events [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopAutomationEventRecording(); /// Play a recorded automation event [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlayAutomationEvent(AutomationEvent ev); //------------------------------------------------------------------------------------ // Input Handling Functions (Module: core) //------------------------------------------------------------------------------------ // Input-related functions: keyboard /// Detect if a key has been pressed once [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsKeyPressed(KeyboardKey key); /// Detect if a key has been pressed again [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsKeyPressedRepeat(KeyboardKey key); /// Detect if a key is being pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsKeyDown(KeyboardKey key); /// Detect if a key has been released once [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsKeyReleased(KeyboardKey key); /// Detect if a key is NOT being pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsKeyUp(KeyboardKey key); /// 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, returns 0 when the queue is empty /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetKeyPressed(); /// /// Get char pressed (unicode), call it multiple times for chars queued, returns 0 when the queue is empty /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCharPressed(); // Input-related functions: gamepads /// Detect if a gamepad is available [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsGamepadAvailable(int gamepad); /// Get gamepad internal name id [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* GetGamepadName(int gamepad); /// Detect if a gamepad button has been pressed once [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsGamepadButtonPressed(int gamepad, GamepadButton button); /// Detect if a gamepad button is being pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsGamepadButtonDown(int gamepad, GamepadButton button); /// Detect if a gamepad button has been released once [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsGamepadButtonReleased(int gamepad, GamepadButton button); /// Detect if a gamepad button is NOT being pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsGamepadButtonUp(int gamepad, GamepadButton button); /// Get the last gamepad button pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGamepadButtonPressed(); /// Get gamepad axis count for a gamepad [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGamepadAxisCount(int gamepad); /// Get 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int SetGamepadMappings(sbyte* mappings); /// Set gamepad vibration for both motors (duration in seconds) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration); // Input-related functions: mouse /// Detect if a mouse button has been pressed once [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsMouseButtonPressed(MouseButton button); /// Detect if a mouse button is being pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsMouseButtonDown(MouseButton button); /// Detect if a mouse button has been released once [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsMouseButtonReleased(MouseButton button); /// Detect if a mouse button is NOT being pressed [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsMouseButtonUp(MouseButton button); /// Get mouse position X [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseX(); /// Get mouse position Y [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseY(); /// Get mouse position XY [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMousePosition(); /// Get mouse delta between frames [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMouseDelta(); /// Set mouse position XY [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMousePosition(int x, int y); /// Set mouse offset [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseOffset(int offsetX, int offsetY); /// Set mouse scaling [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseScale(float scaleX, float scaleY); /// Get mouse wheel movement for X or Y, whichever is larger [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMouseWheelMove(); /// Get mouse wheel movement for both X and Y [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMouseWheelMoveV(); /// Set mouse cursor [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseCursor(MouseCursor cursor); // Input-related functions: touch /// Get touch position X for touch point 0 (relative to screen size) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchX(); /// Get touch position Y for touch point 0 (relative to screen size) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchY(); /// Get touch position XY for a touch point index (relative to screen size) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetTouchPosition(int index); /// Get touch point identifier for given index [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchPointId(int index); /// Get number of touch points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchPointCount(); //------------------------------------------------------------------------------------ // Gestures and Touch Handling Functions (Module: gestures) //------------------------------------------------------------------------------------ /// Enable a set of gestures using flags [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetGesturesEnabled(Gesture flags); /// Check if a gesture has been detected [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsGestureDetected(Gesture gesture); /// Get latest detected gesture [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Gesture GetGestureDetected(); /// Get gesture hold time in seconds [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureHoldDuration(); /// Get gesture drag vector [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGestureDragVector(); /// Get gesture drag angle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureDragAngle(); /// Get gesture pinch delta [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGesturePinchVector(); /// Get gesture pinch angle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGesturePinchAngle(); //------------------------------------------------------------------------------------ // Camera System Functions (Module: camera) //------------------------------------------------------------------------------------ /// Update camera position for selected mode [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateCamera(Camera3D* camera, CameraMode mode); /// Update camera movement/rotation [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateCameraPro(Camera3D* camera, Vector3 movement, Vector3 rotation, float zoom); /// Returns the cameras forward vector (normalized) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 GetCameraForward(Camera3D* camera); /// /// Returns the cameras up vector (normalized)
/// NOTE: The up vector might not be perpendicular to the forward vector ///
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 GetCameraUp(Camera3D* camera); /// Returns the cameras right vector (normalized) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 GetCameraRight(Camera3D* camera); // Camera movement /// Moves the camera in its forward direction [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CameraMoveForward(Camera3D* camera, float distance, CBool moveInWorldPlane); /// Moves the camera in its up direction [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CameraMoveUp(Camera3D* camera, float distance); /// Moves the camera target in its current right direction [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CameraMoveRight(Camera3D* camera, float distance, CBool moveInWorldPlane); /// Moves the camera position closer/farther to/from the camera target [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CameraMoveToTarget(Camera3D* camera, float delta); // Camera rotation /// /// Rotates the camera around its up vector
/// If rotateAroundTarget is false, the camera rotates around its position ///
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CameraYaw(Camera3D* camera, float angle, CBool rotateAroundTarget); /// /// Rotates the camera around its right vector /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CameraPitch( Camera3D* camera, float angle, CBool lockView, CBool rotateAroundTarget, CBool rotateUp ); /// Rotates the camera around its forward vector [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CameraRoll(Camera3D* camera, float angle); /// Returns the camera view matrix [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraViewMatrix(Camera3D* camera); /// Returns the camera projection matrix [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraProjectionMatrix(Camera3D* camera, float aspect); //------------------------------------------------------------------------------------ // 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 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); /// Get texture that is used for shapes drawing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D GetShapesTexture(); /// Get texture source rectangle that is used for shapes drawing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetShapesTextureRectangle(); // Basic shapes drawing functions /// Draw a pixel using geometry [Can be slow, use with care] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixel(int posX, int posY, Color color); /// Draw a pixel using geometry (Vector version) [Can be slow, use with care] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixelV(Vector2 position, Color color); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineV(Vector2 startPos, Vector2 endPos, Color color); /// 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 [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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineBezierQuad( Vector2 startPos, Vector2 endPos, Vector2 controlPos, float thick, Color color ); /// Draw line using cubic bezier curves with 2 control points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineBezierCubic( Vector2 startPos, Vector2 endPos, Vector2 startControlPos, Vector2 endControlPos, float thick, Color color ); /// Draw lines sequence [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineStrip(Vector2* points, int pointCount, Color color); /// 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 [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 [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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleGradient( int centerX, int centerY, float radius, Color inner, Color outer ); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color); /// Draw circle outline (Vector version) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleLinesV(Vector2 center, float radius, Color color); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawEllipseLines(int centerX, int centerY, float radiusH, float radiusV, Color color); /// 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 [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 [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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleV(Vector2 position, Vector2 size, Color color); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color); /// 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 top, Color bottom ); /// 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 left, Color right ); /// Draw a gradient-filled rectangle with custom vertex colors [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleGradientEx( Rectangle rec, Color topLeft, Color bottomLeft, Color topRight, Color bottomRight ); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleLinesEx(Rectangle rec, float lineThick, Color color); /// 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 lines with rounded edges [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRoundedLines( Rectangle rec, float roundness, int segments, Color color ); /// Draw rectangle with rounded edges outline [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRoundedLinesEx( Rectangle rec, float roundness, int segments, float lineThick, Color color ); /// 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!) [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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleFan(Vector2* points, int pointCount, Color color); /// Draw a triangle strip defined by points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleStrip(Vector2* points, int pointCount, Color color); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPolyLines(Vector2 center, int sides, float radius, float rotation, Color color); /// Draw a polygon outline of n sides with extended parameters [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPolyLinesEx( Vector2 center, int sides, float radius, float rotation, float lineThick, Color color ); // Splines drawing functions /// Draw spline: Linear, minimum 2 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineLinear(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: B-Spline, minimum 4 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineBasis(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: Catmull-Rom, minimum 4 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineCatmullRom(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: Quadratic Bezier, minimum 3 points (1 control point): [p1, c2, p3, c4...] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineBezierQuadratic(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: Cubic Bezier, minimum 4 points (2 control points): [p1, c2, c3, p4, c5, c6...] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineBezierCubic(Vector2* points, int pointCount, float thick, Color color); /// Draw spline segment: Linear, 2 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineSegmentLinear(Vector2 p1, Vector2 p2, float thick, Color color); /// Draw spline segment: B-Spline, 4 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineSegmentBasis(Vector2 p1, Vector2 p2, Vector2 p3, Vector2 p4, float thick, Color color); /// Draw spline segment: Catmull-Rom, 4 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineSegmentCatmullRom(Vector2 p1, Vector2 p2, Vector2 p3, Vector2 p4, float thick, Color color); /// Draw spline segment: Quadratic Bezier, 2 points, 1 control point [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineSegmentBezierQuadratic(Vector2 p1, Vector2 c2, Vector2 p3, float thick, Color color); /// Draw spline segment: Cubic Bezier, 2 points, 2 control points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSplineSegmentBezierCubic(Vector2 p1, Vector2 c2, Vector2 c3, Vector2 p4, float thick, Color color); // Spline segment point evaluation functions, for a given t [0.0f .. 1.0f] /// Get (evaluate) spline point: Linear [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetSplinePointLinear(Vector2 startPos, Vector2 endPos, float t); /// Get (evaluate) spline point: B-Spline [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetSplinePointBasis(Vector2 p1, Vector2 p2, Vector2 p3, Vector2 p4, float t); /// Get (evaluate) spline point: Catmull-Rom [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetSplinePointCatmullRom(Vector2 p1, Vector2 p2, Vector2 p3, Vector2 p4, float t); /// Get (evaluate) spline point: Quadratic Bezier [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetSplinePointBezierQuad(Vector2 p1, Vector2 c2, Vector2 p3, float t); /// Get (evaluate) spline point: Cubic Bezier [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetSplinePointBezierCubic(Vector2 p1, Vector2 c2, Vector2 c3, Vector2 p4, float t); // Basic shapes collision detection functions /// Check collision between two rectangles [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); /// Check collision between two circles [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionCircles( Vector2 center1, float radius1, Vector2 center2, float radius2 ); /// Check collision between circle and rectangle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec); /// Check if circle collides with a line created betweeen two points [p1] and [p2] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionCircleLine(Vector2 center, float radius, Vector2 p1, Vector2 p2); /// Check if point is inside rectangle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionPointRec(Vector2 point, Rectangle rec); /// Check if point is inside circle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); /// Check if point is inside a triangle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3); /// Check if point is within a polygon described by array of vertices [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionPointPoly(Vector2 point, Vector2* points, int pointCount); /// /// Check the collision between two lines defined by two points each, returns collision point by reference /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionLines( Vector2 startPos1, Vector2 endPos1, Vector2 startPos2, Vector2 endPos2, Vector2* collisionPoint ); /// /// Check if point belongs to line created between two points [p1] and [p2] with defined margin in pixels [threshold] /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionPointLine(Vector2 point, Vector2 p1, Vector2 p2, int threshold); /// Get collision rectangle for two rectangles collision [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); //------------------------------------------------------------------------------------ // Texture Loading and Drawing Functions (Module: textures) //------------------------------------------------------------------------------------ // Image loading functions // NOTE: This functions do not require GPU access /// Load image from file into CPU memory (RAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImage(sbyte* fileName); /// Load image from RAW file data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageRaw( sbyte* fileName, int width, int height, PixelFormat format, int headerSize ); /// Load image sequence from file (frames appended to image.data) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageAnim(sbyte* fileName, int* frames); /// Load image from memory buffer, fileType refers to extension: i.e. "png" [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageFromMemory(sbyte* fileType, byte* fileData, int dataSize); /// Load image from GPU texture data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageFromTexture(Texture2D texture); /// Load image from screen buffer and (screenshot) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageFromScreen(); /// Check if an image is valid (data and parameters) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsImageValid(Image image); /// Unload image from CPU memory (RAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImage(Image image); /// Export image data to file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportImage(Image image, sbyte* fileName); /// Export image to memory buffer [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern byte* ExportImageToMemory(Image image, sbyte* fileType, int* fileSize); /// Export image as code file defining an array of bytes [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportImageAsCode(Image image, sbyte* fileName); // Image generation functions /// Generate image: plain color [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageColor(int width, int height, Color color); /// Generate image: linear gradient, direction in degrees [0..360], 0=Vertical gradient [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientLinear(int width, int height, int direction, Color start, Color end); /// 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: square gradient [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientSquare( int width, int height, float density, Color inner, Color outer); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageWhiteNoise(int width, int height, float factor); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageCellular(int width, int height, int tileSize); /// Generate image: grayscale image from text data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageText(int width, int height, sbyte* text); // Image manipulation functions /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageFromImage(Image image, Rectangle rec); /// Create an image from a selected channel of another image (GRAYSCALE) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageFromChannel(Image image, int selectedChannel); /// Create an image from text (default font) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageText(sbyte* text, int fontSize, Color color); /// Create an image from text (custom sprite font) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageTextEx(Font font, sbyte* text, float fontSize, float spacing, Color tint); /// Convert image data to desired format [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFormat(Image* image, PixelFormat newFormat); /// Convert image to POT (power-of-two) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageToPOT(Image* image, Color fill); /// Crop an image to a defined rectangle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageCrop(Image* image, Rectangle crop); /// Crop image depending on alpha value [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaCrop(Image* image, float threshold); /// Clear alpha channel to desired color [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaClear(Image* image, Color color, float threshold); /// Apply alpha mask to image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaMask(Image* image, Image alphaMask); /// Premultiply alpha channel [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaPremultiply(Image* image); /// Apply Gaussian blur using a box blur approximation [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageBlurGaussian(Image* image, int blurSize); /// Apply custom square convolution kernel to image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageKernelConvolution(Image* image, float* kernel, int kernelSize); /// Resize image (Bicubic scaling algorithm) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResize(Image* image, int newWidth, int newHeight); /// Resize image (Nearest-Neighbor scaling algorithm) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResizeNN(Image* image, int newWidth, int newHeight); /// Resize canvas and fill with color [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResizeCanvas( Image* image, int newWidth, int newHeight, int offsetX, int offsetY, Color color ); /// Generate all mipmap levels for a provided image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageMipmaps(Image* image); /// Dither image data to 16bpp or lower (Floyd-Steinberg dithering) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDither(Image* image, int rBpp, int gBpp, int bBpp, int aBpp); /// Flip image vertically [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipVertical(Image* image); /// Flip image horizontally [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipHorizontal(Image* image); /// Rotate image by input angle in degrees (-359 to 359) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotate(Image* image, int degrees); /// Rotate image clockwise 90deg [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCW(Image* image); /// Rotate image counter-clockwise 90deg [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCCW(Image* image); /// Modify image color: tint [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorTint(Image* image, Color color); /// Modify image color: invert [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorInvert(Image* image); /// Modify image color: grayscale [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorGrayscale(Image* image); /// Modify image color: contrast (-100 to 100) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorContrast(Image* image, float contrast); /// Modify image color: brightness (-255 to 255) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorBrightness(Image* image, int brightness); /// Modify image color: replace color [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorReplace(Image* image, Color color, Color replace); /// Load color data from image as a Color array (RGBA - 32bit) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color* LoadImageColors(Image image); /// Load colors palette from image as a Color array (RGBA - 32bit) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color* LoadImagePalette(Image image, int maxPaletteSize, int* colorCount); /// Unload color data loaded with LoadImageColors() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImageColors(Color* colors); /// Unload colors palette loaded with LoadImagePalette() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImagePalette(Color* colors); /// Get image alpha border rectangle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetImageAlphaBorder(Image image, float threshold); /// Get image pixel color at (x, y) position [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color GetImageColor(Image image, int x, int y); // Image drawing functions // NOTE: Image software-rendering functions (CPU) /// Clear image background with given color [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageClearBackground(Image* dst, Color color); /// Draw pixel within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawPixel(Image* dst, int posX, int posY, Color color); /// Draw pixel within an image (Vector version) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawPixelV(Image* dst, Vector2 position, Color color); /// Draw line within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawLine( Image* dst, int startPosX, int startPosY, int endPosX, int endPosY, Color color ); /// Draw line within an image (Vector version) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawLineV(Image* dst, Vector2 start, Vector2 end, Color color); /// Draw a line defining thickness within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawLineEx(Image* dst, Vector2 start, Vector2 end, int thick, Color color); /// Draw circle within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircle(Image* dst, int centerX, int centerY, int radius, Color color); /// Draw circle within an image (Vector version) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircleV(Image* dst, Vector2 center, int radius, Color color); /// Draw circle outline within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircleLines(Image* dst, int centerX, int centerY, int radius, Color color); /// Draw circle outline within an image (Vector version) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircleLinesV(Image* dst, Vector2 center, int radius, Color color); /// Draw rectangle within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangle( Image* dst, int posX, int posY, int width, int height, Color color ); /// Draw rectangle within an image (Vector version) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleV(Image* dst, Vector2 position, Vector2 size, Color color); /// Draw rectangle within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleRec(Image* dst, Rectangle rec, Color color); /// Draw rectangle lines within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleLines(Image* dst, Rectangle rec, int thick, Color color); /// Draw triangle within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTriangle(Image* dst, Vector2 v1, Vector2 v2, Vector2 v3, Color color); /// Draw triangle with interpolated colors within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTriangleEx(Image* dst, Vector2 v1, Vector2 v2, Vector2 v3, Color c1, Color c2, Color c3); /// Draw triangle outline within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTriangleLines(Image* dst, Vector2 v1, Vector2 v2, Vector2 v3, Color color); /// Draw a triangle fan defined by points within an image (first vertex is the center) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTriangleFan(Image* dst, Vector2* points, int pointCount, Color color); /// Draw a triangle strip defined by points within an image [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTriangleStrip(Image* dst, Vector2* points, int pointCount, Color color); /// Draw a source image within a destination image (tint applied to source) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDraw(Image* dst, Image src, Rectangle srcRec, Rectangle dstRec, Color tint); /// Draw text (using default font) within an image (destination) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawText(Image* dst, sbyte* text, int x, int y, int fontSize, Color color); /// Draw text (custom sprite font) within an image (destination) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTextEx( Image* dst, Font font, sbyte* text, Vector2 position, float fontSize, float spacing, Color tint ); // Texture loading functions // NOTE: These functions require GPU access /// Load texture from file into GPU memory (VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTexture(sbyte* fileName); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTextureCubemap(Image image, CubemapLayout layout); /// Load texture for rendering (framebuffer) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RenderTexture2D LoadRenderTexture(int width, int height); /// Check if a texture is valid (loaded in GPU) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsTextureValid(Texture2D texture); /// Unload texture from GPU memory (VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadTexture(Texture2D texture); /// Check if a render texture is valid (loaded in GPU) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsRenderTextureValid(RenderTexture2D target); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateTexture(Texture2D texture, void* pixels); /// Update GPU texture rectangle with new data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateTextureRec(Texture2D texture, Rectangle rec, void* pixels); // Texture configuration functions /// Generate GPU mipmaps for a texture [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void GenTextureMipmaps(Texture2D* texture); /// Set texture scaling filter mode [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureFilter(Texture2D texture, TextureFilter filter); /// Set texture wrapping mode [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureWrap(Texture2D texture, TextureWrap wrap); // Texture drawing functions /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureRec(Texture2D texture, Rectangle source, Vector2 position, Color tint); /// 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 source, Rectangle dest, Vector2 origin, float rotation, Color tint ); /// 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 dest, Vector2 origin, float rotation, Color tint ); // Color/pixel related functions /// Get hexadecimal value for a Color (0xRRGGBBAA) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int ColorToInt(Color color); /// Get color normalized as float [0..1] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector4 ColorNormalize(Color color); /// Get color from normalized values [0..1] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorFromNormalized(Vector4 normalized); /// Get HSV values for a Color, hue [0..360], saturation/value [0..1] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 ColorToHSV(Color color); /// Get 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); /// Get color multiplied with another color [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorTint(Color color, Color tint); /// Get color with brightness correction, brightness factor goes from -1.0f to 1.0f [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorBrightness(Color color, float factor); /// Get color with contrast correction, contrast values between -1.0f and 1.0f [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorContrast(Color color, float contrast); /// Get 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); /// Get 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 lerp interpolation between two colors, factor [0.0f..1.0f] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorLerp(Color color1, Color color2, float factor); /// Get Color structure from hexadecimal value [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color GetColor(uint hexValue); /// Get Color from a source pixel pointer of certain format [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color GetPixelColor(void* srcPtr, PixelFormat format); /// Set color formatted into destination pixel pointer [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetPixelColor(void* dstPtr, Color color, PixelFormat 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); //------------------------------------------------------------------------------------ // Font Loading and Text Drawing Functions (Module: text) //------------------------------------------------------------------------------------ // Font loading/unloading functions /// Get the default Font [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font GetFontDefault(); /// Load font from file into GPU memory (VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFont(sbyte* fileName); /// /// Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load /// the default character set, font size is provided in pixels height /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontEx(sbyte* fileName, int fontSize, int* codepoints, int codepointCount); /// 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" [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontFromMemory( sbyte* fileType, byte* fileData, int dataSize, int fontSize, int* codepoints, int codepointCount ); /// Check if a font is valid (font data loaded, WARNING: GPU texture not checked) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsFontValid(Font font); /// Load font data for further use [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern GlyphInfo* LoadFontData( byte* fileData, int dataSize, int fontSize, int* fontChars, int glyphCount, FontType type ); /// Generate image font atlas using chars info [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageFontAtlas( GlyphInfo* chars, Rectangle** recs, int glyphCount, int fontSize, int padding, int packMethod ); /// Unload font chars info data (RAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFontData(GlyphInfo* chars, int glyphCount); /// Unload Font from GPU memory (VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFont(Font font); /// Export font as code file, returns true on success [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportFontAsCode(Font font, sbyte* fileName); // Text drawing functions /// Shows current FPS [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawFPS(int posX, int posY); /// Draw text (using default font) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawText(sbyte* text, int posX, int posY, int fontSize, Color color); /// Draw text using font and additional parameters [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextEx( Font font, sbyte* text, Vector2 position, float fontSize, float spacing, Color tint ); /// Draw text using Font and pro parameters (rotation) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextPro( Font font, sbyte* text, Vector2 position, Vector2 origin, float rotation, float fontSize, float spacing, Color tint ); /// Draw one character (codepoint) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextCodepoint( Font font, int codepoint, Vector2 position, float fontSize, Color tint ); /// Draw multiple characters (codepoint) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextCodepoints( Font font, int* codepoints, int count, Vector2 position, float fontSize, float spacing, Color tint ); // Text font info functions /// Set vertical line spacing when drawing with line-breaks [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextLineSpacing(int spacing); /// Measure string width for default font [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int MeasureText(sbyte* text, int fontSize); /// Measure string size for Font [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 MeasureTextEx(Font font, sbyte* text, float fontSize, float spacing); /// /// Get glyph index position in font for a codepoint (unicode character), fallback to '?' if not found /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGlyphIndex(Font font, int character); /// /// Get glyph font info data for a codepoint (unicode character), fallback to '?' if not found /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern GlyphInfo GetGlyphInfo(Font font, int codepoint); /// /// Get glyph rectangle in font atlas for a codepoint (unicode character), fallback to '?' if not found /// [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetGlyphAtlasRec(Font font, int codepoint); // Text codepoints management functions (unicode characters) /// Load UTF-8 text encoded from codepoints array [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* LoadUTF8(int* codepoints, int length); /// Unload UTF-8 text encoded from codepoints array [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadUTF8(sbyte* text); /// Load all codepoints from a UTF-8 text string, codepoints count returned by parameter [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int* LoadCodepoints(sbyte* text, int* count); /// Unload codepoints data from memory [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadCodepoints(int* codepoints); /// Get total number of codepoints in a UTF8 encoded string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCodepointCount(sbyte* text); /// Get next codepoint in a UTF-8 encoded string, 0x3f('?') is returned on failure [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCodepoint(sbyte* text, int* codepointSize); /// Get next codepoint in a UTF-8 encoded string; 0x3f('?') is returned on failure [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCodepointNext(sbyte* text, int* codepointSize); /// Get previous codepoint in a UTF-8 encoded string, 0x3f('?') is returned on failure [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCodepointPrevious(sbyte* text, int* codepointSize); /// Encode one codepoint into UTF-8 byte array (array length returned as parameter) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* CodepointToUTF8(int codepoint, int* utf8Size); // Text strings management functions (no UTF-8 strings, only byte chars) // NOTE: Some strings allocate memory internally for returned strings, just be careful! /// Copy one string to another, returns bytes copied [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int TextCopy(sbyte* dst, sbyte* src); /// Check if two text string are equal [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool TextIsEqual(sbyte* text1, sbyte* text2); /// Get text length, checks for '\0' ending [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint TextLength(sbyte* text); /// Text formatting with variables (sprintf style) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextFormat(sbyte* text); /// Get a piece of a text string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextSubtext(sbyte* text, int position, int length); /// Replace text string (WARNING: memory must be freed!) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextReplace(sbyte* text, sbyte* replace, sbyte* by); /// Insert text in a position (WARNING: memory must be freed!) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextInsert(sbyte* text, sbyte* insert, int position); /// Join text strings with delimiter [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextJoin(sbyte** textList, int count, sbyte* delimiter); /// Split text into multiple strings [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte** TextSplit(sbyte* text, char delimiter, int* count); /// Append text at specific position and move cursor! [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TextAppend(sbyte* text, sbyte* append, int* position); /// Find first text occurrence within a string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int TextFindIndex(sbyte* text, sbyte* find); /// Get upper case version of provided string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextToUpper(sbyte* text); /// Get lower case version of provided string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextToLower(sbyte* text); /// Get Pascal case notation version of provided string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextToPascal(sbyte* text); /// Get Snake case notation version of provided string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextToSnake(sbyte* text); /// Get Camel case notation version of provided string [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern sbyte* TextToCamel(sbyte* text); /// Get integer value from text (negative values not supported) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int TextToInteger(sbyte* text); /// Get float value from text (negative values not supported) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float TextToFloat(sbyte* text); //------------------------------------------------------------------------------------ // Basic 3d Shapes Drawing Functions (Module: models) //------------------------------------------------------------------------------------ // Basic geometric 3D shapes drawing functions /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPoint3D(Vector3 position, Color color); /// 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!) [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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleStrip3D(Vector3* points, int pointCount, Color color); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeWiresV(Vector3 position, Vector3 size, Color color); /// Draw sphere [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphere(Vector3 centerPos, float radius, Color color); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color); /// 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 with base at startPos and top at endPos [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinderEx( Vector3 startPos, Vector3 endPos, float startRadius, float endRadius, int sides, Color color ); /// 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 cylinder wires with base at startPos and top at endPos [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinderWiresEx( Vector3 startPos, Vector3 endPos, float startRadius, float endRadius, int sides, Color color ); /// Draw a capsule with the center of its sphere caps at startPos and endPos [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCapsule( Vector3 startPos, Vector3 endPos, float radius, int slices, int rings, Color color ); /// Draw capsule wireframe with the center of its sphere caps at startPos and endPos [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCapsuleWires( Vector3 startPos, Vector3 endPos, float radius, int slices, int rings, Color color ); /// Draw a plane XZ [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color); /// 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)) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawGrid(int slices, float spacing); //------------------------------------------------------------------------------------ // Model 3d Loading and Drawing Functions (Module: models) //------------------------------------------------------------------------------------ // Model management functions /// Load model from files (meshes and materials) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModel(sbyte* fileName); /// Load model from generated mesh (default material) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModelFromMesh(Mesh mesh); /// Check if a model is valid (loaded in GPU, VAO/VBOs) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsModelValid(Model model); /// Unload model from memory (RAM and/or VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModel(Model model); /// Compute model bounding box limits (considers all meshes) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern BoundingBox GetModelBoundingBox(Model model); // Model drawing functions /// 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 [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) [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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelWiresEx( Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint ); /// Draw a model as points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelPoints(Model model, Vector3 position, float scale, Color tint); /// Draw a model as points with extended parameters [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelPointsEx( Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint ); /// Draw bounding box (wires) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBoundingBox(BoundingBox box, Color color); /// Draw a billboard texture [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboard( Camera3D camera, Texture2D texture, Vector3 center, float scale, Color tint ); /// Draw a billboard texture defined by source [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboardRec( Camera3D camera, Texture2D texture, Rectangle source, Vector3 position, Vector2 size, Color tint ); /// Draw a billboard texture defined by source and rotation [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboardPro( Camera3D camera, Texture2D texture, Rectangle source, Vector3 position, Vector3 up, Vector2 size, Vector2 origin, float rotation, Color tint ); // Mesh management functions /// Upload vertex data into GPU and provided VAO/VBO ids [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UploadMesh(Mesh* mesh, CBool dynamic); /// Update mesh vertex data in GPU for a specific buffer index [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateMeshBuffer(Mesh mesh, int index, void* data, int dataSize, int offset); /// Unload mesh from memory (RAM and/or VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMesh(Mesh mesh); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawMeshInstanced(Mesh mesh, Material material, Matrix4x4* transforms, int instances); /// Compute mesh bounding box limits [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern BoundingBox GetMeshBoundingBox(Mesh mesh); /// Compute mesh tangents [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void GenMeshTangents(Mesh* mesh); /// Export mesh data to file, returns true on success [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportMesh(Mesh mesh, sbyte* fileName); /// Export mesh as code file (.h) defining multiple arrays of vertex attributes [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportMeshAsCode(Mesh mesh, sbyte* fileName); // Mesh generation functions /// Generate polygonal mesh [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPoly(int sides, float radius); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCube(float width, float height, float length); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices); /// Generate cylinder mesh [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCylinder(float radius, float height, int slices); /// Generate cone/pyramid mesh [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCone(float radius, float height, int slices); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshKnot(float radius, float size, int radSeg, int sides); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Material loading/unloading functions //TODO: safe Helper method /// Load materials from model file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Material* LoadMaterials(sbyte* fileName, int* materialCount); /// Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Material LoadMaterialDefault(); /// Check if a material is valid (shader assigned, map textures loaded in GPU) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsMaterialValid(Material material); /// 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...) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMaterialTexture(Material* material, MaterialMapIndex mapType, Texture2D texture); /// Set material for a mesh [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetModelMeshMaterial(Model* model, int meshId, int materialId); // Model animations loading/unloading functions /// Load model animations from file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern ModelAnimation* LoadModelAnimations(sbyte* fileName, int* animCount); /// Update model animation pose (CPU) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateModelAnimation(Model model, ModelAnimation anim, int frame); /// Update model animation mesh bone matrices (GPU skinning) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateModelAnimationBones(Model model, ModelAnimation anim, int frame); /// Unload animation data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelAnimation(ModelAnimation anim); /// Unload animation array data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelAnimations(ModelAnimation* animations, int animCount); /// Check model animation skeleton match [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsModelAnimationValid(Model model, ModelAnimation anim); // Collision detection functions /// Detect collision between two spheres [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionSpheres( Vector3 center1, float radius1, Vector3 center2, float radius2 ); /// Detect collision between two bounding boxes [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); /// Detect collision between box and sphere [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool CheckCollisionBoxSphere(BoundingBox box, Vector3 center, float radius); /// Detect collision between ray and sphere [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayCollision GetRayCollisionSphere(Ray ray, Vector3 center, float radius); /// Detect collision between ray and box [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayCollision GetRayCollisionBox(Ray ray, BoundingBox box); /// Get collision info between ray and mesh [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayCollision GetRayCollisionMesh(Ray ray, Mesh mesh, Matrix4x4 transform); /// Get collision info between ray and triangle [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayCollision GetRayCollisionTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3); /// Get collision info between ray and quad [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayCollision GetRayCollisionQuad(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3, Vector3 p4); //------------------------------------------------------------------------------------ // Audio Loading and Playing Functions (Module: audio) //------------------------------------------------------------------------------------ // Audio device management functions /// Initialize audio device and context [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void InitAudioDevice(); /// Close the audio device and context [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseAudioDevice(); /// Check if audio device has been initialized successfully [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsAudioDeviceReady(); /// Set master volume (listener) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMasterVolume(float volume); /// Get master volume (listener) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMasterVolume(); // Wave/Sound loading/unloading functions /// Load wave data from file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWave(sbyte* fileName); /// Load wave from memory buffer, fileType refers to extension: i.e. "wav" [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWaveFromMemory(sbyte* fileType, byte* fileData, int dataSize); /// Checks if wave data is valid (data loaded and parameters) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsWaveValid(Wave wave); /// Load sound from file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSound(sbyte* fileName); /// Load sound from wave data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSoundFromWave(Wave wave); /// Create a new sound that shares the same sample data as the source sound, does not own the sound data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSoundAlias(Sound source); /// Checks if a sound is valid (data loaded and buffers initialized) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsSoundValid(Sound sound); /// Update sound buffer with new data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateSound(Sound sound, void* data, int sampleCount); /// Unload wave data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadWave(Wave wave); /// Unload sound [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadSound(Sound sound); /// Unload a sound alias (does not deallocate sample data) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadSoundAlias(Sound alias); /// Export wave data to file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportWave(Wave wave, sbyte* fileName); /// Export wave sample data to code (.h) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool ExportWaveAsCode(Wave wave, sbyte* fileName); // Wave/Sound management functions /// Play a sound [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlaySound(Sound sound); /// Stop playing a sound [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopSound(Sound sound); /// Pause a sound [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseSound(Sound sound); /// Resume a paused sound [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeSound(Sound sound); /// 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 [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsSoundPlaying(Sound sound); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSoundPitch(Sound sound, float pitch); /// Set pan for a sound (0.5 is center) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSoundPan(Sound sound, float pan); /// Copy a wave to a new wave [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave WaveCopy(Wave wave); /// Crop a wave to defined frames range [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void WaveCrop(Wave* wave, int initFrame, int finalFrame); /// Convert wave data to desired format [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void WaveFormat(Wave* wave, int sampleRate, int sampleSize, int channels); /// Get samples data from wave as a floats array [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float* LoadWaveSamples(Wave wave); /// Unload samples data loaded with LoadWaveSamples() [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadWaveSamples(float* samples); // Music management functions /// Load music stream from file [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Music LoadMusicStream(sbyte* fileName); /// Load music stream from memory buffer, fileType refers to extension: i.e. ".wav" [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Music LoadMusicStreamFromMemory(sbyte* fileType, byte* data, int dataSize); /// Checks if a music stream is valid (context and buffers initialized) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsMusicValid(Music music); /// Unload music stream [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMusicStream(Music music); /// Start music playing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlayMusicStream(Music music); /// Check if music is playing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsMusicStreamPlaying(Music music); /// Updates buffers for music streaming [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateMusicStream(Music music); /// Stop music playing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopMusicStream(Music music); /// Pause music playing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseMusicStream(Music music); /// Resume playing paused music [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeMusicStream(Music music); /// Seek music to a position (in seconds) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SeekMusicStream(Music music, float position); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicPitch(Music music, float pitch); /// Set pan for a music (0.5 is center) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicPan(Music music, float pan); /// 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMusicTimePlayed(Music music); // AudioStream management functions /// Init audio stream (to stream raw audio pcm data) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern AudioStream LoadAudioStream(uint sampleRate, uint sampleSize, uint channels); /// Checks if an audio stream is valid (buffers initialized) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsAudioStreamValid(AudioStream stream); /// Unload audio stream and free memory [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadAudioStream(AudioStream stream); /// Update audio stream buffers with data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateAudioStream(AudioStream stream, void* data, int frameCount); /// Check if any audio stream buffers requires refill [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsAudioStreamProcessed(AudioStream stream); /// Play audio stream [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlayAudioStream(AudioStream stream); /// Pause audio stream [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseAudioStream(AudioStream stream); /// Resume audio stream [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeAudioStream(AudioStream stream); /// Check if audio stream is playing [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern CBool IsAudioStreamPlaying(AudioStream 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) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamVolume(AudioStream stream, float volume); /// Set pitch for audio stream (1.0 is base level) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); /// Set pan for audio stream (0.5 is centered) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamPan(AudioStream stream, float pan); /// Default size for new audio streams [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamBufferSizeDefault(int size); /// Audio thread callback to request new data [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamCallback( AudioStream stream, delegate* unmanaged[Cdecl] callback ); /// Attach audio stream processor to stream [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void AttachAudioStreamProcessor( AudioStream stream, delegate* unmanaged[Cdecl] processor ); /// Detach audio stream processor from stream [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DetachAudioStreamProcessor( AudioStream stream, delegate* unmanaged[Cdecl] processor ); /// Attach audio stream processor to the entire audio pipeline [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void AttachAudioMixedProcessor( delegate* unmanaged[Cdecl] processor ); /// Detach audio stream processor from the entire audio pipeline [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DetachAudioMixedProcessor( delegate* unmanaged[Cdecl] processor ); }