summaryrefslogtreecommitdiff
path: root/opengl.c
diff options
context:
space:
mode:
authorPeter Fors <peter.fors@mindkiller.com>2025-04-04 01:03:19 +0200
committerPeter Fors <peter.fors@mindkiller.com>2025-04-04 01:03:19 +0200
commit8c82be43720d9e221a9e2541c9ff6151015838bb (patch)
tree6ed341720934bbf69a386e254c4e9449f9051616 /opengl.c
parent6274071e3857c1640cc5aef804cb86509ab312f9 (diff)
move read/write prg/chr/cirom data to mapper
Diffstat (limited to 'opengl.c')
-rw-r--r--opengl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/opengl.c b/opengl.c
index 847fc12..255eac3 100644
--- a/opengl.c
+++ b/opengl.c
@@ -34,8 +34,6 @@ static void opengl_setup(void) {
GLuint vertex_shader = compile_shader(GL_VERTEX_SHADER, vertex_shader_start);
GLuint fragment_shader = compile_shader(GL_FRAGMENT_SHADER, fragment_shader_start);
-printf("%d %d\n", vertex_shader, fragment_shader);
-
state.shader_program = glCreateProgram();
glAttachShader(state.shader_program, vertex_shader);
glAttachShader(state.shader_program, fragment_shader);