shithub: cstory

ref: 6d53668beda9b8e88ee6c74230e1e70a2cc0061b
dir: /src/Backends/Window-Software.h/

View raw version
#pragma once

#include <stddef.h>

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