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