Use a single widget for resize, always show handle
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
ec15f95f32
commit
5282da24e9
6 changed files with 77 additions and 58 deletions
|
@ -49,12 +49,14 @@ void nvgluDeleteFramebuffer(NVGLUframebuffer* fb) {}
|
|||
|
||||
extern "C" {
|
||||
|
||||
typedef struct GLFWcursor GLFWcursor;
|
||||
typedef struct GLFWwindow GLFWwindow;
|
||||
|
||||
GLFWAPI const char* glfwGetClipboardString(GLFWwindow* window) { return nullptr; }
|
||||
GLFWAPI void glfwSetClipboardString(GLFWwindow* window, const char*) {}
|
||||
GLFWAPI const char* glfwGetKeyName(int key, int scancode) { return nullptr; }
|
||||
GLFWAPI int glfwGetKeyScancode(int key) { return 0; }
|
||||
GLFWAPI const char* glfwGetClipboardString(GLFWwindow*) { return nullptr; }
|
||||
GLFWAPI void glfwSetClipboardString(GLFWwindow*, const char*) {}
|
||||
GLFWAPI void glfwSetCursor(GLFWwindow*, GLFWcursor*) {}
|
||||
GLFWAPI const char* glfwGetKeyName(int, int) { return nullptr; }
|
||||
GLFWAPI int glfwGetKeyScancode(int) { return 0; }
|
||||
GLFWAPI double glfwGetTime(void) { return 0.0; }
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue