GteGL4IndexBuffer.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  :
16 {
17  Initialize();
18 }
19 
20 std::shared_ptr<GEObject> GL4IndexBuffer::Create(void*, GraphicsObject const* object)
21 {
22  if (object->GetType() == GT_INDEX_BUFFER)
23  {
24  return std::make_shared<GL4IndexBuffer>(
25  static_cast<IndexBuffer const*>(object));
26  }
27 
28  LogError("Invalid object type.");
29  return nullptr;
30 }
31 
33 {
35 }
36 
38 {
39  glBindBuffer(mType, 0);
40 }
GraphicsObjectType GetType() const
GL4IndexBuffer(IndexBuffer const *ibuffer)
#define GL_ELEMENT_ARRAY_BUFFER
Definition: glcorearb.h:626
#define LogError(message)
Definition: GteLogger.h:92
void APIENTRY glBindBuffer(GLenum target, GLuint buffer)
Definition: GteOpenGL.cpp:1534
GT_INDEX_BUFFER
static std::shared_ptr< GEObject > Create(void *unused, GraphicsObject const *object)
GLuint object
Definition: glext.h:6426
virtual void Initialize()


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