From 460d9bda5f03c5da29864fa9dd160848097be51b Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 6 Jan 2018 11:36:50 +0000 Subject: [Travis] Rebuilding documentation --- batch_8h_source.html | 146 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 batch_8h_source.html (limited to 'batch_8h_source.html') diff --git a/batch_8h_source.html b/batch_8h_source.html new file mode 100644 index 00000000..21b68062 --- /dev/null +++ b/batch_8h_source.html @@ -0,0 +1,146 @@ + + + + + + +YAGE: yage/render/batch.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
YAGE +  v0.1.3.0 +
+
Yet Another Game Engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+ All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
+ + +
+ +
+ +
+
+
batch.h
+
+
+Go to the documentation of this file.
1 #ifndef YAGE_CORE_BATCH_H
+
2 #define YAGE_CORE_BATCH_H
+
3 
+
4 namespace yage
+
5 {
+
6 
+
25 class Batch
+
26 {
+
27 public:
+
28  virtual bool init();
+
29  virtual void begin();
+
30  virtual void end();
+
31  virtual void render();
+
32 };
+
33 
+
34 } // namespace yage
+
35 
+
36 #endif
+
virtual void begin()
+
The Batch class will be the base class for all the different batching processes that might use differ...
Definition: batch.h:25
+
virtual bool init()
+
virtual void render()
+
virtual void end()
+
+
+ + + + -- cgit