summaryrefslogtreecommitdiff
path: root/src/cfg_gfx/opengl.H
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-23 00:24:29 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-23 00:24:29 +0000
commit28b94ce5e78c26a4963f8db5efc2492fbc44b9e9 (patch)
tree7a478e161e1db2c29f15a34471a51300fc23b73c /src/cfg_gfx/opengl.H
parentb44086efb7c88b9f6d27390912bd67ad4373a4f8 (diff)
Hiding fl_vertex form public view
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11031 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/cfg_gfx/opengl.H')
-rw-r--r--src/cfg_gfx/opengl.H25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/cfg_gfx/opengl.H b/src/cfg_gfx/opengl.H
index 7737757b3..4ad56770a 100644
--- a/src/cfg_gfx/opengl.H
+++ b/src/cfg_gfx/opengl.H
@@ -61,6 +61,31 @@ public:
void push_no_clip();
void pop_clip();
void restore_clip();
+ // --- implementation is in src/fl_vertex.cxx which includes src/cfg_gfx/xxx_rect.cxx
+// void transformed_vertex0(COORD_T x, COORD_T y);
+// void fixloop();
+// void push_matrix();
+// void pop_matrix();
+// void mult_matrix(double a, double b, double c, double d, double x, double y);
+// void rotate(double d);
+// void begin_points();
+// void begin_line();
+// void begin_loop();
+// void begin_polygon();
+// void begin_complex_polygon();
+// double transform_x(double x, double y);
+// double transform_y(double x, double y);
+// double transform_dx(double x, double y);
+// double transform_dy(double x, double y);
+// 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);
};