소스 검색

ADDED: MemAlloc() / MemFree() #1440

Exposing internal memory allocator/free, useful for advance users when required
pull/1467/head
Ray 4 년 전
부모
커밋
d2d72b1dfb
2개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/raylib.h
  2. +12
    -0
      src/utils.c

+ 2
- 0
src/raylib.h 파일 보기

@ -972,6 +972,8 @@ RLAPI void SetTraceLogExit(int logType); // Set the exi
RLAPI void SetTraceLogCallback(TraceLogCallback callback); // Set a trace log callback to enable custom logging
RLAPI void TraceLog(int logType, const char *text, ...); // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR)
RLAPI void *MemAlloc(int size); // Internal memory allocator
RLAPI void MemFree(void *ptr); // Internal memory free
RLAPI void TakeScreenshot(const char *fileName); // Takes a screenshot of current screen (saved a .png)
RLAPI int GetRandomValue(int min, int max); // Returns a random value between min and max (both included)

+ 12
- 0
src/utils.c 파일 보기

@ -163,6 +163,18 @@ void TraceLog(int logType, const char *text, ...)
#endif // SUPPORT_TRACELOG
}
// Internal memory allocator
void *MemAlloc(int size)
{
return RL_MALLOC(size);
}
// Internal memory free
void MemFree(void *ptr)
{
RL_FREE(ptr);
}
// Load data from file into a buffer
unsigned char *LoadFileData(const char *fileName, unsigned int *bytesRead)
{

불러오는 중...
취소
저장