gKitGL
StreamQueryManager.h
00001 
00002 #ifndef _GK_STREAM_QUERY_MANAGER_H
00003 #define _GK_STREAM_QUERY_MANAGER_H
00004 
00005 #include "GLManager.h"
00006 #include "GL/GLStreamQuery.h"
00007 
00008 namespace gk {
00009 
00010 inline    
00011 GLStreamQuery *createStreamQuery( const GLenum target, const unsigned int count )
00012 {
00013     return GLManager<GLStreamQuery>::manager().insert(
00014         new GLStreamQuery(target, count) );
00015 }
00016 
00017 }
00018 
00019 
00020 #endif
 All Classes Namespaces Functions Variables Typedefs Enumerator Friends