first commit

This commit is contained in:
Greg Wells
2025-05-05 19:29:42 -04:00
commit 406d669de0
284 changed files with 32727 additions and 0 deletions

27
include/gryphn/gryphn.h Normal file
View File

@@ -0,0 +1,27 @@
#pragma once
#include <gryphn/gryphn_utils.h>
#include <platform/gryphn_platform_include.h>
#include <core/init/gryphn_init.h>
#include <core/instance/gryphn_instance.h>
#include <core/presentation_queue/gryphn_presentation_queue.h>
#include <core/buffers/vertex_descriptions/gryphn_vertex_description.h>
#include <core/buffers/gryphn_buffer.h>
#include <core/textures/gryphn_texture.h>
#include <core/uniform_descriptor/gryphn_uniform_layout_binding.h>
#include <core/uniform_descriptor/gryphn_uniform_layout.h>
#include <core/graphics_pipeline/gryphn_render_pass.h>
#include <core/sync_objects/gryphn_sync_semaphore.h>
#include <core/sync_objects/gryphn_fence.h>
#include <core/commands/gryphn_command_buffer.h>
#include <core/commands/gryphn_command.h>
#include <core/commands/present_command/gryphn_command_present.h>
#include <core/commands/submit_command/gryphn_command_submit.h>
#include <core/buffers/gryphn_buffer.h>
#include <core/uniform_descriptor/gryphn_uniform.h>
#include <core/uniform_descriptor/uniform_buffer/gryphn_uniform_buffer.h>
#include <core/uniform_descriptor/sampler/gryphn_sampler.h>
#include <core/push_constant/gryphn_push_constant.h>
#include <core/graphics_pipeline/gryphn_graphics_pipeline.h>
#include <core/gryphn_support.h>
#include <core/framebuffers/gryphn_framebuffer.h>

View File

@@ -0,0 +1,23 @@
#pragma once
#include <utils/gryphn_bool.h>
#include <utils/lists/gryphn_list.h>
#include <utils/gryphn_error_code.h>
#include <utils/version/gryphn_version.h>
#include <utils/math/gryphn_vec2.h>
#include <utils/math/gryphn_vec3.h>
#include <utils/math/gryphn_vec4.h>
#include <utils/types/gryphn_color.h>
#include <utils/types/gryphn_color_format.h>
#include <utils/types/gryphn_image_format.h>
#include <utils/files/gryphn_file.h>
#include <cstdint>
typedef uint32_t gnUInt;
typedef gnChar gnByte;
typedef unsigned char gnUByte;
typedef int gnInt;
typedef float gnFloat;
typedef size_t gnSize;
#define GN_EXPORT extern "C"
#define GN_RETURN_ERROR(errorString) return { GN_FAILED, errorString }