formatting

This commit is contained in:
jacob 2025-06-17 17:47:47 -05:00
parent 7b0c95d403
commit 894044669c
2 changed files with 6 additions and 10 deletions

View File

@ -80,7 +80,7 @@
#define DX12_TEST 0 #define DX12_TEST 1

View File

@ -1809,18 +1809,14 @@ void gpu_dispatch(struct gpu_handle gpu_dispatch_state, struct gpu_dispatch_para
#endif #endif
/* ========================== * /* ========================== *
* Backbuffer * Present
* ========================== */ * ========================== */
struct gpu_handle gpu_recreate_backbuffer(struct v2i32 size) void gpu_present(struct v2i32 backbuffer_resolution, struct gpu_handle texture, struct xform texture_xf, i32 vsync)
{
(UNUSED)size;
struct gpu_handle res = ZI;
return res;
}
void gpu_present(i32 vsync)
{ {
(UNUSED)backbuffer_resolution;
(UNUSED)texture;
(UNUSED)texture_xf;
(UNUSED)vsync; (UNUSED)vsync;
} }