mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Update raylib_api.* by CI
This commit is contained in:
@ -60,22 +60,16 @@
|
||||
"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": ""
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user