clay/examples/cpp-project-example/main.cpp

20 lines
680 B
C++
Raw Normal View History

2024-09-28 23:53:46 +00:00
#include <iostream>
#define CLAY_IMPLEMENTATION
#include "../../clay.h"
2024-10-22 07:41:35 +00:00
Clay_LayoutConfig layoutElement = Clay_LayoutConfig { .padding = {5} };
void HandleClayErrors(Clay_ErrorData errorData) {
printf("%s", errorData.errorText.chars);
}
2024-09-28 23:53:46 +00:00
int main(void) {
uint64_t totalMemorySize = Clay_MinMemorySize();
Clay_Arena clayMemory = Clay_CreateArenaWithCapacityAndMemory(totalMemorySize, (char *)malloc(totalMemorySize));
Clay_Initialize(clayMemory, Clay_Dimensions {1024,768}, Clay_ErrorHandler { HandleClayErrors });
2024-10-22 07:41:35 +00:00
Clay_BeginLayout();
CLAY(CLAY_RECTANGLE({ .color = {255,255,255,0} }), CLAY_LAYOUT(layoutElement)) {}
Clay_EndLayout();
2024-09-28 23:53:46 +00:00
return 0;
}