diff options
| author | jussi | 2023-04-10 16:05:45 +0300 |
|---|---|---|
| committer | jussi | 2023-04-10 16:05:45 +0300 |
| commit | 6938cdbaede7eb63b9bc2adb9e0a93e243e291ee (patch) | |
| tree | 67f072df6b9a3d2e9b1f5ab7cc47fd5a62ff50f4 /ReiLua_API.lua | |
| parent | 1cbadf56f33641e85fc634a326c0db6935947c23 (diff) | |
| download | reilua-enhanced-6938cdbaede7eb63b9bc2adb9e0a93e243e291ee.tar.gz reilua-enhanced-6938cdbaede7eb63b9bc2adb9e0a93e243e291ee.tar.bz2 reilua-enhanced-6938cdbaede7eb63b9bc2adb9e0a93e243e291ee.zip | |
LoadShaderFromMemory fix.
Diffstat (limited to 'ReiLua_API.lua')
| -rw-r--r-- | ReiLua_API.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua index 2433dbf..c6c5b7e 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -605,8 +605,9 @@ function RL.SetWindowMinSize( size ) end ---Get specified monitor position ---- Failure return nil ---- Success return Vector2 +---@param monitor integer ---@return any position -function RL.GetMonitorPosition() end +function RL.GetMonitorPosition( monitor ) end ---Get specified monitor size ---- Failure return nil @@ -2754,7 +2755,7 @@ function RL.ColorAlphaBlend( dst, src, tint ) end ---- Failure return false ---- Success return Color ---@param int any ----@return any Color +---@return any color function RL.GetColor( int ) end ---Get pixel color from source texture @@ -2762,7 +2763,7 @@ function RL.GetColor( int ) end ---- Success return Color ---@param texture any ---@param position table ----@return any Color +---@return any color function RL.GetPixelColor( texture, position ) end ---Get pixel data size in bytes for certain format |
