TDME2 1.9.121
Texture2DRenderShader.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
7#include <tdme/math/Vector2.h>
8
10
13
14/**
15 * Texture 2D render shader
16 * @author Andreas Drewke
17 * @version $Id$
18 */
20{
21
22private:
23 Renderer* renderer { nullptr };
24 int32_t vertexShaderId { -1 };
25 int32_t fragmentShaderId { -1 };
26 int32_t programId { -1 };
27 int32_t uniformTextureUnit { -1 };
28 int32_t vboVertices { -1 };
29 int32_t vboTextureCoordinates {-1 };
32
33public:
34 /**
35 * Public constructor
36 * @param renderer renderer
37 */
39
40 /**
41 * Public destructor
42 */
44
45 /**
46 * @return if initialized and ready to use
47 */
48 bool isInitialized();
49
50 /**
51 * Initialize
52 */
53 void initialize();
54
55 /**
56 * Use render program
57 */
58 void useProgram();
59
60 /**
61 * Un use render program
62 */
63 void unUseProgram();
64
65 /**
66 * Render texture
67 * @param engine engine to use
68 * @param position 2D position on screen
69 * @param dimension 2D dimenson on screen
70 * @param textureId texture id
71 * @param width optional render target width
72 * @param height optional render target height
73 */
74 void renderTexture(Engine* engine, const Vector2& position, const Vector2& dimension, int textureId, int width = -1, int height = -1);
75
76};
Engine main class.
Definition: Engine.h:122
void renderTexture(Engine *engine, const Vector2 &position, const Vector2 &dimension, int textureId, int width=-1, int height=-1)
Render texture.
2D vector 2 class
Definition: Vector2.h:19