diff --git a/Bindings/Easings.cs b/Bindings/Easings.cs index c6e41a3..c208bb0 100644 --- a/Bindings/Easings.cs +++ b/Bindings/Easings.cs @@ -15,96 +15,96 @@ namespace Raylib #region Raylib-cs Functions // Linear Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseLinearNone(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseLinearIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseLinearOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseLinearInOut(float t, float b, float c, float d); // Sine Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseSineIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseSineOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseSineInOut(float t, float b, float c, float d); // Circular Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseCircIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseCircOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseCircInOut(float t, float b, float c, float d); // Cubic Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseCubicIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseCubicOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseCubicInOut(float t, float b, float c, float d); // Quadratic Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseQuadIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseQuadOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseQuadInOut(float t, float b, float c, float d); // Exponential Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseExpoIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseExpoOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseExpoInOut(float t, float b, float c, float d); // Back Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseBackIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseBackOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseBackInOut(float t, float b, float c, float d); // Bounce Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseBounceOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseBounceIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseBounceInOut(float t, float b, float c, float d); // Elastic Easing functions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseElasticIn(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseElasticOut(float t, float b, float c, float d); - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float EaseElasticInOut(float t, float b, float c, float d); #endregion diff --git a/Bindings/Physac.cs b/Bindings/Physac.cs index f2636e2..21c8310 100644 --- a/Bindings/Physac.cs +++ b/Bindings/Physac.cs @@ -123,15 +123,15 @@ namespace Raylib #region Raylib-cs Functions // Initializes physics values, pointers and creates physics loop thread - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void InitPhysics(); // Returns true if physics thread is currently enabled - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsPhysicsEnabled(); // Sets physics global gravity force - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetPhysicsGravity(float x, float y); // Creates a new circle physics body with generic parameters @@ -166,19 +166,19 @@ namespace Raylib } // Adds a force to a physics body - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PhysicsAddForce(PhysicsBodyData body, Vector2 force); // Adds an angular force to a physics body - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PhysicsAddTorque(PhysicsBodyData body, float amount); // Shatters a polygon shape physics body to little physics bodies with explosion force - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PhysicsShatter(PhysicsBodyData body, Vector2 position, float force); // Returns the current amount of created physics bodies - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetPhysicsBodiesCount(); // Returns a physics body of the bodies pool at a specific index @@ -192,31 +192,31 @@ namespace Raylib } // Returns the physics body shape type (PHYSICS_CIRCLE or PHYSICS_POLYGON) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetPhysicsShapeType(int index); // Returns the amount of vertices of a physics body shape - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetPhysicsShapeVerticesCount(int index); // Returns transformed position of a body shape (body position + vertex transformed position) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetPhysicsShapeVertex(PhysicsBodyData body, int vertex); // Sets physics body shape transform based on radians parameter - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetPhysicsBodyRotation(PhysicsBodyData body, float radians); // Unitializes and destroy a physics body - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DestroyPhysicsBody(PhysicsBodyData body); // Destroys created physics bodies and manifolds and resets global values - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ResetPhysics(); // Unitializes physics pointers and closes physics loop thread - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ClosePhysics(); #endregion diff --git a/Bindings/Raygui.cs b/Bindings/Raygui.cs index 2833e4a..95b2744 100644 --- a/Bindings/Raygui.cs +++ b/Bindings/Raygui.cs @@ -209,151 +209,151 @@ namespace Raylib // Global gui modification functions // Enable gui controls (global state) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiEnable(); // Disable gui controls (global state) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiDisable(); // Set gui controls alpha (global state), alpha goes from 0.0f to 1.0f - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiFade(float alpha); // Style set/get functions // Set one style property - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiSetStyleProperty(int guiProperty, int value); // Get one style property - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GuiGetStyleProperty(int guiProperty); // Container/separator controls, useful for controls organization // Window Box control, shows a window that can be closed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiWindowBox(Rectangle bounds, string text); // Group Box control with title name - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiGroupBox(Rectangle bounds, string text); // Line separator control - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiLine(Rectangle bounds, int thick); // Panel control, useful to group controls - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiPanel(Rectangle bounds); // Scroll Panel control - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GuiScrollPanel(Rectangle bounds, Rectangle content, Vector2 viewScroll); // Basic controls set // Label control, shows text - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiLabel(Rectangle bounds, string text); // Button control, returns true when clicked - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiButton(Rectangle bounds, string text); // Label button control, show true when clicked - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiLabelButton(Rectangle bounds, string text); // Image button control, returns true when clicked - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiImageButton(Rectangle bounds, Texture2D texture); // Image button extended control, returns true when clicked - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiImageButtonEx(Rectangle bounds, Texture2D texture, Rectangle texSource, string text); // Toggle Button control, returns true when active - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiToggleButton(Rectangle bounds, string text, bool toggle); // Toggle Group control, returns toggled button index - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GuiToggleGroup(Rectangle bounds, string text, int count, int active); // Check Box control, returns true when active - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiCheckBox(Rectangle bounds, bool isChecked); // Check Box control with text, returns true when active - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiCheckBoxEx(Rectangle bounds, bool isChecked, string text); // Combo Box control, returns selected item index - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GuiComboBox(Rectangle bounds, string text, int count, int active); // Dropdown Box control, returns selected item - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GuiDropdownBox(Rectangle bounds, string[] text, int count, int active); // Spinner control, returns selected value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GuiSpinner(Rectangle bounds, int value, int maxValue, int btnWidth); // Value Box control, updates input text with numbers - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GuiValueBox(Rectangle bounds, int value, int maxValue); // Text Box control, updates input text - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiTextBox(Rectangle bounds, char text, int textSize, bool freeEdit); // Text Box control with multiple lines - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiTextBoxMulti(Rectangle bounds, string text, int textSize, bool editMode); // Slider control, returns selected value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GuiSlider(Rectangle bounds, float value, float minValue, float maxValue); // Slider control, returns selected value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GuiSliderEx(Rectangle bounds, float value, float minValue, float maxValue, string text, bool showValue); // Slider Bar control, returns selected value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GuiSliderBar(Rectangle bounds, float value, float minValue, float maxValue); // Slider Bar control, returns selected value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GuiSliderBarEx(Rectangle bounds, float value, float minValue, float maxValue, string text, bool showValue); // Progress Bar control, shows current progress value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GuiProgressBar(Rectangle bounds, float value, float minValue, float maxValue); // Progress Bar control, shows current progress value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GuiProgressBarEx(Rectangle bounds, float value, float minValue, float maxValue, bool showValue); // Status Bar control, shows info text - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiStatusBar(Rectangle bounds, string text, int offsetX); // Dummy control for placeholders - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GuiDummyRec(Rectangle bounds, string text); // Advance controls set // List View control, returns selected list element index - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GuiListView(Rectangle bounds, string text, int count, int active); // Color Picker control - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Color GuiColorPicker(Rectangle bounds, Color color); // Message Box control, displays a message - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool GuiMessageBox(Rectangle bounds, string windowTitle, string message); #endregion diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index ca97ebc..ff22196 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -689,59 +689,59 @@ namespace Raylib #region Raylib-cs Functions // Initialize window and OpenGL context - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr InitWindow(int width, int height, string title); // Close window and unload OpenGL context - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void CloseWindow(); // Check if window has been initialized successfully - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsWindowReady(); // Check if KEY_ESCAPE pressed or Close icon pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool WindowShouldClose(); // Check if window has been minimized (or lost focus) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsWindowMinimized(); // Toggle fullscreen mode (only PLATFORM_DESKTOP) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ToggleFullscreen(); // Set icon for window (only PLATFORM_DESKTOP) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowIcon(Image image); // Set title for window (only PLATFORM_DESKTOP) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowTitle(string title); // Set window position on screen (only PLATFORM_DESKTOP) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowPosition(int x, int y); // Set monitor for the current window (fullscreen mode) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMonitor(int monitor); // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMinSize(int width, int height); // Set window dimensions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowSize(int width, int height); // Get current screen width - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenWidth(); // Get current screen height - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenHeight(); // Get number of connected monitors @@ -769,1295 +769,1295 @@ namespace Raylib public static extern string GetMonitorName(int monitor); // Get current clipboard text - //[DllImport(nativeLibName)] + //[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] //public static extern string GetClipboard(); // Set current clipboard text - //[DllImport(nativeLibName)] + //[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] //public static extern void SetClipboard(string text); // Shows cursor - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ShowCursor(); // Hides cursor - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void HideCursor(); // Check if cursor is not visible - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsCursorHidden(); // Enables cursor (unlock cursor) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EnableCursor(); // Disables cursor (lock cursor) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DisableCursor(); // Set background color (framebuffer clear color) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ClearBackground(Color color); // Setup canvas (framebuffer) to start drawing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void BeginDrawing(); // End canvas drawing and swap buffers (double buffering) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EndDrawing(); // Initialize 2D mode with custom camera (2D) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void BeginMode2D(Camera2D camera); // Ends 2D mode with custom camera - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EndMode2D(); // Initializes 3D mode with custom camera (3D) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void BeginMode3D(Camera3D camera); // Ends 3D mode and returns to default 2D orthographic mode - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EndMode3D(); // Initializes render texture for drawing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void BeginTextureMode(RenderTexture2D target); // Ends drawing to render texture - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EndTextureMode(); // Returns a ray trace from mouse position - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera); // Returns the screen space position for a 3d world space position - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWorldToScreen(Vector3 position, Camera3D camera); // Returns camera transform matrix (view matrix) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix GetCameraMatrix(Camera3D camera); // Set target FPS (maximum) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetTargetFPS(int fps); // Returns current FPS - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetFPS(); // Returns time in seconds for last frame drawn - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetFrameTime(); // Returns elapsed time in seconds since InitWindow() - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern double GetTime(); // Returns hexadecimal value for a Color - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int ColorToInt(Color color); // Returns color normalized as float [0..1] - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector4 ColorNormalize(Color color); // Returns HSV values for a Color - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 ColorToHSV(Color color); // Returns a Color struct from hexadecimal value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Color GetColor(int hexValue); // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Color Fade(Color color, float alpha); // Activate raylib logo at startup (can be done with flags) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ShowLogo(); // Setup window configuration flags (view FLAGS) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetConfigFlags(byte flags); // Enable trace log message types (bit flags based) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetTraceLog(byte types); // Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void TraceLog(int logType, string text, params object[] args); // Takes a screenshot of current screen (saved a .png) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void TakeScreenshot(string fileName); // Returns a random value between min and max (both included) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetRandomValue(int min, int max); // Check file extension - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsFileExtension(string fileName, string ext); // Get pointer to extension for a filename string - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string GetExtension(string fileName); // Get pointer to filename for a path string - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string GetFileName(string filePath); // Get full path for a given fileName (uses static string) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string GetDirectoryPath(string fileName); // Get current working directory (uses static string) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string GetWorkingDirectory(); // Change working directory, returns true if success - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool ChangeDirectory(string dir); // Check if a file has been dropped into window - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsFileDropped(); // Get dropped files names - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern char[] GetDroppedFiles(int[] count); // Clear dropped files paths buffer - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ClearDroppedFiles(); // Save integer value to storage file (to defined position) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void StorageSaveValue(int position, int value); // Load integer value from storage file (from defined position) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int StorageLoadValue(int position); // Detect if a key has been pressed once - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsKeyPressed(int key); // Detect if a key is being pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsKeyDown(int key); // Detect if a key has been released once - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsKeyReleased(int key); // Detect if a key is NOT being pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsKeyUp(int key); // Get latest key pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetKeyPressed(); // Set a custom key to exit program (default is ESC) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetExitKey(int key); // Detect if a gamepad is available - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsGamepadAvailable(int gamepad); // Check gamepad name (if available) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsGamepadName(int gamepad, string name); // Return gamepad internal name id - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string GetGamepadName(int gamepad); // Detect if a gamepad button has been pressed once - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsGamepadButtonPressed(int gamepad, int button); // Detect if a gamepad button is being pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsGamepadButtonDown(int gamepad, int button); // Detect if a gamepad button has been released once - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsGamepadButtonReleased(int gamepad, int button); // Detect if a gamepad button is NOT being pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsGamepadButtonUp(int gamepad, int button); // Get the last gamepad button pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetGamepadButtonPressed(); // Return gamepad axis count for a gamepad - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetGamepadAxisCount(int gamepad); // Return axis movement value for a gamepad axis - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetGamepadAxisMovement(int gamepad, int axis); // Detect if a mouse button has been pressed once - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsMouseButtonPressed(int button); // Detect if a mouse button is being pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsMouseButtonDown(int button); // Detect if a mouse button has been released once - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsMouseButtonReleased(int button); // Detect if a mouse button is NOT being pressed - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsMouseButtonUp(int button); // Returns mouse position X - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseX(); // Returns mouse position Y - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseY(); // Returns mouse position XY - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMousePosition(); // Set mouse position XY - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMousePosition(Vector2 position); // Set mouse scaling - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseScale(float scale); // Returns mouse wheel movement Y - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseWheelMove(); // Returns touch position X for touch point 0 (relative to screen size) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchX(); // Returns touch position Y for touch point 0 (relative to screen size) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchY(); // Returns touch position XY for a touch point index (relative to screen size) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetTouchPosition(int index); // Enable a set of gestures using flags - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetGesturesEnabled(uint gestureFlags); // Check if a gesture have been detected - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsGestureDetected(int gesture); // Get latest detected gesture - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetGestureDetected(); // Get touch points count - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchPointsCount(); // Get gesture hold time in milliseconds - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureHoldDuration(); // Get gesture drag vector - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGestureDragVector(); // Get gesture drag angle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureDragAngle(); // Get gesture pinch delta - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGesturePinchVector(); // Get gesture pinch angle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetGesturePinchAngle(); // Set camera mode (multiple camera modes available) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraMode(Camera3D camera, int mode); // Update camera position for selected mode - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateCamera(Camera3D camera); // Set camera pan key to combine with mouse movement (free camera) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraPanControl(int panKey); // Set camera alt key to combine with mouse movement (free camera) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraAltControl(int altKey); // Set camera smooth zoom key to combine with mouse (free camera) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraSmoothZoomControl(int szKey); // Set camera move controls (1st person and 3rd person cameras) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraMoveControls(int frontKey, int backKey, int rightKey, int leftKey, int upKey, int downKey); // Draw a pixel - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixel(int posX, int posY, Color color); // Draw a pixel (Vector version) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixelV(Vector2 position, Color color); // Draw a line - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineV(Vector2 startPos, Vector2 endPos, Color color); // Draw a line defining thickness - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color); // Draw a color-filled circle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircle(int centerX, int centerY, float radius, Color color); // Draw a gradient-filled circle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2); // Draw a color-filled circle (Vector version) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleV(Vector2 center, float radius, Color color); // Draw circle outline - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color); // Draw a color-filled rectangle - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleV(Vector2 position, Vector2 size, Color color); // Draw a color-filled rectangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRec(Rectangle rec, Color color); // Draw a color-filled rectangle with pro parameters - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2); // Draw a horizontal-gradient-filled rectangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2); // Draw a gradient-filled rectangle with custom vertex colors - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4); // Draw rectangle outline - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); // Draw a color-filled triangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw triangle outline - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw a regular polygon (Vector version) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color); // Draw a closed polygon defined by points - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPolyEx(Vector2[] points, int numPoints, Color color); // Draw polygon lines - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPolyExLines(Vector2[] points, int numPoints, Color color); // Check collision between two rectangles - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); // Check collision between two circles - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); // Check collision between circle and rectangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec); // Get collision rectangle for two rectangles collision - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); // Check if point is inside rectangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec); // Check if point is inside circle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); // Check if point is inside a triangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3); // Load image from file into CPU memory (RAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImage(string fileName); // Load image from Color array data (RGBA - 32bit) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageEx(Color pixels, int width, int height); // Load image from raw data with parameters - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImagePro(IntPtr data, int width, int height, int format); // Load image from RAW file data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageRaw(string fileName, int width, int height, int format, int headerSize); // Export image as a PNG file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ExportImage(string fileName, Image image); // Load texture from file into GPU memory (VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTexture(string fileName); // Load texture from image data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTextureFromImage(Image image); // Load texture for rendering (framebuffer) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern RenderTexture2D LoadRenderTexture(int width, int height); // Unload image from CPU memory (RAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImage(Image image); // Unload texture from GPU memory (VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadTexture(Texture2D texture); // Unload render texture from GPU memory (VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadRenderTexture(RenderTexture2D target); // Get pixel data from image as a Color struct array - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Color[] GetImageData(Image image); // Get pixel data from image as Vector4 array (float normalized) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector4[] GetImageDataNormalized(Image image); // Get pixel data size in bytes (image or texture) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetPixelDataSize(int width, int height, int format); // Get pixel data from GPU texture and return an Image - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GetTextureData(Texture2D texture); // Update GPU texture with new data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateTexture(Texture2D texture, byte[] pixels); // Create an image duplicate (useful for transformations) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageCopy(Image image); // Convert image to POT (power-of-two) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageToPOT(Image image, Color fillColor); // Convert image data to desired format - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFormat(Image image, int newFormat); // Apply alpha mask to image - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaMask(Image image, Image alphaMask); // Clear alpha channel to desired color - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaClear(Image image, Color color, float threshold); // Crop image depending on alpha value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaCrop(Image image, float threshold); // Premultiply alpha channel - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaPremultiply(Image image); // Crop an image to a defined rectangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageCrop(Image image, Rectangle crop); // Resize image (bilinear filtering) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResize(Image image, int newWidth, int newHeight); // Resize image (Nearest-Neighbor scaling algorithm) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResizeNN(Image image, int newWidth,int newHeight); // Resize canvas and fill with color - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageMipmaps(Image image); // Dither image data to 16bpp or lower (Floyd-Steinberg dithering) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDither(Image image, int rBpp, int gBpp, int bBpp, int aBpp); // Create an image from text (default font) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageText(string text, int fontSize, Color color); // Create an image from text (custom sprite font) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageTextEx(Font font, string text, float fontSize, float spacing, Color tint); // Draw a source image within a destination image - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDraw(Image dst, Image src, Rectangle srcRec, Rectangle dstRec); // Draw rectangle within an image - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangle(Image dst, Vector2 position, Rectangle rec, Color color); // Draw text (default font) within an image (destination) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawText(Image dst, Vector2 position, string text, int fontSize, Color color); // Draw text (custom sprite font) within an image (destination) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTextEx(Image dst, Vector2 position, Font font, string text, float fontSize, float spacing, Color color); // Flip image vertically - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipVertical(Image image); // Flip image horizontally - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipHorizontal(Image image); // Rotate image clockwise 90deg - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCW(Image image); // Rotate image counter-clockwise 90deg - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCCW(Image image); // Modify image color: tint - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorTint(Image image, Color color); // Modify image color: invert - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorInvert(Image image); // Modify image color: grayscale - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorGrayscale(Image image); // Modify image color: contrast (-100 to 100) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorContrast(Image image, float contrast); // Modify image color: brightness (-255 to 255) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorBrightness(Image image, int brightness); // Modify image color: replace color - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorReplace(Image image, Color color, Color replace); // Generate image: plain color - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageColor(int width, int height, Color color); // Generate image: vertical gradient - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientV(int width, int height, Color top, Color bottom); // Generate image: horizontal gradient - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientH(int width, int height, Color left, Color right); // Generate image: radial gradient - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); // Generate image: checked - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageWhiteNoise(int width, int height, float factor); // Generate image: perlin noise - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageCellular(int width, int height, int tileSize); // Generate GPU mipmaps for a texture - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void GenTextureMipmaps(Texture2D texture); // Set texture scaling filter mode - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureFilter(Texture2D texture, int filterMode); // Set texture wrapping mode - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureWrap(Texture2D texture, int wrapMode); // Draw a Texture2D - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint); // Draw a Texture2D with extended parameters - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint); // Draw a part of a texture defined by a rectangle with 'pro' parameters - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint); // Get the default Font - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Font GetFontDefault(); // Load font from file into GPU memory (VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFont(string fileName); // Load font from file with extended parameters - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontEx(string fileName, int fontSize, int charsCount, int[] fontChars); // Load font data for further use - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern CharInfo[] LoadFontData(string fileName, int fontSize, int[] fontChars, int charsCount, bool sdf); // Generate image font atlas using chars info - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageFontAtlas(CharInfo[] chars, int fontSize, int charsCount, int padding, int packMethod); // Unload Font from GPU memory (VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFont(Font font); // Shows current FPS - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawFPS(int posX, int posY); // Draw text (using default font) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawText(string text, int posX, int posY, int fontSize, Color color); // Draw text using font and additional parameters - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextEx(Font font, string text, Vector2 position, float fontSize, float spacing, Color tint); // Measure string width for default font - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int MeasureText(string text, int fontSize); // Measure string size for Font - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 MeasureTextEx(Font font, string text, float fontSize, float spacing); // Formatting of text with variables to 'embed' - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string FormatText(string text, params object[] args); // Get a piece of a text string - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string SubText(string text, int position, int length); // Get index position for a unicode character on font - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetGlyphIndex(Font font, int character); // Draw a line in 3D world space - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); // Draw a circle in 3D world space - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color); // Draw cube - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color); // Draw cube wires - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeWires(Vector3 position, float width, float height, float length, Color color); // Draw cube textured - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height, float length, Color color); // Draw sphere - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphere(Vector3 centerPos, float radius, Color color); // Draw sphere with extended parameters - [DllImport(nativeLibName)] + [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)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a cylinder/cone wires - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a plane XZ - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color); // Draw a ray line - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRay(Ray ray, Color color); // Draw a grid (centered at (0, 0, 0)) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawGrid(int slices, float spacing); // Draw simple gizmo - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawGizmo(Vector3 position); // Load model from files (mesh and material) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModel(string fileName); // Load model from generated mesh - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModelFromMesh(Mesh mesh); // Unload model from memory (RAM and/or VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModel(Model model); // Load mesh from file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh LoadMesh(string fileName); // Unload mesh from memory (RAM and/or VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMesh(Mesh mesh); // Export mesh as an OBJ file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ExportMesh(string fileName, Mesh mesh); // Compute mesh bounding box limits - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern BoundingBox MeshBoundingBox(Mesh mesh); // Compute mesh tangents - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void MeshTangents(Mesh mesh); // Compute mesh binormals - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void MeshBinormals(Mesh mesh); // Generate plane mesh (with subdivisions) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ); // Generate cuboid mesh - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCube(float width, float height, float length); // Generate sphere mesh (standard sphere) - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices); // Generate cylinder mesh - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCylinder(float radius, float height, int slices); // Generate torus mesh - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides); // Generate trefoil knot mesh - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshHeightmap(Image heightmap, Vector3 size); // Generate cubes-based map mesh from image data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Load material from file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Material LoadMaterial(string fileName); // Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Material LoadMaterialDefault(); // Unload material from GPU memory (VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMaterial(Material material); // Draw a model (with texture if set) - [DllImport(nativeLibName)] + [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)] + [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)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw bounding box (wires) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBoundingBox(BoundingBox box, Color color); // Draw a billboard texture - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboard(Camera3D camera, Texture2D texture, Vector3 center, float size, Color tint); // Draw a billboard texture defined by sourceRec - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboardRec(Camera3D camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint); // Detect collision between two spheres - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB); // Detect collision between two bounding boxes - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); // Detect collision between box and sphere - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere); // Detect collision between ray and sphere - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius); // Detect collision between ray and sphere, returns collision point - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, Vector3 collisionPoint); // Detect collision between ray and box - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box); // Get collision info between ray and model - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayModel(Ray ray, Model model); // Get collision info between ray and triangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3); // Get collision info between ray and ground plane (Y-normal plane) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight); // Load chars array from text file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern string LoadText(string fileName); // Load shader from files and bind default locations - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShader(string vsFileName, string fsFileName); // Load shader from code strings and bind default locations - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShaderCode(string vsCode, string fsCode); // Unload shader from GPU memory (VRAM) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadShader(Shader shader); // Get default shader - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Shader GetShaderDefault(); // Get default texture - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D GetTextureDefault(); // Get shader uniform location - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocation(Shader shader, string uniformName); // Set shader uniform value (float) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, float[] value, int size); // Set shader uniform value (int) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValuei(Shader shader, int uniformLoc, int[] value, int size); // Set shader uniform value (matrix 4x4) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix mat); // Set a custom projection matrix (replaces internal projection matrix) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMatrixProjection(Matrix proj); // Set a custom modelview matrix (replaces internal modelview matrix) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMatrixModelview(Matrix view); // Get internal modelview matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix GetMatrixModelview(); // Generate cubemap texture from HDR texture - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size); // Generate irradiance texture using cubemap data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D GenTextureIrradiance(Shader shader, Texture2D cubemap, int size); // Generate prefilter texture using cubemap data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D GenTexturePrefilter(Shader shader, Texture2D cubemap, int size); // Generate BRDF texture using cubemap data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D GenTextureBRDF(Shader shader, Texture2D cubemap, int size); // Begin custom shader drawing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void BeginShaderMode(Shader shader); // End custom shader drawing (use default shader) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EndShaderMode(); // Begin blending mode (alpha, additive, multiplied) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void BeginBlendMode(int mode); // End blending mode (reset to default: alpha blending) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EndBlendMode(); // Get VR device information for some standard devices - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern VrDeviceInfo GetVrDeviceInfo(int vrDeviceType); // Init VR simulator for selected device parameters - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void InitVrSimulator(VrDeviceInfo info); // Close VR simulator for current device - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void CloseVrSimulator(); // Detect if VR simulator is ready - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsVrSimulatorReady(); // Set VR distortion shader for stereoscopic rendering - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetVrDistortionShader(Shader shader); // Update VR tracking (position and orientation) and camera - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateVrTracking(Camera3D camera); // Enable/Disable VR experience - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ToggleVrMode(); // Begin VR simulator stereo rendering - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void BeginVrDrawing(); // End VR simulator stereo rendering - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void EndVrDrawing(); // Initialize audio device and context - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void InitAudioDevice(); // Close the audio device and context - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void CloseAudioDevice(); // Check if audio device has been initialized successfully - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsAudioDeviceReady(); // Set master volume (listener) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMasterVolume(float volume); // Load wave data from file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWave(string fileName); // Load wave data from raw array data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWaveEx(IntPtr data, int sampleCount, int sampleRate, int sampleSize, int channels); // Load sound from file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSound(string fileName); // Load sound from wave data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSoundFromWave(Wave wave); // Update sound buffer with new data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateSound(Sound sound, byte[] data, int samplesCount); // Unload wave data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadWave(Wave wave); // Unload sound - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadSound(Sound sound); // Play a sound - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PlaySound(Sound sound); // Pause a sound - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PauseSound(Sound sound); // Resume a paused sound - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeSound(Sound sound); // Stop playing a sound - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void StopSound(Sound sound); // Check if a sound is currently playing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsSoundPlaying(Sound sound); // Set volume for a sound (1.0 is max level) - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetSoundPitch(Sound sound, float pitch); // Convert wave data to desired format - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void WaveFormat(out Wave wave, int sampleRate, int sampleSize, int channels); // Copy a wave to a new wave - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Wave WaveCopy(Wave wave); // Crop a wave to defined samples range - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void WaveCrop(out Wave wave, int initSample, int finalSample); // Get samples data from wave as a floats array - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float[] GetWaveData(Wave wave); // Load IntPtr stream from file - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadMusicStream(string fileName); // Unload IntPtr stream - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMusicStream(IntPtr music); // Start IntPtr playing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PlayMusicStream(IntPtr music); // Updates buffers for IntPtr streaming - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateMusicStream(IntPtr music); // Stop IntPtr playing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void StopMusicStream(IntPtr music); // Pause IntPtr playing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PauseMusicStream(IntPtr music); // Resume playing paused music - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeMusicStream(IntPtr music); // Check if IntPtr is playing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsMusicPlaying(IntPtr music); // Set volume for IntPtr (1.0 is max level) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicVolume(IntPtr music, float volume); // Set pitch for a IntPtr (1.0 is base level) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicPitch(IntPtr music, float pitch); // Set IntPtr loop count (loop repeats) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicLoopCount(IntPtr music, int count); // Get IntPtr time length (in seconds) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetMusicTimeLength(IntPtr music); // Get current IntPtr time played (in seconds) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetMusicTimePlayed(IntPtr music); // Init audio stream (to stream raw audio pcm data) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels); // Update audio stream buffers with data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateAudioStream(AudioStream stream, byte[] data, int samplesCount); // Close audio stream and free memory - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void CloseAudioStream(AudioStream stream); // Check if any audio stream buffers requires refill - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsAudioBufferProcessed(AudioStream stream); // Play audio stream - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PlayAudioStream(AudioStream stream); // Pause audio stream - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void PauseAudioStream(AudioStream stream); // Resume audio stream - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeAudioStream(AudioStream stream); // Check if audio stream is playing - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern bool IsAudioStreamPlaying(AudioStream stream); // Stop audio stream - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void StopAudioStream(AudioStream stream); // Set volume for audio stream (1.0 is max level) - [DllImport(nativeLibName)] + [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)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); #endregion diff --git a/Bindings/Raymath.cs b/Bindings/Raymath.cs index 811d2c4..d453684 100644 --- a/Bindings/Raymath.cs +++ b/Bindings/Raymath.cs @@ -300,299 +300,299 @@ namespace Raylib #region Raylib-cs Functions // Clamp float value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Clamp(float value, float min, float max); // Vector with components value 0.0f - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Zero(); // Vector with components value 1.0f - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2One(); // Add two vectors (v1 + v2) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Add(Vector2 v1, Vector2 v2); // Subtract two vectors (v1 - v2) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Subtract(Vector2 v1, Vector2 v2); // Calculate vector length - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Vector2Length(Vector2 v); // Calculate two vectors dot product - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Vector2DotProduct(Vector2 v1, Vector2 v2); // Calculate distance between two vectors - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Vector2Distance(Vector2 v1, Vector2 v2); // Calculate angle from two vectors in X-axis - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Vector2Angle(Vector2 v1, Vector2 v2); // Scale vector (multiply by value) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Scale(Vector2 v, float scale); // Negate vector - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Negate(Vector2 v); // Divide vector by a float value - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Divide(Vector2 v, float div); // Normalize provided vector - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Normalize(Vector2 v); // Vector with components value 0.0f - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Zero(); // Vector with components value 1.0f - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3One(); // Add two vectors - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Add(Vector3 v1, Vector3 v2); // Substract two vectors - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Subtract(Vector3 v1, Vector3 v2); // Multiply vector by scalar - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Multiply(Vector3 v, float scalar); // Multiply vector by vector - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3MultiplyV(Vector3 v1, Vector3 v2); // Calculate two vectors cross product - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3CrossProduct(Vector3 v1, Vector3 v2); // Calculate one vector perpendicular vector - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Perpendicular(Vector3 v); // Calculate vector length - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Vector3Length(Vector3 v); // Calculate two vectors dot product - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Vector3DotProduct(Vector3 v1, Vector3 v2); // Calculate distance between two vectors - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float Vector3Distance(Vector3 v1, Vector3 v2); // Scale provided vector - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Scale(Vector3 v, float scale); // Negate provided vector (invert direction) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Negate(Vector3 v); // Normalize provided vector - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Normalize(Vector3 v); // Orthonormalize provided vectors // Makes vectors normalized and orthogonal to each other // Gram-Schmidt function implementation - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void Vector3OrthoNormalize(out Vector3 v1, out Vector3 v2); // Transforms a Vector3 by a given Matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Transform(Vector3 v, Matrix mat); // Transform a vector by quaternion rotation - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3RotateByQuaternion(Vector3 v, Quaternion q); // Calculate linear interpolation between two vectors - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Lerp(Vector3 v1, Vector3 v2, float amount); // Calculate reflected vector to normal - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Reflect(Vector3 v, Vector3 normal); // Return min value for each pair of components - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Min(Vector3 v1, Vector3 v2); // Return max value for each pair of components - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Max(Vector3 v1, Vector3 v2); // Compute barycenter coordinates (u, v, w) for point p with respect to triangle (a, b, c) // NOTE: Assumes P is on the plane of the triangle - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Barycenter(Vector3 p, Vector3 a, Vector3 b, Vector3 c); // Returns Vector3 as float array - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float[] Vector3ToFloatV(Vector3 v); // Compute matrix determinant - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float MatrixDeterminant(Matrix mat); // Returns the trace of the matrix (sum of the values along the diagonal) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float MatrixTrace(Matrix mat); // Transposes provided matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixTranspose(Matrix mat); // Invert provided matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixInvert(Matrix mat); // Normalize provided matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixNormalize(Matrix mat); // Returns identity matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixIdentity(); // Add two matrices - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixAdd(Matrix left, Matrix right); // Substract two matrices (left - right) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixSubstract(Matrix left, Matrix right); // Create rotation matrix from axis and angle // NOTE: Angle should be provided in radians - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixTranslate(float x, float y, float z); // Returns x-rotation matrix (angle in radians) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixRotate(Vector3 axis, float angle); // Returns x-rotation matrix (angle in radians) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixRotateX(float angle); // Returns y-rotation matrix (angle in radians) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixRotateY(float angle); // Returns z-rotation matrix (angle in radians) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixRotateZ(float angle); // Returns scaling matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixScale(float x, float y, float z); // Returns two matrix multiplication // NOTE: When multiplying matrices... the order matters! - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixMultiply(Matrix left, Matrix right); // Returns perspective projection matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixFrustum(double left, double right, double bottom, double top, double near, double far); // Returns perspective projection matrix // NOTE: Angle should be provided in radians - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixPerspective(double fovy, double aspect, double near, double far); // Returns orthographic projection matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixOrtho(double left, double right, double bottom, double top, double near, double far); // Returns camera look-at matrix (view matrix) - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix MatrixLookAt(Vector3 eye, Vector3 target, Vector3 up); // Returns float array of matrix data - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float[] MatrixToFloatV(Matrix mat); // Returns identity quaternion - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionIdentity(); // Computes the length of a quaternion - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float QuaternionLength(Quaternion q); // Normalize provided quaternion - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionNormalize(Quaternion q); // Invert provided quaternion - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionInvert(Quaternion q); // Calculate two quaternion multiplication - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionMultiply(Quaternion q1, Quaternion q2); // Calculate linear interpolation between two quaternions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionLerp(Quaternion q1, Quaternion q2, float amount); // Calculate slerp-optimized interpolation between two quaternions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionNlerp(Quaternion q1, Quaternion q2, float amount); // Calculates spherical linear interpolation between two quaternions - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionSlerp(Quaternion q1, Quaternion q2, float amount); // Calculate quaternion based on the rotation from one vector to another - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionFromVector3ToVector3(Vector3 from, Vector3 to); // Returns a quaternion for a given rotation matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionFromMatrix(Matrix mat); // Returns a matrix for a given quaternion - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Matrix QuaternionToMatrix(Quaternion q); // Returns rotation quaternion for an angle and axis // NOTE: angle must be provided in radians - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionFromAxisAngle(Vector3 axis, float angle); // Returns the rotation angle and axis for a given quaternion - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void QuaternionToAxisAngle(Quaternion q, out Vector3 outAxis, float[] outAngle); // Returns he quaternion equivalent to Euler angles - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionFromEuler(float roll, float pitch, float yaw); // Return the Euler angles equivalent to quaternion (roll, pitch, yaw) // NOTE: Angles are returned in a Vector3 struct in degrees - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 QuaternionToEuler(Quaternion q); // Transform a quaternion given a transformation matrix - [DllImport(nativeLibName)] + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat); #endregion