diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-20 19:47:25 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-20 19:47:25 +1000 |
commit | 58a748dcd77d0caacc9d6ef7a7e7e073ac849ad3 (patch) | |
tree | 054108cf40ad4e9c147db4e8723485e72d9a7b98 /src/ral/ral_impl.h | |
parent | 0a984656f5fec68c90acc612b01f897918c0070b (diff) |
resize viewport and fix skybox
Diffstat (limited to 'src/ral/ral_impl.h')
-rw-r--r-- | src/ral/ral_impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ral/ral_impl.h b/src/ral/ral_impl.h index 6676b6c..5376920 100644 --- a/src/ral/ral_impl.h +++ b/src/ral/ral_impl.h @@ -29,6 +29,8 @@ void GPU_Device_Destroy(GPU_Device* device); bool GPU_Swapchain_Create(GPU_Swapchain* out_swapchain); void GPU_Swapchain_Destroy(GPU_Swapchain* swapchain); +void GPU_Swapchain_Resize(i32 new_width, i32 new_height); +u32x2 GPU_Swapchain_GetDimensions(); PUB GPU_Renderpass* GPU_Renderpass_Create(GPU_RenderpassDesc description); PUB void GPU_Renderpass_Destroy(GPU_Renderpass* pass); |