shithub: cstory

ref: a7f2ec6a5e85d5a11e4c1a68409710ce5f07616f
dir: /src/Backends/Window-Software.h/

View raw version
#pragma once

#include <stddef.h>

bool WindowBackend_Software_CreateWindow(const char *window_title, int screen_width, int screen_height, bool fullscreen);
void WindowBackend_Software_DestroyWindow(void);
unsigned char* WindowBackend_Software_GetFramebuffer(size_t *pitch);
void WindowBackend_Software_Display(void);
void WindowBackend_Software_HandleWindowResize(unsigned int width, unsigned int height);