mirror of
https://github.com/glfw/glfw.git
synced 2025-12-20 06:01:56 +00:00
Compare commits
9 Commits
bf3e2a48b9
...
c549b83d1e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c549b83d1e | ||
|
|
936307558e | ||
|
|
4df5129529 | ||
|
|
6de70d8252 | ||
|
|
cdcd9c194a | ||
|
|
596cabbe58 | ||
|
|
a02b287b1d | ||
|
|
7c2e8c7c5a | ||
|
|
58f2aab759 |
@ -282,10 +282,12 @@ video tutorials.
|
|||||||
- Corentin Wallez
|
- Corentin Wallez
|
||||||
- Torsten Walluhn
|
- Torsten Walluhn
|
||||||
- Patrick Walton
|
- Patrick Walton
|
||||||
|
- Ivor Wanders
|
||||||
- Jim Wang
|
- Jim Wang
|
||||||
- Xo Wang
|
- Xo Wang
|
||||||
- Andre Weissflog
|
- Andre Weissflog
|
||||||
- Jay Weisskopf
|
- Jay Weisskopf
|
||||||
|
- Drew Weymouth
|
||||||
- Frank Wille
|
- Frank Wille
|
||||||
- Andy Williams
|
- Andy Williams
|
||||||
- Joel Winarske
|
- Joel Winarske
|
||||||
|
|||||||
@ -145,6 +145,10 @@ information on what to include when reporting a bug.
|
|||||||
- [Wayland] Bugfix: The cursor position was not updated when clicking through
|
- [Wayland] Bugfix: The cursor position was not updated when clicking through
|
||||||
from a modal to the content area
|
from a modal to the content area
|
||||||
- [X11] Bugfix: Running without a WM could trigger an assert (#2593,#2601,#2631)
|
- [X11] Bugfix: Running without a WM could trigger an assert (#2593,#2601,#2631)
|
||||||
|
- [X11] Bugfix: Occasional crash when an idle display awakes (#2766)
|
||||||
|
- [X11] Bugfix: Prevent BadWindow when creating small windows with a content scale
|
||||||
|
less than 1 (#2754)
|
||||||
|
- [X11] Bugfix: Clamp width and height to >= 1 to prevent BadValue error and app exit
|
||||||
- [Null] Added Vulkan 'window' surface creation via `VK_EXT_headless_surface`
|
- [Null] Added Vulkan 'window' surface creation via `VK_EXT_headless_surface`
|
||||||
- [Null] Added EGL context creation on Mesa via `EGL_MESA_platform_surfaceless`
|
- [Null] Added EGL context creation on Mesa via `EGL_MESA_platform_surfaceless`
|
||||||
- [EGL] Allowed native access on Wayland with `GLFW_CONTEXT_CREATION_API` set to
|
- [EGL] Allowed native access on Wayland with `GLFW_CONTEXT_CREATION_API` set to
|
||||||
|
|||||||
@ -1180,7 +1180,7 @@ extern "C" {
|
|||||||
#define GLFW_WAYLAND_PREFER_LIBDECOR 0x00038001
|
#define GLFW_WAYLAND_PREFER_LIBDECOR 0x00038001
|
||||||
#define GLFW_WAYLAND_DISABLE_LIBDECOR 0x00038002
|
#define GLFW_WAYLAND_DISABLE_LIBDECOR 0x00038002
|
||||||
|
|
||||||
#define GLFW_ANY_POSITION 0x80000000
|
#define GLFW_ANY_POSITION 0x7FFFFFFF
|
||||||
|
|
||||||
/*! @defgroup shapes Standard cursor shapes
|
/*! @defgroup shapes Standard cursor shapes
|
||||||
* @brief Standard system cursor shapes.
|
* @brief Standard system cursor shapes.
|
||||||
|
|||||||
@ -272,7 +272,7 @@ EGLenum _glfwGetEGLPlatformCocoa(EGLint** attribs);
|
|||||||
EGLNativeDisplayType _glfwGetEGLNativeDisplayCocoa(void);
|
EGLNativeDisplayType _glfwGetEGLNativeDisplayCocoa(void);
|
||||||
EGLNativeWindowType _glfwGetEGLNativeWindowCocoa(_GLFWwindow* window);
|
EGLNativeWindowType _glfwGetEGLNativeWindowCocoa(_GLFWwindow* window);
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsCocoa(char** extensions);
|
void _glfwGetRequiredInstanceExtensionsCocoa(const char** extensions);
|
||||||
GLFWbool _glfwGetPhysicalDevicePresentationSupportCocoa(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
GLFWbool _glfwGetPhysicalDevicePresentationSupportCocoa(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
||||||
VkResult _glfwCreateWindowSurfaceCocoa(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
VkResult _glfwCreateWindowSurfaceCocoa(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
||||||
|
|
||||||
|
|||||||
@ -1922,7 +1922,7 @@ EGLNativeWindowType _glfwGetEGLNativeWindowCocoa(_GLFWwindow* window)
|
|||||||
return window->ns.layer;
|
return window->ns.layer;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsCocoa(char** extensions)
|
void _glfwGetRequiredInstanceExtensionsCocoa(const char** extensions)
|
||||||
{
|
{
|
||||||
if (_glfw.vk.KHR_surface && _glfw.vk.EXT_metal_surface)
|
if (_glfw.vk.KHR_surface && _glfw.vk.EXT_metal_surface)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1289,7 +1289,7 @@ GLFWAPI int glfwUpdateGamepadMappings(const char* string)
|
|||||||
const size_t length = strcspn(c, "\r\n");
|
const size_t length = strcspn(c, "\r\n");
|
||||||
if (length < sizeof(line))
|
if (length < sizeof(line))
|
||||||
{
|
{
|
||||||
_GLFWmapping mapping = {{0}};
|
_GLFWmapping mapping = { .name = {0} };
|
||||||
|
|
||||||
memcpy(line, c, length);
|
memcpy(line, c, length);
|
||||||
line[length] = '\0';
|
line[length] = '\0';
|
||||||
|
|||||||
@ -755,7 +755,7 @@ struct _GLFWplatform
|
|||||||
EGLNativeDisplayType (*getEGLNativeDisplay)(void);
|
EGLNativeDisplayType (*getEGLNativeDisplay)(void);
|
||||||
EGLNativeWindowType (*getEGLNativeWindow)(_GLFWwindow*);
|
EGLNativeWindowType (*getEGLNativeWindow)(_GLFWwindow*);
|
||||||
// vulkan
|
// vulkan
|
||||||
void (*getRequiredInstanceExtensions)(char**);
|
void (*getRequiredInstanceExtensions)(const char**);
|
||||||
GLFWbool (*getPhysicalDevicePresentationSupport)(VkInstance,VkPhysicalDevice,uint32_t);
|
GLFWbool (*getPhysicalDevicePresentationSupport)(VkInstance,VkPhysicalDevice,uint32_t);
|
||||||
VkResult (*createWindowSurface)(VkInstance,_GLFWwindow*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
VkResult (*createWindowSurface)(VkInstance,_GLFWwindow*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
||||||
};
|
};
|
||||||
@ -862,7 +862,7 @@ struct _GLFWlibrary
|
|||||||
struct {
|
struct {
|
||||||
GLFWbool available;
|
GLFWbool available;
|
||||||
void* handle;
|
void* handle;
|
||||||
char* extensions[2];
|
const char* extensions[2];
|
||||||
PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
|
PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
|
||||||
GLFWbool KHR_surface;
|
GLFWbool KHR_surface;
|
||||||
GLFWbool KHR_win32_surface;
|
GLFWbool KHR_win32_surface;
|
||||||
|
|||||||
@ -274,7 +274,7 @@ EGLenum _glfwGetEGLPlatformNull(EGLint** attribs);
|
|||||||
EGLNativeDisplayType _glfwGetEGLNativeDisplayNull(void);
|
EGLNativeDisplayType _glfwGetEGLNativeDisplayNull(void);
|
||||||
EGLNativeWindowType _glfwGetEGLNativeWindowNull(_GLFWwindow* window);
|
EGLNativeWindowType _glfwGetEGLNativeWindowNull(_GLFWwindow* window);
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsNull(char** extensions);
|
void _glfwGetRequiredInstanceExtensionsNull(const char** extensions);
|
||||||
GLFWbool _glfwGetPhysicalDevicePresentationSupportNull(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
GLFWbool _glfwGetPhysicalDevicePresentationSupportNull(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
||||||
VkResult _glfwCreateWindowSurfaceNull(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
VkResult _glfwCreateWindowSurfaceNull(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
||||||
|
|
||||||
|
|||||||
@ -701,7 +701,7 @@ int _glfwGetKeyScancodeNull(int key)
|
|||||||
return _glfw.null.scancodes[key];
|
return _glfw.null.scancodes[key];
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsNull(char** extensions)
|
void _glfwGetRequiredInstanceExtensionsNull(const char** extensions)
|
||||||
{
|
{
|
||||||
if (!_glfw.vk.KHR_surface || !_glfw.vk.EXT_headless_surface)
|
if (!_glfw.vk.KHR_surface || !_glfw.vk.EXT_headless_surface)
|
||||||
return;
|
return;
|
||||||
|
|||||||
@ -44,10 +44,17 @@ void _glfwPlatformFreeModule(void* module)
|
|||||||
dlclose(module);
|
dlclose(module);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
||||||
|
#endif
|
||||||
GLFWproc _glfwPlatformGetModuleSymbol(void* module, const char* name)
|
GLFWproc _glfwPlatformGetModuleSymbol(void* module, const char* name)
|
||||||
{
|
{
|
||||||
return dlsym(module, name);
|
return (GLFWproc)dlsym(module, name);
|
||||||
}
|
}
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // GLFW_BUILD_POSIX_MODULE
|
#endif // GLFW_BUILD_POSIX_MODULE
|
||||||
|
|
||||||
|
|||||||
@ -150,7 +150,7 @@ GLFWbool _glfwInitVulkan(int mode)
|
|||||||
|
|
||||||
_glfw.vk.available = GLFW_TRUE;
|
_glfw.vk.available = GLFW_TRUE;
|
||||||
|
|
||||||
_glfw.platform.getRequiredInstanceExtensions(_glfw.vk.extensions);
|
_glfw.platform.getRequiredInstanceExtensions((const char **)_glfw.vk.extensions);
|
||||||
|
|
||||||
return GLFW_TRUE;
|
return GLFW_TRUE;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -540,7 +540,7 @@ EGLenum _glfwGetEGLPlatformWin32(EGLint** attribs);
|
|||||||
EGLNativeDisplayType _glfwGetEGLNativeDisplayWin32(void);
|
EGLNativeDisplayType _glfwGetEGLNativeDisplayWin32(void);
|
||||||
EGLNativeWindowType _glfwGetEGLNativeWindowWin32(_GLFWwindow* window);
|
EGLNativeWindowType _glfwGetEGLNativeWindowWin32(_GLFWwindow* window);
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsWin32(char** extensions);
|
void _glfwGetRequiredInstanceExtensionsWin32(const char** extensions);
|
||||||
GLFWbool _glfwGetPhysicalDevicePresentationSupportWin32(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
GLFWbool _glfwGetPhysicalDevicePresentationSupportWin32(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
||||||
VkResult _glfwCreateWindowSurfaceWin32(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
VkResult _glfwCreateWindowSurfaceWin32(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
||||||
|
|
||||||
|
|||||||
@ -2501,7 +2501,7 @@ EGLNativeWindowType _glfwGetEGLNativeWindowWin32(_GLFWwindow* window)
|
|||||||
return window->win32.handle;
|
return window->win32.handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsWin32(char** extensions)
|
void _glfwGetRequiredInstanceExtensionsWin32(const char** extensions)
|
||||||
{
|
{
|
||||||
if (!_glfw.vk.KHR_surface || !_glfw.vk.KHR_win32_surface)
|
if (!_glfw.vk.KHR_surface || !_glfw.vk.KHR_win32_surface)
|
||||||
return;
|
return;
|
||||||
|
|||||||
@ -243,7 +243,7 @@ void libdecorHandleError(struct libdecor* context,
|
|||||||
|
|
||||||
static const struct libdecor_interface libdecorInterface =
|
static const struct libdecor_interface libdecorInterface =
|
||||||
{
|
{
|
||||||
libdecorHandleError
|
.error = libdecorHandleError
|
||||||
};
|
};
|
||||||
|
|
||||||
static void libdecorReadyCallback(void* userData,
|
static void libdecorReadyCallback(void* userData,
|
||||||
|
|||||||
@ -674,7 +674,7 @@ EGLenum _glfwGetEGLPlatformWayland(EGLint** attribs);
|
|||||||
EGLNativeDisplayType _glfwGetEGLNativeDisplayWayland(void);
|
EGLNativeDisplayType _glfwGetEGLNativeDisplayWayland(void);
|
||||||
EGLNativeWindowType _glfwGetEGLNativeWindowWayland(_GLFWwindow* window);
|
EGLNativeWindowType _glfwGetEGLNativeWindowWayland(_GLFWwindow* window);
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsWayland(char** extensions);
|
void _glfwGetRequiredInstanceExtensionsWayland(const char** extensions);
|
||||||
GLFWbool _glfwGetPhysicalDevicePresentationSupportWayland(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
GLFWbool _glfwGetPhysicalDevicePresentationSupportWayland(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
||||||
VkResult _glfwCreateWindowSurfaceWayland(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
VkResult _glfwCreateWindowSurfaceWayland(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
||||||
|
|
||||||
|
|||||||
@ -620,8 +620,8 @@ static void surfaceHandleLeave(void* userData,
|
|||||||
|
|
||||||
static const struct wl_surface_listener surfaceListener =
|
static const struct wl_surface_listener surfaceListener =
|
||||||
{
|
{
|
||||||
surfaceHandleEnter,
|
.enter = surfaceHandleEnter,
|
||||||
surfaceHandleLeave
|
.leave = surfaceHandleLeave
|
||||||
};
|
};
|
||||||
|
|
||||||
static void setIdleInhibitor(_GLFWwindow* window, GLFWbool enable)
|
static void setIdleInhibitor(_GLFWwindow* window, GLFWbool enable)
|
||||||
@ -762,8 +762,8 @@ static void xdgToplevelHandleClose(void* userData,
|
|||||||
|
|
||||||
static const struct xdg_toplevel_listener xdgToplevelListener =
|
static const struct xdg_toplevel_listener xdgToplevelListener =
|
||||||
{
|
{
|
||||||
xdgToplevelHandleConfigure,
|
.configure = xdgToplevelHandleConfigure,
|
||||||
xdgToplevelHandleClose
|
.close = xdgToplevelHandleClose
|
||||||
};
|
};
|
||||||
|
|
||||||
static void xdgSurfaceHandleConfigure(void* userData,
|
static void xdgSurfaceHandleConfigure(void* userData,
|
||||||
@ -937,10 +937,10 @@ void libdecorFrameHandleDismissPopup(struct libdecor_frame* frame,
|
|||||||
|
|
||||||
static const struct libdecor_frame_interface libdecorFrameInterface =
|
static const struct libdecor_frame_interface libdecorFrameInterface =
|
||||||
{
|
{
|
||||||
libdecorFrameHandleConfigure,
|
.configure = libdecorFrameHandleConfigure,
|
||||||
libdecorFrameHandleClose,
|
.close = libdecorFrameHandleClose,
|
||||||
libdecorFrameHandleCommit,
|
.commit = libdecorFrameHandleCommit,
|
||||||
libdecorFrameHandleDismissPopup
|
.dismiss_popup = libdecorFrameHandleDismissPopup
|
||||||
};
|
};
|
||||||
|
|
||||||
static GLFWbool createLibdecorFrame(_GLFWwindow* window)
|
static GLFWbool createLibdecorFrame(_GLFWwindow* window)
|
||||||
@ -1290,7 +1290,7 @@ static GLFWbool flushDisplay(void)
|
|||||||
if (errno != EAGAIN)
|
if (errno != EAGAIN)
|
||||||
return GLFW_FALSE;
|
return GLFW_FALSE;
|
||||||
|
|
||||||
struct pollfd fd = { wl_display_get_fd(_glfw.wl.display), POLLOUT };
|
struct pollfd fd = { .fd = wl_display_get_fd(_glfw.wl.display), POLLOUT };
|
||||||
|
|
||||||
while (poll(&fd, 1, -1) == -1)
|
while (poll(&fd, 1, -1) == -1)
|
||||||
{
|
{
|
||||||
@ -1664,11 +1664,11 @@ static void pointerHandleAxis(void* userData,
|
|||||||
|
|
||||||
static const struct wl_pointer_listener pointerListener =
|
static const struct wl_pointer_listener pointerListener =
|
||||||
{
|
{
|
||||||
pointerHandleEnter,
|
.enter = pointerHandleEnter,
|
||||||
pointerHandleLeave,
|
.leave = pointerHandleLeave,
|
||||||
pointerHandleMotion,
|
.motion = pointerHandleMotion,
|
||||||
pointerHandleButton,
|
.button = pointerHandleButton,
|
||||||
pointerHandleAxis,
|
.axis = pointerHandleAxis,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void keyboardHandleKeymap(void* userData,
|
static void keyboardHandleKeymap(void* userData,
|
||||||
@ -1977,7 +1977,7 @@ static void dataOfferHandleOffer(void* userData,
|
|||||||
|
|
||||||
static const struct wl_data_offer_listener dataOfferListener =
|
static const struct wl_data_offer_listener dataOfferListener =
|
||||||
{
|
{
|
||||||
dataOfferHandleOffer
|
.offer = dataOfferHandleOffer
|
||||||
};
|
};
|
||||||
|
|
||||||
static void dataDeviceHandleDataOffer(void* userData,
|
static void dataDeviceHandleDataOffer(void* userData,
|
||||||
@ -1996,7 +1996,7 @@ static void dataDeviceHandleDataOffer(void* userData,
|
|||||||
_glfw.wl.offers = offers;
|
_glfw.wl.offers = offers;
|
||||||
_glfw.wl.offerCount++;
|
_glfw.wl.offerCount++;
|
||||||
|
|
||||||
_glfw.wl.offers[_glfw.wl.offerCount - 1] = (_GLFWofferWayland) { offer };
|
_glfw.wl.offers[_glfw.wl.offerCount - 1] = (_GLFWofferWayland) { .offer = offer };
|
||||||
wl_data_offer_add_listener(offer, &dataOfferListener, NULL);
|
wl_data_offer_add_listener(offer, &dataOfferListener, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3185,9 +3185,9 @@ static void dataSourceHandleCancelled(void* userData,
|
|||||||
|
|
||||||
static const struct wl_data_source_listener dataSourceListener =
|
static const struct wl_data_source_listener dataSourceListener =
|
||||||
{
|
{
|
||||||
dataSourceHandleTarget,
|
.target = dataSourceHandleTarget,
|
||||||
dataSourceHandleSend,
|
.send = dataSourceHandleSend,
|
||||||
dataSourceHandleCancelled,
|
.cancelled = dataSourceHandleCancelled,
|
||||||
};
|
};
|
||||||
|
|
||||||
void _glfwSetClipboardStringWayland(const char* string)
|
void _glfwSetClipboardStringWayland(const char* string)
|
||||||
@ -3261,7 +3261,7 @@ EGLNativeWindowType _glfwGetEGLNativeWindowWayland(_GLFWwindow* window)
|
|||||||
return window->wl.egl.window;
|
return window->wl.egl.window;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsWayland(char** extensions)
|
void _glfwGetRequiredInstanceExtensionsWayland(const char** extensions)
|
||||||
{
|
{
|
||||||
if (!_glfw.vk.KHR_surface || !_glfw.vk.KHR_wayland_surface)
|
if (!_glfw.vk.KHR_surface || !_glfw.vk.KHR_wayland_surface)
|
||||||
return;
|
return;
|
||||||
|
|||||||
@ -231,7 +231,7 @@ static void createKeyTables(void)
|
|||||||
const struct
|
const struct
|
||||||
{
|
{
|
||||||
int key;
|
int key;
|
||||||
char* name;
|
const char* name;
|
||||||
} keymap[] =
|
} keymap[] =
|
||||||
{
|
{
|
||||||
{ GLFW_KEY_GRAVE_ACCENT, "TLDE" },
|
{ GLFW_KEY_GRAVE_ACCENT, "TLDE" },
|
||||||
@ -366,7 +366,7 @@ static void createKeyTables(void)
|
|||||||
// keyboard layout. Because function keys aren't mapped correctly
|
// keyboard layout. Because function keys aren't mapped correctly
|
||||||
// when using traditional KeySym translations, they are mapped
|
// when using traditional KeySym translations, they are mapped
|
||||||
// here instead.
|
// here instead.
|
||||||
for (int i = 0; i < sizeof(keymap) / sizeof(keymap[0]); i++)
|
for (size_t i = 0; i < sizeof(keymap) / sizeof(keymap[0]); i++)
|
||||||
{
|
{
|
||||||
if (strncmp(desc->names->keys[scancode].name,
|
if (strncmp(desc->names->keys[scancode].name,
|
||||||
keymap[i].name,
|
keymap[i].name,
|
||||||
@ -390,7 +390,7 @@ static void createKeyTables(void)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int j = 0; j < sizeof(keymap) / sizeof(keymap[0]); j++)
|
for (size_t j = 0; j < sizeof(keymap) / sizeof(keymap[0]); j++)
|
||||||
{
|
{
|
||||||
if (strncmp(desc->names->key_aliases[i].alias,
|
if (strncmp(desc->names->key_aliases[i].alias,
|
||||||
keymap[j].name,
|
keymap[j].name,
|
||||||
|
|||||||
@ -151,6 +151,11 @@ void _glfwPollMonitorsX11(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
XRRCrtcInfo* ci = XRRGetCrtcInfo(_glfw.x11.display, sr, oi->crtc);
|
XRRCrtcInfo* ci = XRRGetCrtcInfo(_glfw.x11.display, sr, oi->crtc);
|
||||||
|
if (!ci) {
|
||||||
|
XRRFreeOutputInfo(oi);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (ci->rotation == RR_Rotate_90 || ci->rotation == RR_Rotate_270)
|
if (ci->rotation == RR_Rotate_90 || ci->rotation == RR_Rotate_270)
|
||||||
{
|
{
|
||||||
widthMM = oi->mm_height;
|
widthMM = oi->mm_height;
|
||||||
@ -180,8 +185,8 @@ void _glfwPollMonitorsX11(void)
|
|||||||
{
|
{
|
||||||
if (screens[j].x_org == ci->x &&
|
if (screens[j].x_org == ci->x &&
|
||||||
screens[j].y_org == ci->y &&
|
screens[j].y_org == ci->y &&
|
||||||
screens[j].width == ci->width &&
|
screens[j].width == (int)ci->width &&
|
||||||
screens[j].height == ci->height)
|
screens[j].height == (int)ci->height)
|
||||||
{
|
{
|
||||||
monitor->x11.index = j;
|
monitor->x11.index = j;
|
||||||
break;
|
break;
|
||||||
@ -573,7 +578,7 @@ void _glfwSetGammaRampX11(_GLFWmonitor* monitor, const GLFWgammaramp* ramp)
|
|||||||
{
|
{
|
||||||
if (_glfw.x11.randr.available && !_glfw.x11.randr.gammaBroken)
|
if (_glfw.x11.randr.available && !_glfw.x11.randr.gammaBroken)
|
||||||
{
|
{
|
||||||
if (XRRGetCrtcGammaSize(_glfw.x11.display, monitor->x11.crtc) != ramp->size)
|
if (XRRGetCrtcGammaSize(_glfw.x11.display, monitor->x11.crtc) != (int)ramp->size)
|
||||||
{
|
{
|
||||||
_glfwInputError(GLFW_PLATFORM_ERROR,
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
||||||
"X11: Gamma ramp size must match current ramp size");
|
"X11: Gamma ramp size must match current ramp size");
|
||||||
|
|||||||
@ -960,7 +960,7 @@ EGLenum _glfwGetEGLPlatformX11(EGLint** attribs);
|
|||||||
EGLNativeDisplayType _glfwGetEGLNativeDisplayX11(void);
|
EGLNativeDisplayType _glfwGetEGLNativeDisplayX11(void);
|
||||||
EGLNativeWindowType _glfwGetEGLNativeWindowX11(_GLFWwindow* window);
|
EGLNativeWindowType _glfwGetEGLNativeWindowX11(_GLFWwindow* window);
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsX11(char** extensions);
|
void _glfwGetRequiredInstanceExtensionsX11(const char** extensions);
|
||||||
GLFWbool _glfwGetPhysicalDevicePresentationSupportX11(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
GLFWbool _glfwGetPhysicalDevicePresentationSupportX11(VkInstance instance, VkPhysicalDevice device, uint32_t queuefamily);
|
||||||
VkResult _glfwCreateWindowSurfaceX11(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
VkResult _glfwCreateWindowSurfaceX11(VkInstance instance, _GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
|
||||||
|
|
||||||
|
|||||||
@ -62,7 +62,7 @@
|
|||||||
//
|
//
|
||||||
static GLFWbool waitForX11Event(double* timeout)
|
static GLFWbool waitForX11Event(double* timeout)
|
||||||
{
|
{
|
||||||
struct pollfd fd = { ConnectionNumber(_glfw.x11.display), POLLIN };
|
struct pollfd fd = { .fd = ConnectionNumber(_glfw.x11.display), .events = POLLIN };
|
||||||
|
|
||||||
while (!XPending(_glfw.x11.display))
|
while (!XPending(_glfw.x11.display))
|
||||||
{
|
{
|
||||||
@ -97,7 +97,7 @@ static GLFWbool waitForAnyEvent(double* timeout)
|
|||||||
if (!_glfwPollPOSIX(fds, sizeof(fds) / sizeof(fds[0]), timeout))
|
if (!_glfwPollPOSIX(fds, sizeof(fds) / sizeof(fds[0]), timeout))
|
||||||
return GLFW_FALSE;
|
return GLFW_FALSE;
|
||||||
|
|
||||||
for (int i = 1; i < sizeof(fds) / sizeof(fds[0]); i++)
|
for (size_t i = 1; i < sizeof(fds) / sizeof(fds[0]); i++)
|
||||||
{
|
{
|
||||||
if (fds[i].revents & POLLIN)
|
if (fds[i].revents & POLLIN)
|
||||||
return GLFW_TRUE;
|
return GLFW_TRUE;
|
||||||
@ -235,10 +235,10 @@ static int translateState(int state)
|
|||||||
|
|
||||||
// Translates an X11 key code to a GLFW key token
|
// Translates an X11 key code to a GLFW key token
|
||||||
//
|
//
|
||||||
static int translateKey(int scancode)
|
static int translateKey(unsigned int scancode)
|
||||||
{
|
{
|
||||||
// Use the pre-filled LUT (see createKeyTables() in x11_init.c)
|
// Use the pre-filled LUT (see createKeyTables() in x11_init.c)
|
||||||
if (scancode < 0 || scancode > 255)
|
if (scancode > 255)
|
||||||
return GLFW_KEY_UNKNOWN;
|
return GLFW_KEY_UNKNOWN;
|
||||||
|
|
||||||
return _glfw.x11.keycodes[scancode];
|
return _glfw.x11.keycodes[scancode];
|
||||||
@ -576,6 +576,10 @@ static GLFWbool createNativeWindow(_GLFWwindow* window,
|
|||||||
height *= _glfw.x11.contentScaleY;
|
height *= _glfw.x11.contentScaleY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The dimensions must be nonzero, or a BadValue error results.
|
||||||
|
width = _glfw_max(1, width);
|
||||||
|
height = _glfw_max(1, height);
|
||||||
|
|
||||||
int xpos = 0, ypos = 0;
|
int xpos = 0, ypos = 0;
|
||||||
|
|
||||||
if (wndconfig->xpos != GLFW_ANY_POSITION && wndconfig->ypos != GLFW_ANY_POSITION)
|
if (wndconfig->xpos != GLFW_ANY_POSITION && wndconfig->ypos != GLFW_ANY_POSITION)
|
||||||
@ -1145,7 +1149,7 @@ static void releaseMonitor(_GLFWwindow* window)
|
|||||||
//
|
//
|
||||||
static void processEvent(XEvent *event)
|
static void processEvent(XEvent *event)
|
||||||
{
|
{
|
||||||
int keycode = 0;
|
unsigned int keycode = 0;
|
||||||
Bool filtered = False;
|
Bool filtered = False;
|
||||||
|
|
||||||
// HACK: Save scancode as some IMs clear the field in XFilterEvent
|
// HACK: Save scancode as some IMs clear the field in XFilterEvent
|
||||||
@ -2203,6 +2207,10 @@ void _glfwGetWindowSizeX11(_GLFWwindow* window, int* width, int* height)
|
|||||||
|
|
||||||
void _glfwSetWindowSizeX11(_GLFWwindow* window, int width, int height)
|
void _glfwSetWindowSizeX11(_GLFWwindow* window, int width, int height)
|
||||||
{
|
{
|
||||||
|
// The dimensions must be nonzero, or a BadValue error results.
|
||||||
|
width = _glfw_max(1, width);
|
||||||
|
height = _glfw_max(1, height);
|
||||||
|
|
||||||
if (window->monitor)
|
if (window->monitor)
|
||||||
{
|
{
|
||||||
if (window->monitor->window == window)
|
if (window->monitor->window == window)
|
||||||
@ -3133,7 +3141,7 @@ EGLNativeWindowType _glfwGetEGLNativeWindowX11(_GLFWwindow* window)
|
|||||||
return (EGLNativeWindowType) window->x11.handle;
|
return (EGLNativeWindowType) window->x11.handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwGetRequiredInstanceExtensionsX11(char** extensions)
|
void _glfwGetRequiredInstanceExtensionsX11(const char** extensions)
|
||||||
{
|
{
|
||||||
if (!_glfw.vk.KHR_surface)
|
if (!_glfw.vk.KHR_surface)
|
||||||
return;
|
return;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user