GteGL4TextureRT.cpp
Go to the documentation of this file.
1 // David Eberly, Geometric Tools, Redmond WA 98052
2 // Copyright (c) 1998-2017
3 // Distributed under the Boost Software License, Version 1.0.
4 // http://www.boost.org/LICENSE_1_0.txt
5 // http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
6 // File Version: 3.0.0 (2016/06/19)
7 
8 #include <GTEnginePCH.h>
9 #include <LowLevel/GteLogger.h>
11 using namespace gte;
12 
14  :
15  GL4Texture2(texture)
16 {
17 }
18 
19 std::shared_ptr<GEObject> GL4TextureRT::Create(void*, GraphicsObject const* object)
20 {
21  if (object->GetType() == GT_TEXTURE_RT)
22  {
23  return std::make_shared<GL4TextureRT>(
24  static_cast<TextureRT const*>(object));
25  }
26 
27  LogError("Invalid object type.");
28  return nullptr;
29 }
30 
32 {
33  auto texture = GetTexture();
34 
35  return texture && texture->HasMipmaps() && texture->WantAutogenerateMipmaps();
36 }
GL4TextureRT(TextureRT const *texture)
GT_TEXTURE_RT
GraphicsObjectType GetType() const
virtual bool CanAutoGenerateMipmaps() const override
TextureRT * GetTexture() const
#define LogError(message)
Definition: GteLogger.h:92
GLuint texture
Definition: glcorearb.h:410
static std::shared_ptr< GEObject > Create(void *unused, GraphicsObject const *object)
GLuint object
Definition: glext.h:6426


geometric_tools_engine
Author(s): Yijiang Huang
autogenerated on Thu Jul 18 2019 04:00:00