| 
									
										
										
										
											2013-04-17 23:29:41 -04:00
										 |  |  | // Copyright 2013 Dolphin Emulator Project
 | 
					
						
							|  |  |  | // Licensed under GPLv2
 | 
					
						
							|  |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 14:35:49 +00:00
										 |  |  | #ifndef _RASTERFONT_H_
 | 
					
						
							|  |  |  | #define _RASTERFONT_H_
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-28 00:52:44 +01:00
										 |  |  | namespace OGL { | 
					
						
							| 
									
										
										
										
											2013-04-15 16:28:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | class RasterFont { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2013-04-15 16:28:55 -04:00
										 |  |  | 	RasterFont(); | 
					
						
							|  |  |  | 	~RasterFont(void); | 
					
						
							|  |  |  | 	static int debug; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:37:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void printMultilineText(const char *text, double x, double y, double z, int bbWidth, int bbHeight, u32 color); | 
					
						
							| 
									
										
										
										
											2009-07-19 09:15:00 +00:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2012-12-11 12:37:08 +01:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	u32 VBO; | 
					
						
							|  |  |  | 	u32 VAO; | 
					
						
							|  |  |  | 	u32 texture; | 
					
						
							| 
									
										
										
										
											2012-12-11 22:08:53 +01:00
										 |  |  | 	u32 uniform_color_id; | 
					
						
							|  |  |  | 	u32 cached_color; | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-28 00:52:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 14:35:49 +00:00
										 |  |  | #endif // _RASTERFONT_H_
 |