roleplay/client/include/draw.h

14 lines
221 B
C

#ifndef RENDER_H
#define RENDER_H
#include "gpu.h"
#include "ui.h"
VkResult draw_frame(
RenderContext* context,
UIContextStorage* ui_context,
UILayerStorage* ui_layers,
uint32_t ui_layer_count);
#endif