Fresco/Berlin/modules/Drawing/openGL DrawingKit.cc,1.104,1.105 DrawingKit.hh,1.63,1.64
Stefan Seefeld <[email protected]> Tue, 27 May 2003 18:12:49 -0500
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Berlin/modules/Drawing/openGL
In directory purcel:/tmp/cvs-serv21334/Berlin/modules/Drawing/openGL
Modified Files:
DrawingKit.cc DrawingKit.hh
Log Message:
a new Path type, still to be implemented...
Index: DrawingKit.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/modules/Drawing/openGL/DrawingKit.cc,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -d -r1.104 -r1.105
--- DrawingKit.cc 18 Feb 2003 07:26:29 -0000 1.104
+++ DrawingKit.cc 27 May 2003 23:12:46 -0000 1.105
@@ -408,6 +408,10 @@
my_glcontext->add_to_queue(new DrawPath(path));
}
+void openGL::DrawingKit::draw_new_path(const Fresco::NewPath &)
+{
+}
+
void openGL::DrawingKit::draw_rectangle(const Vertex &lower, const Vertex &upper)
{
Fresco::Path path;
Index: DrawingKit.hh
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/modules/Drawing/openGL/DrawingKit.hh,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- DrawingKit.hh 18 Feb 2003 07:26:29 -0000 1.63
+++ DrawingKit.hh 27 May 2003 23:12:46 -0000 1.64
@@ -150,6 +150,7 @@
virtual Fresco::Coord resolution(Fresco::Axis a) { return _drawable->resolution(a);}
virtual void draw_path(const Fresco::Path &);
+ virtual void draw_new_path(const Fresco::NewPath &);
// virtual void drawPatch(const Fresco::Patch &);
virtual void draw_rectangle(const Fresco::Vertex &, const Fresco::Vertex &);
virtual void draw_quadric(const Fresco::DrawingKit::Quadric, Fresco::Coord, Fresco::Coord);