From 9fb4ab106f17290faf65146d4b005885507c1900 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 19 May 2018 14:24:37 +0000 Subject: [Travis] Rebuilding documentation --- batch_8h_source.html | 125 --------------------------------------------------- 1 file changed, 125 deletions(-) delete mode 100644 batch_8h_source.html (limited to 'batch_8h_source.html') diff --git a/batch_8h_source.html b/batch_8h_source.html deleted file mode 100644 index 9a08182f..00000000 --- a/batch_8h_source.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -yage/render/batch.h Source File - - - - - - - - - - -
-
- - - - - - - -
-
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 
-
9 #ifndef YAGE_CORE_BATCH_H
-
10 #define YAGE_CORE_BATCH_H
-
11 
-
12 namespace yage
-
13 {
-
14 
-
33 class Batch
-
34 {
-
35 public:
-
36  virtual bool init();
-
37  virtual void begin();
-
38  virtual void end();
-
39  virtual void render();
-
40 };
-
41 
-
42 } // namespace yage
-
43 
-
44 #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:33
-
virtual bool init()
-
virtual void render()
-
virtual void end()
-
- - - - -- cgit