update gryphn to use GN_FALSE + GN_TRUE

This commit is contained in:
Gregory Wells
2025-07-28 20:05:44 -04:00
parent d649e5b3bb
commit 07a2cf85ad
24 changed files with 62 additions and 78 deletions

View File

@@ -16,8 +16,8 @@ gnRenderingAPI* gnGetSupportedRenderingAPIs(int* count) {
}
gnBool gnSupportsRenderingAPI(gnRenderingAPI api) {
for (int i = 0; i < 3; i++) if (api == renderingAPIs[i]) return gnTrue;
return gnFalse;
for (int i = 0; i < 3; i++) if (api == renderingAPIs[i]) return GN_TRUE;
return GN_FALSE;
}
CAMetalLayer* gnCreateCAMetalLayer(NSWindow* window) {