move windowing code into io/win

This commit is contained in:
2025-12-15 10:02:54 +01:00
parent 7df20e9aa1
commit 81b21ff7ce
9 changed files with 6 additions and 6 deletions

11
src/io/win/shader.h Normal file
View File

@@ -0,0 +1,11 @@
/* Copyright (c) 2025 Quinn.
* This is a file from the project MCA-Selector-Lite and is
* licensed under the MIT Licence. See the project's LICENSE file for details. */
#pragma once
#include <glad/gl.h>
#include <stddef.h>
#include <stdint.h>
/* Initialises the (embedded) shaders onto `pipe` */
int shader_init(GLuint pipe);