shithub: tinygl

ref: d7b57787a23d62c7f2a23abdf569d139e266068b
dir: /src/error_check_no_context.h/

View raw version
#ifndef RETVAL
#define RETVAL /* a comment*/
#endif

#if TGL_FEATURE_ERROR_CHECK == 1


#if TGL_FEATURE_STRICT_OOM_CHECKS == 1
GLContext* c = gl_get_context();
if (c->error_flag == GL_OUT_OF_MEMORY)
	return RETVAL;
#elif defined(NEED_CONTEXT)
GLContext* c = gl_get_context();
#endif

#endif

#undef RETVAL
#undef NEED_CONTEXT