From 974af1e61c9142ca8b294876429efb4e6f0eda70 Mon Sep 17 00:00:00 2001 From: peterc-s Date: Sat, 28 Dec 2024 14:00:19 +0000 Subject: [PATCH] update raylib video example to use header file and fix segfault Author: peterc-s --- examples/introducing-clay-video-demo/main.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/examples/introducing-clay-video-demo/main.c b/examples/introducing-clay-video-demo/main.c index e36f53a..c8c3924 100644 --- a/examples/introducing-clay-video-demo/main.c +++ b/examples/introducing-clay-video-demo/main.c @@ -1,6 +1,7 @@ #define CLAY_IMPLEMENTATION #include "../../clay.h" -#include "../../renderers/raylib/clay_renderer_raylib.c" +#define CLAY_RAYLIB_IMPLEMENTATION // This is different to the video, the raylib renderer is now in a header file +#include "../../renderers/raylib/clay_renderer_raylib.h" const int FONT_ID_BODY_16 = 0; Clay_Color COLOR_WHITE = { 255, 255, 255, 255}; @@ -79,10 +80,7 @@ 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 uint64_t clayRequiredMemory = Clay_MinMemorySize(); - Clay_Arena clayMemory = (Clay_Arena) { - .memory = malloc((size_t)1024 * 1024 * 1024 * 1024), - .capacity = clayRequiredMemory - }; + Clay_Arena clayMemory = Clay_CreateArenaWithCapacityAndMemory(clayRequiredMemory, malloc(clayRequiredMemory)); Clay_Initialize(clayMemory, (Clay_Dimensions) { .width = GetScreenWidth(), .height = GetScreenHeight() @@ -302,4 +300,4 @@ int main(void) { Clay_Raylib_Render(renderCommands); EndDrawing(); } -} \ No newline at end of file +}