Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3bc6f80
rpng: raise IHDR size-sanity cap from 2 GiB to 4 GiB
LibretroAdmin Apr 17, 2026
06fa68d
discord: fold deps/discord-rpc into network/discord.c as C89
LibretroAdmin Apr 17, 2026
427326b
(discord) Small style nits
LibretroAdmin Apr 17, 2026
bae00eb
rpng: widen pass_geom arithmetic to size_t to prevent silent u32 wrap
LibretroAdmin Apr 17, 2026
7d9116a
rpng: extend IHDR size cap to cover the intermediate inflate buffer
LibretroAdmin Apr 17, 2026
6d708d4
video: route display queries through display server, remove driver
LibretroAdmin Apr 17, 2026
210abf4
video: use display server for max window size fallback
LibretroAdmin Apr 17, 2026
8470514
video: move display query implementations to dispserv_win32.c
LibretroAdmin Apr 17, 2026
9e70051
video: route get_refresh_rate through the display server
LibretroAdmin Apr 17, 2026
4ab35b0
video: add UWP display server, remove win32_get_* from poke/ctx tables
LibretroAdmin Apr 17, 2026
87fdf2d
Didn't add this file
LibretroAdmin Apr 17, 2026
d0da643
video: wire get_metrics for Apple display server, add RARCH_DISPLAY_O…
LibretroAdmin Apr 17, 2026
b45c75e
asan
warmenhoven Apr 17, 2026
8d366ea
video: wire get_metrics for X11 display server, remove from ctx drivers
LibretroAdmin Apr 17, 2026
d537f91
video: wire get_metrics for Android display server, remove from ctx d…
LibretroAdmin Apr 17, 2026
1fe559b
asan
warmenhoven Apr 17, 2026
e25667e
Remove the macOS DPI scaling workaround
warmenhoven Apr 17, 2026
5e4f08f
gfx/video_driver: fix ring-buffer wrap in video_frame_delay_auto
LibretroAdmin Apr 17, 2026
114df73
video: implement get_refresh_rate and get_video_output_size for X11
LibretroAdmin Apr 17, 2026
346b778
video: implement get_video_output_prev/next for X11
LibretroAdmin Apr 17, 2026
1ae499b
video: add non-XRandR fallback for X11 get_video_output_size
LibretroAdmin Apr 17, 2026
f96c7c5
gfx/video_driver: wrap ring indices in FRAME_DELAY_AUTO_DEBUG output
LibretroAdmin Apr 17, 2026
9cdd011
video: add Wayland display server
LibretroAdmin Apr 17, 2026
14b8d1e
video: implement get_refresh_rate and get_video_output_size for KMS
LibretroAdmin Apr 17, 2026
bd0765c
video: move x11_get_metrics to dispserv_x11.c
LibretroAdmin Apr 17, 2026
4e2fc25
video: remove dead Wayland metrics and refresh rate functions
LibretroAdmin Apr 17, 2026
2515c89
Remove a bunch of unused functions now
LibretroAdmin Apr 17, 2026
b81e9e2
Get rid of dead ifndef blocks
LibretroAdmin Apr 17, 2026
b2ecbb2
video: fix Win32 display output prev/next to actually switch modes
LibretroAdmin Apr 17, 2026
ddbc77d
video: remove GL and DRM poke/ctx pass-throughs for display queries
LibretroAdmin Apr 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 1 addition & 24 deletions Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -1281,6 +1281,7 @@ endif

ifeq ($(HAVE_WAYLAND), 1)
OBJ += gfx/drivers_context/wayland_ctx.o \
gfx/display_servers/dispserv_wl.o \
input/common/wayland_common.o \
input/drivers/wayland_input.o \
gfx/common/wayland_common.o \
Expand Down Expand Up @@ -2460,34 +2461,10 @@ ifeq ($(HAVE_NETWORKING), 1)
endif

ifeq ($(HAVE_DISCORD), 1)
NEED_CXX_LINKER = 1
HAVE_PRESENCE = 1
DEFINES += -DHAVE_DISCORD
INCLUDE_DIRS += -Ideps/discord-rpc/include

ifneq ($(HAVE_THREADS), 1)
DEFINES += -DDISCORD_DISABLE_IO_THREAD
endif

OBJ += deps/discord-rpc/src/discord_rpc.o \
deps/discord-rpc/src/rpc_connection.o \
deps/discord-rpc/src/serialization.o

OBJ += network/discord.o

ifneq ($(findstring Win32,$(OS)),)
OBJ += deps/discord-rpc/src/discord_register_win.o \
deps/discord-rpc/src/connection_win.o
LIBS += -lpsapi -ladvapi32
endif
ifneq ($(findstring Linux,$(OS)),)
OBJ += deps/discord-rpc/src/discord_register_linux.o \
deps/discord-rpc/src/connection_unix.o
endif
ifneq ($(findstring Darwin,$(OS)),)
OBJ += deps/discord-rpc/src/discord_register_osx.o \
deps/discord-rpc/src/connection_unix.o
endif
endif

ifeq ($(HAVE_TRANSLATE), 1)
Expand Down
19 changes: 0 additions & 19 deletions deps/discord-rpc/LICENSE

This file was deleted.

15 changes: 0 additions & 15 deletions deps/discord-rpc/include/discord_register.h

This file was deleted.

74 changes: 0 additions & 74 deletions deps/discord-rpc/include/discord_rpc.h

This file was deleted.

36 changes: 0 additions & 36 deletions deps/discord-rpc/src/backoff.h

This file was deleted.

17 changes: 0 additions & 17 deletions deps/discord-rpc/src/connection.h

This file was deleted.

130 changes: 0 additions & 130 deletions deps/discord-rpc/src/connection_unix.cpp

This file was deleted.

Loading
Loading