Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MiSTer API #2

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
699d979
Audio and video output implementation for GroovyMister [psakhis]
antonioginer Feb 17, 2024
5b80f10
Attach MiSTer mode switching to core Switchres. Add RGUI menu to MiST…
antonioginer Feb 22, 2024
f39c690
Fix borders when negative happen.
antonioginer Feb 23, 2024
7ad6e6b
Fix menu on interlaced modes.
antonioginer Feb 23, 2024
5117ef0
Fix source start coordinates when target buffer is smaller. Take inte…
antonioginer Feb 23, 2024
f94b001
Unify loop for hardware and software renderers. Handle rotation, bord…
antonioginer Mar 8, 2024
75d878f
Apply scaler to rgb buffer. Support Vulkan.
antonioginer Mar 10, 2024
e3dbc6f
Several fixes:
antonioginer Mar 13, 2024
79b0cc9
* mister.c
antonioginer Apr 3, 2024
5443e8c
Port MiSTer backend to the new wrapper api.
antonioginer Apr 20, 2024
c6cb4bf
Add missing RIO header.
antonioginer Apr 21, 2024
af8c5e5
Fix synchronization [psakhis]
antonioginer Apr 21, 2024
faac385
Disable super resolutions for MiSTer.
antonioginer Apr 22, 2024
88b5592
Add RGB565 support. Synchronize interlace fields with fpga status.
antonioginer Apr 23, 2024
e8b0800
* Add new options:
antonioginer Apr 27, 2024
0b3ef3a
Support joysticks from MiSTer. [psakhis]
antonioginer Apr 27, 2024
cdd6b51
- Add adaptative lz4 [psakhis]
antonioginer Apr 27, 2024
9224460
Make sure MiSTer inputs are bound after cmd_close and never twice. [p…
antonioginer Apr 28, 2024
55b41c9
Bypass scaler for hw rendered cores (use gfx readback scaler).
antonioginer Apr 28, 2024
852acd6
[nogpu] MiSTer improvements [psakhis]:
antonioginer Jul 19, 2024
0d54530
CMD_BLIT_FIELD_VSYNC
psakhis Aug 5, 2024
adf33d4
Update groovymister.h
psakhis Aug 5, 2024
2d6986d
Merge branch 'mister' of https://github.com/psakhis/RetroArch into mi…
psakhis Aug 14, 2024
56e4582
Update MiSTer api
psakhis Sep 22, 2024
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
1 change: 1 addition & 0 deletions configuration.c
Original file line number Diff line number Diff line change
Expand Up @@ -1850,6 +1850,7 @@ static struct config_bool_setting *populate_settings_bool(

SETTING_BOOL("crt_switch_resolution_use_custom_refresh_rate", &settings->bools.crt_switch_custom_refresh_enable, true, false, false);
SETTING_BOOL("crt_switch_hires_menu", &settings->bools.crt_switch_hires_menu, true, false, true);
SETTING_BOOL("mister_force_scaler", &settings->bools.mister_force_scaler, true, false, true);
SETTING_BOOL("mister_scanlines", &settings->bools.mister_scanlines, true, false, true);
SETTING_BOOL("mister_force_rgb565", &settings->bools.mister_force_rgb565, true, false, true);
SETTING_BOOL("mister_interlaced_fb", &settings->bools.mister_interlaced_fb, true, true, true);
Expand Down
1 change: 1 addition & 0 deletions configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,7 @@ typedef struct settings

bool crt_switch_custom_refresh_enable;
bool crt_switch_hires_menu;
bool mister_force_scaler;
bool mister_scanlines;
bool mister_force_rgb565;
bool mister_interlaced_fb;
Expand Down
Loading
Loading