90178b7119d47476c35c2743eabb9e9cb2dd26a1
[occt.git] / src / Graphic3d / Graphic3d_GraphicDriver_2.cxx
1 // File   Graphic3d_GraphicDriver_2.cxx
2 // Created  Mardi 28 janvier 1997
3 // Author CAL
4 //              15/09/97 ; PCT : ajout InquireTextureAvailable() pour les textures
5 //              11/97 ; CAL : retrait de la dependance avec math
6 //      02.15.100 : JR : Clutter
7
8 //-Copyright  MatraDatavision 1997
9
10 //-Version  
11
12 //-Design Declaration des variables specifiques aux Drivers
13
14 //-Warning  Un driver encapsule les Pex et OpenGl drivers
15
16 //-References 
17
18 //-Language C++ 2.0
19
20 //-Declarations
21
22 // for the class
23 #include <Graphic3d_GraphicDriver.jxx>
24
25 #include <TColStd_Array2OfReal.hxx>
26
27 #include <Aspect_DriverDefinitionError.hxx>
28
29 //-Aliases
30
31 //-Global data definitions
32
33 //-Methods, in order
34
35 Standard_Integer Graphic3d_GraphicDriver::InquireLightLimit () {
36   return Standard_False;
37 }
38
39 void Graphic3d_GraphicDriver::InquireMat (const Graphic3d_CView&
40                                           , TColStd_Array2OfReal&
41                                           , TColStd_Array2OfReal&
42                                           )
43 {
44 }
45
46 Standard_Integer Graphic3d_GraphicDriver::InquirePlaneLimit ()
47 {
48   return Standard_False;
49 }
50
51 Standard_Integer Graphic3d_GraphicDriver::InquireViewLimit () 
52 {
53   return Standard_False;
54 }
55
56
57
58 Standard_Boolean Graphic3d_GraphicDriver::InquireTextureAvailable () 
59 {
60   return Standard_False;
61 }
62