summaryrefslogtreecommitdiff
path: root/src/cfg_gfx/opengl.H
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-23 00:39:33 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-23 00:39:33 +0000
commitd1d136fa1b94fe33c2b5a5884fbdcb4842102b22 (patch)
tree19adf76d0380dac6537504549cb3ef7c832fee13 /src/cfg_gfx/opengl.H
parent28b94ce5e78c26a4963f8db5efc2492fbc44b9e9 (diff)
Fixing vertex implementation
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11032 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/cfg_gfx/opengl.H')
-rw-r--r--src/cfg_gfx/opengl.H10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cfg_gfx/opengl.H b/src/cfg_gfx/opengl.H
index 4ad56770a..86abea41a 100644
--- a/src/cfg_gfx/opengl.H
+++ b/src/cfg_gfx/opengl.H
@@ -86,6 +86,16 @@ public:
// void end_complex_polygon();
// void gap();
// void circle(double x, double y, double r);
+ void begin_complex_polygon() { }
+ void transformed_vertex(double xf, double yf) { }
+ void vertex(double x, double y) { }
+ void end_points() { }
+ void end_line() { }
+ void end_loop() { }
+ void end_polygon() { }
+ void end_complex_polygon() { }
+ void gap() { }
+ void circle(double x, double y, double r) { }
};