0022819: Redesign of OpenGl driver
[occt.git] / src / Graphic3d / Graphic3d_GraphicDriver_1.cxx
1 // File   Graphic3d_GraphicDriver_1.cxx
2 // Created  Mardi 28 janvier 1997
3 // Author CAL
4 // Modified     02.15.100 : JR : Clutter
5 //    GG 27/12/02 IMP120302 Add new method Begin(Aspect_Display)
6
7 //-Copyright  MatraDatavision 1997
8
9 //-Version  
10
11 //-Design Declaration des variables specifiques aux Drivers
12
13 //-Warning  Un driver encapsule les Pex et OpenGl drivers
14
15 //-References 
16
17 //-Language C++ 2.0
18
19 //-Declarations
20
21 // for the class
22 #include <Graphic3d_GraphicDriver.jxx>
23
24 #include <Aspect_DriverDefinitionError.hxx>
25
26 //-Aliases
27
28 //-Global data definitions
29
30 //-Methods, in order
31
32
33 Standard_Boolean Graphic3d_GraphicDriver::Begin (const Standard_CString ) {
34   return Standard_True;
35 }
36
37 //RIC120302
38 Standard_Boolean Graphic3d_GraphicDriver::Begin (const Aspect_Display)
39 {
40   return Standard_True;
41 }
42 //RIC120302
43
44 void Graphic3d_GraphicDriver::End () {
45 }
46
47 void Graphic3d_GraphicDriver::BeginAnimation (const Graphic3d_CView&
48                                               ) 
49 {
50 }
51
52 void Graphic3d_GraphicDriver::EndAnimation (const Graphic3d_CView&
53                                             ) 
54 {
55 }