Files
Gryphn/src/core/renderpass/gryphn_render_pass.h
2025-05-30 08:19:22 -04:00

14 lines
399 B
C

#pragma once
#include "gryphn_render_pass_descriptor.h"
#include "core/framebuffer/gryphn_framebuffer.h"
#include "utils/types/gryphn_color.h"
typedef struct gnRenderPassInfo_t {
struct gnRenderPassDescriptor_t* renderPassDescriptor;
struct gnFramebuffer_t* framebuffer;
gnUInt2 offset;
gnUInt2 size;
uint32_t clearValueCount;
gnClearValue* clearValues;
} gnRenderPassInfo;