Update raylib_api.* by CI
This commit is contained in:
parent
fbd79cde5f
commit
6d30220acc
4 changed files with 57 additions and 75 deletions
|
@ -60,22 +60,16 @@ return {
|
|||
value = "(180.0f/PI)",
|
||||
description = ""
|
||||
},
|
||||
{
|
||||
name = "MAX_ALLOC_SIZE",
|
||||
type = "INT_MATH",
|
||||
value = "1024*1024",
|
||||
description = "1GB of maximum allocation data"
|
||||
},
|
||||
{
|
||||
name = "RL_MALLOC(sz)",
|
||||
type = "MACRO",
|
||||
value = "((sz > MAX_ALLOC_SIZE)? malloc(sz) : NULL)",
|
||||
value = "malloc(sz)",
|
||||
description = ""
|
||||
},
|
||||
{
|
||||
name = "RL_CALLOC(n,sz)",
|
||||
type = "MACRO",
|
||||
value = "((n*sz > MAX_ALLOC_SIZE)? calloc(n,sz) : NULL)",
|
||||
value = "calloc(n,sz)",
|
||||
description = ""
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue