Moving some code around
This commit is contained in:
@ -26,6 +26,16 @@ void frameBufferInit(framebuffer_t *buffer, int32_t width, int32_t height);
|
||||
*/
|
||||
void frameBufferUse(framebuffer_t *frameBuffer, bool clear);
|
||||
|
||||
/**
|
||||
* Resize an existing frame buffer. This will do the check if resizing is even
|
||||
* necessary for you.
|
||||
*
|
||||
* @param frameBuffer Frame buffer to resize.
|
||||
* @param width New width of the frame buffer.
|
||||
* @param height New height of the frame buffer.
|
||||
*/
|
||||
void frameBufferResize(framebuffer_t *frameBuffer,int32_t width,int32_t height);
|
||||
|
||||
/**
|
||||
* Unbind the currently bound frame buffer.
|
||||
*
|
||||
|
Reference in New Issue
Block a user