DI-Guy SDK Documentation  13.5
diguyOglGraphicsLink.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <diguyGraphicsLink.h>
4 
5 
22 {
23 
24 public:
25 
26  diguyOglGraphicsLink(void* internal_data);
27 
28  virtual void begin_character_draw();
29  virtual void end_character_draw();
30  virtual void draw();
31 
32  // only called if diguyScenario::set_instancing_position_callback_enabled()
33  virtual void fill_out_tbo_position_matrix(diguyGraphicsShape * current_shape, float * data_pointer);
34 
35  static int sm_links_drawn;
36  static int sm_num_chars_drawn;
37 };
38 
39 
45 
A class that represents the unique per-character non-shared mesh object. DI-Guy encapsulates its text...
Definition: diguyGraphicsShape.h:51