0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / Graphic3d / Graphic3d_Texture2Dmanual.cxx
CommitLineData
b311480e 1// Created on: 1997-07-28
2// Created by: Pierre CHALAMET
3// Copyright (c) 1997-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
b311480e 16
42cf5bc1 17
18#include <Graphic3d_Texture2Dmanual.hxx>
bf75be98 19#include <Graphic3d_TextureParams.hxx>
42cf5bc1 20#include <Graphic3d_TypeOfTextureMode.hxx>
21#include <Standard_Type.hxx>
22#include <TCollection_AsciiString.hxx>
bf75be98 23
24// =======================================================================
25// function : Graphic3d_Texture2Dmanual
26// purpose :
27// =======================================================================
28Graphic3d_Texture2Dmanual::Graphic3d_Texture2Dmanual (const TCollection_AsciiString& theFileName)
29: Graphic3d_Texture2D (theFileName, Graphic3d_TOT_2D_MIPMAP)
7fd59977 30{
bf75be98 31 myParams->SetModulate (Standard_True);
32 myParams->SetRepeat (Standard_True);
33 myParams->SetFilter (Graphic3d_TOTF_TRILINEAR);
7fd59977 34}
35
bf75be98 36// =======================================================================
37// function : Graphic3d_Texture2Dmanual
38// purpose :
39// =======================================================================
40Graphic3d_Texture2Dmanual::Graphic3d_Texture2Dmanual (const Graphic3d_NameOfTexture2D theNOT)
41: Graphic3d_Texture2D (theNOT, Graphic3d_TOT_2D_MIPMAP)
7fd59977 42{
bf75be98 43 myParams->SetModulate (Standard_True);
44 myParams->SetRepeat (Standard_True);
45 myParams->SetFilter (Graphic3d_TOTF_TRILINEAR);
7fd59977 46}
f376ac72 47
48// =======================================================================
49// function : Graphic3d_Texture2Dmanual
50// purpose :
51// =======================================================================
52Graphic3d_Texture2Dmanual::Graphic3d_Texture2Dmanual (const Handle(Image_PixMap)& thePixMap)
53: Graphic3d_Texture2D (thePixMap, Graphic3d_TOT_2D_MIPMAP)
54{
55 myParams->SetModulate (Standard_True);
56 myParams->SetRepeat (Standard_True);
57 myParams->SetFilter (Graphic3d_TOTF_TRILINEAR);
58}