Revision 6454151bd41eb2c7e1dfc079b90f27fc62be77d6 authored by Philip Trettner on 17 April 2022, 08:24:26 UTC, committed by Philip Trettner on 17 April 2022, 08:24:26 UTC
Update xxHash source files See merge request Glow/glow!40
glow.hh
#pragma once
namespace glow
{
/// OpenGL Version information
/// Only valid after initGLOW
extern struct _glowGLVersion
{
int major;
int minor;
int total; // like 43 for 4.3
} OGLVersion;
/**
* @brief initializes the GLOW Library
*
* In particular:
* - loads OpenGL function
* - performs certain static initialization
*
* @return true on success
*/
bool initGLOW();
/// returns true if glow is initialized in this thread
bool isInitialized();
/// Asserts that glow is initialized
/// Fails if not initialized OR wrong thread
#ifdef GLOW_PERFORM_VALIDATION
void checkValidGLOW();
#else
#define checkValidGLOW() (void)0
#endif
}

Computing file changes ...