mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-20 05:08:04 +00:00
remove straggling printf
This commit is contained in:
parent
054b2dab7c
commit
b14f25fa6b
@ -78,7 +78,6 @@ int main(void) {
|
|||||||
Clay_Raylib_Initialize(1024, 768, "Introducing Clay Demo", FLAG_WINDOW_RESIZABLE | FLAG_WINDOW_HIGHDPI | FLAG_MSAA_4X_HINT | FLAG_VSYNC_HINT); // Extra parameters to this function are new since the video was published
|
Clay_Raylib_Initialize(1024, 768, "Introducing Clay Demo", FLAG_WINDOW_RESIZABLE | FLAG_WINDOW_HIGHDPI | FLAG_MSAA_4X_HINT | FLAG_VSYNC_HINT); // Extra parameters to this function are new since the video was published
|
||||||
|
|
||||||
uint64_t clayRequiredMemory = Clay_MinMemorySize();
|
uint64_t clayRequiredMemory = Clay_MinMemorySize();
|
||||||
printf("%lld", clayRequiredMemory);
|
|
||||||
Clay_Arena clayMemory = (Clay_Arena) {
|
Clay_Arena clayMemory = (Clay_Arena) {
|
||||||
.memory = malloc((size_t)1024 * 1024 * 1024 * 1024),
|
.memory = malloc((size_t)1024 * 1024 * 1024 * 1024),
|
||||||
.capacity = clayRequiredMemory
|
.capacity = clayRequiredMemory
|
||||||
|
Loading…
Reference in New Issue
Block a user