some include path jazz

This commit is contained in:
Greg Wells
2025-07-01 16:42:45 -04:00
parent e867255b9d
commit 918d854062
10 changed files with 18 additions and 7 deletions

View File

@@ -1,19 +1,20 @@
#pragma once
#include "gryphn_rendering_api.h"
#include <gryphn_rendering_api.h>
#ifdef GN_PLATFORM_LINUX
#include <platform/platform_linux/gryphn_platform_linux.h>
#include <platform_linux/gryphn_platform_linux.h>
#endif
#ifdef GN_PLATFORM_MACOS
#include <platform/platform_macos/gryphn_platform_macos.h>
#include <platform_macos/gryphn_platform_macos.h>
#endif
#ifdef GN_PLATFORM_WINDOWS
#include "platform_windows/gryphn_platform_windows.h"
#include <platform_windows/gryphn_platform_windows.h>
#endif
gnRenderingAPI* gnGetSupportedRenderingAPIs(int* count);
gnBool gnSupportsRenderingAPI(gnRenderingAPI api);
// #ifdef __cplusplus
// template <typename function>