From 99d562375c6bc467579854037e27a27997780c55 Mon Sep 17 00:00:00 2001 From: epoch Date: Tue, 19 Dec 2017 04:35:22 -0600 Subject: added empty functions to opengl --- src/graphics_c2_opengl.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/graphics_c2_opengl.c') diff --git a/src/graphics_c2_opengl.c b/src/graphics_c2_opengl.c index 3429193..2104f78 100644 --- a/src/graphics_c2_opengl.c +++ b/src/graphics_c2_opengl.c @@ -88,6 +88,10 @@ void draw_c2_filled_shape(c2_s_t s) { // glEnd(); } +void set_ansi_color(int i) { + glColor3f(0.0, 1.0, 0.0); +} + void set_color() { glColor3f(0.0, 1.0, 0.0); } @@ -115,6 +119,18 @@ void red_and_blue_magic() { } +void draw_mode_copy() { + +} + +void draw_mode_and() { + +} + +void draw_mode_or() { + +} + void keypress_handler(unsigned char key, int x, int y) {//x and y are mouse positions. switch (key) { case 27: -- cgit v1.2.3