Skip to content
Snippets Groups Projects
Commit e7806f74 authored by Xiaojun.Chen's avatar Xiaojun.Chen Committed by Gianfranco Mariotti
Browse files

CL371289 [KERNEL SPACE] [234062]: verifyGraphOpt merge from 64x to 234062


Signed-off-by: default avatarKe Feng <ke.feng@verisilicon.com>
parent 0e639ae0
No related branches found
No related tags found
1 merge request!156Draft: [i.MX] mxc: gpu-viv: apply patches
......@@ -1190,6 +1190,14 @@ gcoOS_Allocate(
OUT gctPOINTER * Memory
);
gceSTATUS
gcoOS_Realloc(
IN gcoOS Os,
IN gctSIZE_T Bytes,
IN gctSIZE_T OrgBytes,
OUT gctPOINTER * Memory
);
/* Get allocated memory size. */
gceSTATUS
gcoOS_GetMemorySize(
......@@ -1228,6 +1236,15 @@ gcoOS_AllocateMemory(
OUT gctPOINTER * Memory
);
/* Realloc memory. */
gceSTATUS
gcoOS_ReallocMemory(
IN gcoOS Os,
IN gctSIZE_T Bytes,
IN gctSIZE_T OrgBytes,
OUT gctPOINTER * Memory
);
/* Free memory. */
gceSTATUS
gcoOS_FreeMemory(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment