arudradey's picture
download
raw
739 Bytes
/*
* Copyright 2021 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
// GL proc address library integration
#if GL_ENABLE_GET_PROC_ADDRESS
extern void* emscripten_GetProcAddress(const char *name);
__attribute__((weak)) // SDL2 will link in its own version of this
void* SDL_GL_GetProcAddress(const char* name) {
return emscripten_GetProcAddress(name);
}
void* eglGetProcAddress(const char* name) {
return emscripten_GetProcAddress(name);
}
void* glfwGetProcAddress(const char* name) {
return emscripten_GetProcAddress(name);
}
#endif

Xet Storage Details

Size:
739 Bytes
·
Xet hash:
78d0c31de46c26912831e270807d5b1a0a5a405a2cd9b45f86890a63c7327f64

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.