fix some stuff

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@654 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-09 12:13:46 +00:00
parent ddd5e30de8
commit 2f5539048b
9 changed files with 14 additions and 19 deletions

View File

@@ -36,7 +36,7 @@ MWDECL MwClass MwOpenGLClass;
*/
MwInline void MwOpenGLMakeCurrent(MwWidget handle) {
MwVaWidgetExecute(handle, "mwOpenGLMakeCurrent", NULL);
};
}
/*!
* @brief Get a procedure from OpenGL
@@ -48,7 +48,7 @@ MwInline void* MwOpenGLGetProcAddress(MwWidget handle, const char* name) {
void* out;
MwVaWidgetExecute(handle, "mwOpenGLGetProcAddress", &out, name);
return out;
};
}
/*!
* @brief Swaps the buffer of OpenGL context
@@ -56,7 +56,7 @@ MwInline void* MwOpenGLGetProcAddress(MwWidget handle, const char* name) {
*/
MwInline void MwOpenGLSwapBuffer(MwWidget handle) {
MwVaWidgetExecute(handle, "mwOpenGLSwapBuffer", NULL);
};
}
#ifdef __cplusplus
}