0022734: Memory allocation error in OpenGl
[occt.git] / src / OpenGl / OpenGl_GraphicDriver_705.cxx
1 // Created on: 2011-10-20
2 // Created by: Sergey ZERCHANINOV
3 // Copyright (c) 2011-2012 OPEN CASCADE SAS
4 //
5 // The content of this file is subject to the Open CASCADE Technology Public
6 // License Version 6.5 (the "License"). You may not use the content of this file
7 // except in compliance with the License. Please obtain a copy of the License
8 // at http://www.opencascade.org and read it completely before using this file.
9 //
10 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12 //
13 // The Original Code and all software distributed under the License is
14 // distributed on an "AS IS" basis, without warranty of any kind, and the
15 // Initial Developer hereby disclaims all such warranties, including without
16 // limitation, any warranties of merchantability, fitness for a particular
17 // purpose or non-infringement. Please see the License for the specific terms
18 // and conditions governing the rights and limitations under the License.
19
20
21 #include <OpenGl_GraphicDriver.hxx>
22
23 #include <OpenGl_Group.hxx>
24 #include <OpenGl_Polygon.hxx>
25
26 void OpenGl_GraphicDriver::Polygon (const Graphic3d_CGroup& ACGroup,
27                                    const Graphic3d_Array1OfVertex& AListVertex,
28                                    const Graphic3d_TypeOfPolygon AType,
29                                    const Standard_Boolean )
30 {
31   if (ACGroup.ptrGroup)
32   {
33     OpenGl_Polygon *apolygon = new OpenGl_Polygon( AListVertex, AType );
34     ((OpenGl_Group *)ACGroup.ptrGroup)->AddElement( TelPolygon, apolygon );
35   }
36 }
37
38 void OpenGl_GraphicDriver::Polygon (const Graphic3d_CGroup& ,
39                                    const Graphic3d_Array1OfVertex& ,
40                                    const Graphic3d_Vector& ,
41                                    const Graphic3d_TypeOfPolygon ,
42                                    const Standard_Boolean )
43 {
44   // Do nothing
45 }
46
47 void OpenGl_GraphicDriver::Polygon (const Graphic3d_CGroup& ,
48                                    const Graphic3d_Array1OfVertexN& ,
49                                    const Graphic3d_TypeOfPolygon ,
50                                    const Standard_Boolean )
51 {
52   // Do nothing
53 }
54
55 void OpenGl_GraphicDriver::Polygon (const Graphic3d_CGroup& ,
56                                    const Graphic3d_Array1OfVertexN& ,
57                                    const Graphic3d_Vector& ,
58                                    const Graphic3d_TypeOfPolygon ,
59                                    const Standard_Boolean )
60 {
61   // Do nothing
62 }
63
64 void OpenGl_GraphicDriver::Polygon (const Graphic3d_CGroup& ,
65                                    const Graphic3d_Array1OfVertexNT& ,
66                                    const Graphic3d_TypeOfPolygon ,
67                                    const Standard_Boolean )
68 {
69   // Do nothing
70 }
71
72 void OpenGl_GraphicDriver::PolygonHoles (const Graphic3d_CGroup& ,
73                                         const TColStd_Array1OfInteger& ,
74                                         const Graphic3d_Array1OfVertex& ,
75                                         const Standard_Boolean )
76 {
77   // Do nothing
78 }
79
80 void OpenGl_GraphicDriver::PolygonHoles (const Graphic3d_CGroup& ,
81                                         const TColStd_Array1OfInteger& ,
82                                         const Graphic3d_Array1OfVertex& ,
83                                         const Graphic3d_Vector& ,
84                                         const Standard_Boolean )
85 {
86   // Do nothing
87 }
88
89 void OpenGl_GraphicDriver::PolygonHoles (const Graphic3d_CGroup& ,
90                                         const TColStd_Array1OfInteger& ,
91                                         const Graphic3d_Array1OfVertexN& ,
92                                         const Standard_Boolean )
93 {
94   // Do nothing
95 }
96
97 void OpenGl_GraphicDriver::PolygonHoles (const Graphic3d_CGroup& ,
98                                         const TColStd_Array1OfInteger& ,
99                                         const Graphic3d_Array1OfVertexN& ,
100                                         const Graphic3d_Vector& ,
101                                         const Standard_Boolean )
102 {
103   // Do nothing
104 }