Rest of rlgl and raymath functions.

This commit is contained in:
jussi
2024-02-24 18:09:53 +02:00
parent 9f1bec39f9
commit 631cea6aa7
9 changed files with 188 additions and 8 deletions

View File

@@ -93,10 +93,8 @@ local rlgl = {
rlLoadDrawQuad = true, -- Most likely not needed.
},
info = {
rlBlitFramebuffer = "Will be added",
rlEnablePointMode = "Will be added",
rlEnableStatePointer = "Should probably be added for GRAPHICS_API_OPENGL_11",
rlDisableStatePointer = "Should probably be added for GRAPHICS_API_OPENGL_11",
rlEnableStatePointer = "Available for GRAPHICS_API_OPENGL_11",
rlDisableStatePointer = "Available for GRAPHICS_API_OPENGL_11",
},
}
local raygui = {
@@ -123,12 +121,12 @@ local easings = {
prefix = "EASEDEF",
file = "easings.h",
blacklist = {
EaseLinearNone = true, -- "Replaced by EaseLinear"
EaseLinearIn = true, -- "Replaced by EaseLinear"
EaseLinearOut = true, -- "Replaced by EaseLinear"
EaseLinearInOut = true, -- "Replaced by EaseLinear"
},
info = {
EaseLinearNone = "Will be added",
EaseLinearIn = "Will be added",
EaseLinearOut = "Will be added",
EaseLinearInOut = "Will be added",
},
}