Forgot some EXT functions
This commit is contained in:
		
							parent
							
								
									f87f231129
								
							
						
					
					
						commit
						4620901002
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
					@ -125,19 +125,19 @@ namespace RBO
 | 
				
			||||||
	inline ID gen()
 | 
						inline ID gen()
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		ID id;
 | 
							ID id;
 | 
				
			||||||
		glGenRenderbuffers(1, &id.gl);
 | 
							glGenRenderbuffersEXT(1, &id.gl);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		return id;
 | 
							return id;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	inline void del(ID id)
 | 
						inline void del(ID id)
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		glDeleteRenderbuffers(1, &id.gl);
 | 
							glDeleteRenderbuffersEXT(1, &id.gl);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	inline void bind(ID id)
 | 
						inline void bind(ID id)
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		glBindRenderbuffer(GL_RENDERBUFFER, id.gl);
 | 
							glBindRenderbufferEXT(GL_RENDERBUFFER_EXT, id.gl);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	inline void unbind()
 | 
						inline void unbind()
 | 
				
			||||||
| 
						 | 
					@ -147,7 +147,7 @@ namespace RBO
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	inline void allocEmpty(GLsizei width, GLsizei height)
 | 
						inline void allocEmpty(GLsizei width, GLsizei height)
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA8, width, height);
 | 
							glRenderbufferStorageEXT(GL_RENDERBUFFER_EXT, GL_RGBA8, width, height);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue