bindbc.raylib.bind.core

Undocumented in source.

Members

Aliases

pBeginDrawing
alias pBeginDrawing = void function()

Setup canvas (framebuffer) to start drawing

pBeginMode2D
alias pBeginMode2D = void function(Camera2D camera)

Initialize 2D mode with custom camera (2D)

pBeginMode3D
alias pBeginMode3D = void function(Camera3D camera)

Initializes 3D mode with custom camera (3D)

pBeginScissorMode
alias pBeginScissorMode = void function(int x, int y, int width, int height)

Begin scissor mode (define screen area for following drawing)

pBeginTextureMode
alias pBeginTextureMode = void function(RenderTexture2D target)

Initializes render texture for drawing

pChangeDirectory
alias pChangeDirectory = bool function(const(char)* dir)

Change working directory, returns true if success

pClearBackground
alias pClearBackground = void function(Color color)

Set background color (framebuffer clear color)

pClearDirectoryFiles
alias pClearDirectoryFiles = void function()

Clear directory files paths buffers (free memory)

pClearDroppedFiles
alias pClearDroppedFiles = void function()

Clear dropped files paths buffer (free memory)

pCloseWindow
alias pCloseWindow = void function()

Close window and unload OpenGL context

pColorFromHSV
alias pColorFromHSV = Color function(Vector3 hsv)

Returns a Color from HSV values

pColorFromNormalized
alias pColorFromNormalized = Color function(Vector4 normalized)

Returns color from normalized values [0..1]

pColorNormalize
alias pColorNormalize = Vector4 function(Color color)

Returns color normalized as float [0..1]

pColorToHSV
alias pColorToHSV = Vector3 function(Color color)

Returns HSV values for a Color

pColorToInt
alias pColorToInt = int function(Color color)

Returns hexadecimal value for a Color

pDirectoryExists
alias pDirectoryExists = bool function(const(char)* dirPath)

Check if a directory path exists

pDisableCursor
alias pDisableCursor = void function()

Disables cursor (lock cursor)

pEnableCursor
alias pEnableCursor = void function()

Enables cursor (unlock cursor)

pEndDrawing
alias pEndDrawing = void function()

End canvas drawing and swap buffers (double buffering)

pEndMode2D
alias pEndMode2D = void function()

Ends 2D mode with custom camera

pEndMode3D
alias pEndMode3D = void function()

Ends 3D mode and returns to default 2D orthographic mode

pEndScissorMode
alias pEndScissorMode = void function()

End scissor mode

pEndTextureMode
alias pEndTextureMode = void function()

Ends drawing to render texture

pFade
alias pFade = Color function(Color color, float alpha)

Color fade-in or fade-out, alpha goes from 0.0f to 1.0f

pFileExists
alias pFileExists = bool function(const(char)* fileName)

Check if file exists

pGetCameraMatrix
alias pGetCameraMatrix = Matrix function(Camera camera)

Returns camera transform matrix (view matrix)

pGetCameraMatrix2D
alias pGetCameraMatrix2D = Matrix function(Camera2D camera)

Returns camera 2d transform matrix

pGetClipboardText
alias pGetClipboardText = const(char)* function()

Get clipboard text content

pGetColor
alias pGetColor = Color function(int hexValue)

Returns a Color struct from hexadecimal value

pGetDirectoryFiles
alias pGetDirectoryFiles = char* function(const(char)* dirPath, int* count)

Get filenames in a directory path (memory should be freed)

pGetDirectoryPath
alias pGetDirectoryPath = const(char)* function(const(char)* filePath)

Get full path for a given fileName with path (uses static string)

pGetDroppedFiles
alias pGetDroppedFiles = char** function(int* count)

Get dropped files names (memory should be freed)

pGetExtension
alias pGetExtension = const(char)* function(const(char)* fileName)

Get pointer to extension for a filename string

pGetFPS
alias pGetFPS = int function()

Returns current FPS

pGetFileModTime
alias pGetFileModTime = long function(const(char)* fileName)

Get file modification time (last write time)/

pGetFileName
alias pGetFileName = const(char)* function(const(char)* filePath)

Get pointer to filename for a path string

pGetFileNameWithoutExt
alias pGetFileNameWithoutExt = const(char)* function(const(char)* filePath)

Get filename string without extension (uses static string)

pGetFrameTime
alias pGetFrameTime = float function()

Returns time in seconds for last frame drawn

pGetGamepadAxisCount
alias pGetGamepadAxisCount = int function(int gamepad)

Return gamepad axis count for a gamepad

pGetGamepadAxisMovement
alias pGetGamepadAxisMovement = float function(int gamepad, int axis)

Return axis movement value for a gamepad axis

pGetGamepadButtonPressed
alias pGetGamepadButtonPressed = int function()

Get the last gamepad button pressed

pGetGestureDetected
alias pGetGestureDetected = int function()

Get latest detected gesture

pGetGestureDragAngle
alias pGetGestureDragAngle = float function()

Get gesture drag angle

pGetGestureDragVector
alias pGetGestureDragVector = Vector2 function()

Get gesture drag vector

pGetGestureHoldDuration
alias pGetGestureHoldDuration = float function()

Get gesture hold time in milliseconds

pGetGesturePinchAngle
alias pGetGesturePinchAngle = float function()

Get gesture pinch angle

pGetGesturePinchVector
alias pGetGesturePinchVector = Vector2 function()

Get gesture pinch delta

pGetKeyPressed
alias pGetKeyPressed = int function()

Get latest key pressed

pGetMonitorCount
alias pGetMonitorCount = int function()

Get number of connected monitors

pGetMonitorHeight
alias pGetMonitorHeight = int function(int monitor)

Get primary monitor height

pGetMonitorName
alias pGetMonitorName = const(char)* function(int monitor)

Get the human-readable, UTF-8 encoded name of the primary monitor

pGetMonitorPhysicalHeight
alias pGetMonitorPhysicalHeight = int function(int monitor)

Get primary monitor physical height in millimetres

pGetMonitorPhysicalWidth
alias pGetMonitorPhysicalWidth = int function(int monitor)

Get primary monitor physical width in millimetres

pGetMonitorWidth
alias pGetMonitorWidth = int function(int monitor)

Get primary monitor width

pGetMousePosition
alias pGetMousePosition = Vector2 function()

Returns mouse position XY

pGetMouseRay
alias pGetMouseRay = Ray function(Vector2 mousePosition, Camera camera)

Returns a ray trace from mouse position

pGetMouseWheelMove
alias pGetMouseWheelMove = int function()

Returns mouse wheel movement Y

pGetMouseX
alias pGetMouseX = int function()

Returns mouse position X

pGetMouseY
alias pGetMouseY = int function()

Returns mouse position Y

pGetNamepadName
alias pGetNamepadName = const(char)* function(int gamepad)

Return gamepad internal name id

pGetPrevDirectoryPath
alias pGetPrevDirectoryPath = const(char)* function(const(char)* dirPath)

Get previous directory path for a given path (uses static string)

pGetScreenHeight
alias pGetScreenHeight = int function()

Get current screen height

pGetScreenToWorld2D
alias pGetScreenToWorld2D = Vector2 function(Vector2 position, Camera2D camera)

Returns the world space position for a 2d camera screen space position

pGetScreenWidth
alias pGetScreenWidth = int function()

Get current screen width

pGetTime
alias pGetTime = double function()

Returns elapsed time in seconds since InitWindow()

pGetTouchPointsCount
alias pGetTouchPointsCount = int function()

Get touch points count

pGetTouchPosition
alias pGetTouchPosition = Vector2 function(int index)

Returns touch position XY for a touch point index (relative to screen size)

pGetTouchX
alias pGetTouchX = int function()

Returns touch position X for touch point 0 (relative to screen size)

pGetTouchY
alias pGetTouchY = int function()

Returns touch position Y for touch point 0 (relative to screen size)

pGetWindowHandle
alias pGetWindowHandle = void* function()

Get native window handle

pGetWindowPosition
alias pGetWindowPosition = Vector2 function()

Get window position XY on monitor

pGetWindowScaleDPI
alias pGetWindowScaleDPI = Vector2 function()

Get window scale DPI factor

pGetWorkingDirectory
alias pGetWorkingDirectory = const(char)* function()

Get current working directory (uses static string)

pGetWorldToScreen
alias pGetWorldToScreen = Vector2 function(Vector3 position, Camera camera)

Returns the screen space position for a 3d world space position

pGetWorldToScreen2D
alias pGetWorldToScreen2D = Vector2 function(Vector2 position, Camera2D camera)

Returns the screen space position for a 2d camera world space position

pGetWorldToScreenEx
alias pGetWorldToScreenEx = Vector2 function(Vector3 position, Camera camera, int width, int height)

Returns size position for a 3d world space position

pHideCursor
alias pHideCursor = void function()

Hides cursor

pHideWindow
alias pHideWindow = void function()

Hide the window

pInitWindow
alias pInitWindow = void function(int width, int height, const(char)* title)

Initialize window and OpenGL context

pIsCursorHidden
alias pIsCursorHidden = bool function()

Check if cursor is not visible

pIsFileDropped
alias pIsFileDropped = bool function()

Check if a file has been dropped into window

pIsFileExtension
alias pIsFileExtension = bool function(const(char)* fileName, const(char)* ext)

Check file extension

pIsGamepadAvailable
alias pIsGamepadAvailable = bool function(int gamepad)

Detect if a gamepad is available

pIsGamepadButtonDown
alias pIsGamepadButtonDown = bool function(int gamepad, int button)

Detect if a gamepad button is being pressed

pIsGamepadButtonPressed
alias pIsGamepadButtonPressed = bool function(int gamepad, int button)

Detect if a gamepad button has been pressed once

pIsGamepadButtonReleased
alias pIsGamepadButtonReleased = bool function(int gamepad, int button)

Detect if a gamepad button has been released once

pIsGamepadButtonUp
alias pIsGamepadButtonUp = bool function(int gamepad, int button)

Detect if a gamepad button is NOT being pressed

pIsGamepadName
alias pIsGamepadName = bool function(int gamepad, const(char)* name)

Check gamepad name (if available)

pIsGestureDetected
alias pIsGestureDetected = bool function(int gesture)

Check if a gesture have been detected

pIsKeyDown
alias pIsKeyDown = bool function(int key)

Detect if a key is being pressed

pIsKeyPressed
alias pIsKeyPressed = bool function(int key)

Detect if a key has been pressed once

pIsKeyReleased
alias pIsKeyReleased = bool function(int key)

Detect if a key has been released once

pIsKeyUp
alias pIsKeyUp = bool function(int key)

Detect if a key is NOT being pressed

pIsMouseButtonDown
alias pIsMouseButtonDown = bool function(int button)

Detect if a mouse button is being pressed

pIsMouseButtonPressed
alias pIsMouseButtonPressed = bool function(int button)

Detect if a mouse button has been pressed once

pIsMouseButtonReleased
alias pIsMouseButtonReleased = bool function(int button)

Detect if a mouse button has been released once

pIsMouseButtonUp
alias pIsMouseButtonUp = bool function(int button)

Detect if a mouse button is NOT being pressed

pIsWindowFocused
alias pIsWindowFocused = bool function()

Check if window has been focused

pIsWindowFullScreen
alias pIsWindowFullScreen = bool function()

Check if window is currently fullscreen

pIsWindowHidden
alias pIsWindowHidden = bool function()

Check if window is currently hidden

pIsWindowMinimized
alias pIsWindowMinimized = bool function()

Check if window has been minimized (or lost focus)

pIsWindowReady
alias pIsWindowReady = bool function()

Check if window has been initialized successfully

pIsWindowResized
alias pIsWindowResized = bool function()

Check if window has been resized

pSetCameraAltControl
alias pSetCameraAltControl = void function(int altKey)

Set camera alt key to combine with mouse movement (free camera)

pSetCameraMode
alias pSetCameraMode = void function(Camera camera, int mode)

Set camera mode (multiple camera modes available)

pSetCameraMoveControls
alias pSetCameraMoveControls = void function(int frontKey, int backKey, int rightKey, int leftKey, int upKey, int downKey)

Set camera move controls (1st person and 3rd person cameras)

pSetCameraPanControl
alias pSetCameraPanControl = void function(int panKey)

Set camera pan key to combine with mouse movement (free camera)

pSetCameraSmoothZoomControl
alias pSetCameraSmoothZoomControl = void function(int szKey)

Set camera smooth zoom key to combine with mouse (free camera)

pSetClipboardText
alias pSetClipboardText = void function(const(char)* text)

Set clipboard text content

pSetConfigFlags
alias pSetConfigFlags = void function(uint flags)

Setup window configuration flags (view FLAGS)

pSetExitKey
alias pSetExitKey = void function(int key)

Set a custom key to exit program (default is ESC)

pSetGesturesEnabled
alias pSetGesturesEnabled = void function(uint gestureFlags)

Enable a set of gestures using flags

pSetMouseOffset
alias pSetMouseOffset = void function(int offsetX, int offsetY)

Set mouse offset

pSetMousePosition
alias pSetMousePosition = void function(int x, int y)

Set mouse position XY

pSetMouseScale
alias pSetMouseScale = void function(float scaleX, float scaleY)

Set mouse scaling

pSetTargetFPS
alias pSetTargetFPS = void function(int fps)

Set target FPS (maximum)

pSetWindowIcon
alias pSetWindowIcon = void function(Image image)

Set icon for window (only PLATFORM_DESKTOP)

pSetWindowMinSize
alias pSetWindowMinSize = void function(int width, int height)

Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE)

pSetWindowMonitor
alias pSetWindowMonitor = void function(int monitor)

Set monitor for the current window (fullscreen mode)

pSetWindowPosition
alias pSetWindowPosition = void function(int x, int y)

Set window position on screen (only PLATFORM_DESKTOP)

pSetWindowSize
alias pSetWindowSize = void function(int width, int height)

Set window dimensions

pSetWindowTitle
alias pSetWindowTitle = void function(const(char)* title)

Set title for window (only PLATFORM_DESKTOP)

pShowCursor
alias pShowCursor = void function()

Shows cursor

pTakeScreenshot
alias pTakeScreenshot = void function(const(char)* fileName)

Takes a screenshot of current screen (saved a .png)

pToggleFullscreen
alias pToggleFullscreen = void function()

Toggle fullscreen mode (only PLATFORM_DESKTOP)

pUnhideWindow
alias pUnhideWindow = void function()

Show the window

pUpdateCamera
alias pUpdateCamera = void function(Camera* camera)

Update camera position for selected mode

pWindowShouldClose
alias pWindowShouldClose = bool function()

Check if KEY_ESCAPE pressed or Close icon pressed

Static variables

BeginDrawing
pBeginDrawing BeginDrawing;
Undocumented in source.
BeginMode2D
pBeginMode2D BeginMode2D;
Undocumented in source.
BeginMode3D
pBeginMode3D BeginMode3D;
Undocumented in source.
BeginScissorMode
pBeginScissorMode BeginScissorMode;
Undocumented in source.
BeginTextureMode
pBeginTextureMode BeginTextureMode;
Undocumented in source.
ChangeDirectory
pChangeDirectory ChangeDirectory;
Undocumented in source.
ClearBackground
pClearBackground ClearBackground;
Undocumented in source.
ClearDirectoryFiles
pClearDirectoryFiles ClearDirectoryFiles;
Undocumented in source.
ClearDroppedFiles
pClearDroppedFiles ClearDroppedFiles;
Undocumented in source.
CloseWindow
pCloseWindow CloseWindow;
Undocumented in source.
ColorFromHSV
pColorFromHSV ColorFromHSV;
Undocumented in source.
ColorFromNormalized
pColorFromNormalized ColorFromNormalized;
Undocumented in source.
ColorNormalize
pColorNormalize ColorNormalize;
Undocumented in source.
ColorToHSV
pColorToHSV ColorToHSV;
Undocumented in source.
ColorToInt
pColorToInt ColorToInt;
Undocumented in source.
DirectoryExists
pDirectoryExists DirectoryExists;
Undocumented in source.
DisableCursor
pDisableCursor DisableCursor;
Undocumented in source.
EnableCursor
pEnableCursor EnableCursor;
Undocumented in source.
EndDrawing
pEndDrawing EndDrawing;
Undocumented in source.
EndMode2D
pEndMode2D EndMode2D;
Undocumented in source.
EndMode3D
pEndMode3D EndMode3D;
Undocumented in source.
EndScissorMode
pEndScissorMode EndScissorMode;
Undocumented in source.
EndTextureMode
pEndTextureMode EndTextureMode;
Undocumented in source.
Fade
pFade Fade;
Undocumented in source.
FileExists
pFileExists FileExists;
Undocumented in source.
GetCameraMatrix
pGetCameraMatrix GetCameraMatrix;
Undocumented in source.
GetCameraMatrix2D
pGetCameraMatrix2D GetCameraMatrix2D;
Undocumented in source.
GetClipboardText
pGetClipboardText GetClipboardText;
Undocumented in source.
GetColor
pGetColor GetColor;
Undocumented in source.
GetDirectoryFiles
pGetDirectoryFiles GetDirectoryFiles;
Undocumented in source.
GetDirectoryPath
pGetDirectoryPath GetDirectoryPath;
Undocumented in source.
GetDroppedFiles
pGetDroppedFiles GetDroppedFiles;
Undocumented in source.
GetExtension
pGetExtension GetExtension;
Undocumented in source.
GetFPS
pGetFPS GetFPS;
Undocumented in source.
GetFileModTime
pGetFileModTime GetFileModTime;
Undocumented in source.
GetFileName
pGetFileName GetFileName;
Undocumented in source.
GetFileNameWithoutExt
pGetFileNameWithoutExt GetFileNameWithoutExt;
Undocumented in source.
GetFrameTime
pGetFrameTime GetFrameTime;
Undocumented in source.
GetGamepadAxisCount
pGetGamepadAxisCount GetGamepadAxisCount;
Undocumented in source.
GetGamepadAxisMovement
pGetGamepadAxisMovement GetGamepadAxisMovement;
Undocumented in source.
GetGamepadButtonPressed
pGetGamepadButtonPressed GetGamepadButtonPressed;
Undocumented in source.
GetGestureDetected
pGetGestureDetected GetGestureDetected;
Undocumented in source.
GetGestureDragAngle
pGetGestureDragAngle GetGestureDragAngle;
Undocumented in source.
GetGestureDragVector
pGetGestureDragVector GetGestureDragVector;
Undocumented in source.
GetGestureHoldDuration
pGetGestureHoldDuration GetGestureHoldDuration;
Undocumented in source.
GetGesturePinchAngle
pGetGesturePinchAngle GetGesturePinchAngle;
Undocumented in source.
GetGesturePinchVector
pGetGesturePinchVector GetGesturePinchVector;
Undocumented in source.
GetKeyPressed
pGetKeyPressed GetKeyPressed;
Undocumented in source.
GetMonitorCount
pGetMonitorCount GetMonitorCount;
Undocumented in source.
GetMonitorHeight
pGetMonitorHeight GetMonitorHeight;
Undocumented in source.
GetMonitorName
pGetMonitorName GetMonitorName;
Undocumented in source.
GetMonitorPhysicalHeight
pGetMonitorPhysicalHeight GetMonitorPhysicalHeight;
Undocumented in source.
GetMonitorPhysicalWidth
pGetMonitorPhysicalWidth GetMonitorPhysicalWidth;
Undocumented in source.
GetMonitorWidth
pGetMonitorWidth GetMonitorWidth;
Undocumented in source.
GetMousePosition
pGetMousePosition GetMousePosition;
Undocumented in source.
GetMouseRay
pGetMouseRay GetMouseRay;
Undocumented in source.
GetMouseWheelMove
pGetMouseWheelMove GetMouseWheelMove;
Undocumented in source.
GetMouseX
pGetMouseX GetMouseX;
Undocumented in source.
GetMouseY
pGetMouseY GetMouseY;
Undocumented in source.
GetPrevDirectoryPath
pGetPrevDirectoryPath GetPrevDirectoryPath;
Undocumented in source.
GetScreenHeight
pGetScreenHeight GetScreenHeight;
Undocumented in source.
GetScreenToWorld2D
pGetScreenToWorld2D GetScreenToWorld2D;
Undocumented in source.
GetScreenWidth
pGetScreenWidth GetScreenWidth;
Undocumented in source.
GetTime
pGetTime GetTime;
Undocumented in source.
GetTouchPointsCount
pGetTouchPointsCount GetTouchPointsCount;
Undocumented in source.
GetTouchPosition
pGetTouchPosition GetTouchPosition;
Undocumented in source.
GetTouchX
pGetTouchX GetTouchX;
Undocumented in source.
GetTouchY
pGetTouchY GetTouchY;
Undocumented in source.
GetWindowHandle
pGetWindowHandle GetWindowHandle;
Undocumented in source.
GetWindowPosition
pGetWindowPosition GetWindowPosition;
Undocumented in source.
GetWindowScaleDPI
pGetWindowScaleDPI GetWindowScaleDPI;
Undocumented in source.
GetWorkingDirectory
pGetWorkingDirectory GetWorkingDirectory;
Undocumented in source.
GetWorldToScreen
pGetWorldToScreen GetWorldToScreen;
Undocumented in source.
GetWorldToScreen2D
pGetWorldToScreen2D GetWorldToScreen2D;
Undocumented in source.
GetWorldToScreenEx
pGetWorldToScreenEx GetWorldToScreenEx;
Undocumented in source.
HideCursor
pHideCursor HideCursor;
Undocumented in source.
HideWindow
pHideWindow HideWindow;
Undocumented in source.
InitWindow
pInitWindow InitWindow;
Undocumented in source.
IsCursorHidden
pIsCursorHidden IsCursorHidden;
Undocumented in source.
IsFileDropped
pIsFileDropped IsFileDropped;
Undocumented in source.
IsFileExtension
pIsFileExtension IsFileExtension;
Undocumented in source.
IsGamepadAvailable
pIsGamepadAvailable IsGamepadAvailable;
Undocumented in source.
IsGamepadButtonDown
pIsGamepadButtonDown IsGamepadButtonDown;
Undocumented in source.
IsGamepadButtonPressed
pIsGamepadButtonPressed IsGamepadButtonPressed;
Undocumented in source.
IsGamepadButtonReleased
pIsGamepadButtonReleased IsGamepadButtonReleased;
Undocumented in source.
IsGamepadButtonUp
pIsGamepadButtonUp IsGamepadButtonUp;
Undocumented in source.
IsGamepadName
pIsGamepadName IsGamepadName;
Undocumented in source.
IsGestureDetected
pIsGestureDetected IsGestureDetected;
Undocumented in source.
IsKeyDown
pIsKeyDown IsKeyDown;
Undocumented in source.
IsKeyPressed
pIsKeyPressed IsKeyPressed;
Undocumented in source.
IsKeyReleased
pIsKeyReleased IsKeyReleased;
Undocumented in source.
IsKeyUp
pIsKeyUp IsKeyUp;
Undocumented in source.
IsMouseButtonDown
pIsMouseButtonDown IsMouseButtonDown;
Undocumented in source.
IsMouseButtonPressed
pIsMouseButtonPressed IsMouseButtonPressed;
Undocumented in source.
IsMouseButtonReleased
pIsMouseButtonReleased IsMouseButtonReleased;
Undocumented in source.
IsMouseButtonUp
pIsMouseButtonUp IsMouseButtonUp;
Undocumented in source.
IsWindowFocused
pIsWindowFocused IsWindowFocused;
Undocumented in source.
IsWindowFullscreen
pIsWindowFullScreen IsWindowFullscreen;
Undocumented in source.
IsWindowHidden
pIsWindowHidden IsWindowHidden;
Undocumented in source.
IsWindowMinimized
pIsWindowMinimized IsWindowMinimized;
Undocumented in source.
IsWindowReady
pIsWindowReady IsWindowReady;
Undocumented in source.
IsWindowResized
pIsWindowResized IsWindowResized;
Undocumented in source.
SetCameraAltControl
pSetCameraAltControl SetCameraAltControl;
Undocumented in source.
SetCameraMode
pSetCameraMode SetCameraMode;
Undocumented in source.
SetCameraMoveControls
pSetCameraMoveControls SetCameraMoveControls;
Undocumented in source.
SetCameraPanControl
pSetCameraPanControl SetCameraPanControl;
Undocumented in source.
SetCameraSmoothZoomControl
pSetCameraSmoothZoomControl SetCameraSmoothZoomControl;
Undocumented in source.
SetClipboardText
pSetClipboardText SetClipboardText;
Undocumented in source.
SetConfigFlags
pSetConfigFlags SetConfigFlags;
Undocumented in source.
SetExitKey
pSetExitKey SetExitKey;
Undocumented in source.
SetGesturesEnabled
pSetGesturesEnabled SetGesturesEnabled;
Undocumented in source.
SetMouseOffset
pSetMouseOffset SetMouseOffset;
Undocumented in source.
SetMousePosition
pSetMousePosition SetMousePosition;
Undocumented in source.
SetMouseScale
pSetMouseScale SetMouseScale;
Undocumented in source.
SetTargetFPS
pSetTargetFPS SetTargetFPS;
Undocumented in source.
SetWindowIcon
pSetWindowIcon SetWindowIcon;
Undocumented in source.
SetWindowMinSize
pSetWindowMinSize SetWindowMinSize;
Undocumented in source.
SetWindowMonitor
pSetWindowMonitor SetWindowMonitor;
Undocumented in source.
SetWindowPosition
pSetWindowPosition SetWindowPosition;
Undocumented in source.
SetWindowSize
pSetWindowSize SetWindowSize;
Undocumented in source.
SetWindowTitle
pSetWindowTitle SetWindowTitle;
Undocumented in source.
ShowCursor
pShowCursor ShowCursor;
Undocumented in source.
TakeScreenshot
pTakeScreenshot TakeScreenshot;
Undocumented in source.
ToggleFullscreen
pToggleFullscreen ToggleFullscreen;
Undocumented in source.
UnhideWindow
pUnhideWindow UnhideWindow;
Undocumented in source.
UpdateCamera
pUpdateCamera UpdateCamera;
Undocumented in source.
WindowShouldClose
pWindowShouldClose WindowShouldClose;
Undocumented in source.

Meta