TDME2 1.9.121
ObjectBuffer.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
12
14
15using std::vector;
16
17/**
18 * Buffers used to transfer data between main memory to graphics board memory
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24 friend class Object3DNodeMesh;
25 friend class EntityRenderer;
33
34private:
35 STATIC_DLL_IMPEXT static vector<ByteBuffer*> byteBuffers;
36
37 /**
38 * Initialize object buffer per thread
39 */
40 static void initialize();
41
42 /**
43 * Disposes object buffer per thread
44 */
45 static void dispose();
46
47public:
48 /**
49 * Get byte buffer for given context
50 * @param bytes bytes
51 * @return byte buffer
52 */
53 static ByteBuffer* getByteBuffer(int contextIdx, int32_t bytes);
54
55};
Engine main class.
Definition: Engine.h:122
Object 3D node mesh specifically for rendering.
Buffers used to transfer data between main memory to graphics board memory.
Definition: ObjectBuffer.h:23
static void initialize()
Initialize object buffer per thread.
static ByteBuffer * getByteBuffer(int contextIdx, int32_t bytes)
Get byte buffer for given context.
static void dispose()
Disposes object buffer per thread.
static STATIC_DLL_IMPEXT vector< ByteBuffer * > byteBuffers
Definition: ObjectBuffer.h:35
Interface to compute shader skinning shader program.
Byte buffer class.
Definition: ByteBuffer.h:24
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11