Commit graph

314 commits

Author SHA1 Message Date
wheremyfoodat
80cdf0354f
Merge pull request #142 from Wunkolo/vulkan-framebuffer
[Vulkan] Implement framebuffer management
2023-08-27 13:41:43 +03:00
wheremyfoodat
46ce2c14cd Initial UserSaveData impl 2023-08-24 17:58:16 +03:00
wheremyfoodat
3908900bca
Merge pull request #158 from wheremyfoodat/mii_selector
Initial work on HLE applets
2023-08-24 01:54:21 +03:00
wheremyfoodat
74f7aeedbb Proper applet manager class 2023-08-23 18:07:24 +03:00
wheremyfoodat
f099cc12fa Add swkbd applet 2023-08-23 01:16:27 +03:00
wheremyfoodat
fae1da680f Merge branch 'master' into Mac-why 2023-08-21 18:56:37 +03:00
wheremyfoodat
3b22f15e67 Merge branch 'master' into mii_selector 2023-08-21 18:53:36 +03:00
wheremyfoodat
d3d426985a Add news:u 2023-08-21 16:45:35 +03:00
wheremyfoodat
3c7b9bb512 Fonts in fonts directory 2023-08-21 15:16:23 +03:00
wheremyfoodat
dd6508eb26 Migrate shared font to cmrc 2023-08-21 14:53:50 +03:00
Wunkolo
7a86595a1b Add vulkan sampler cache 2023-08-20 23:35:52 -07:00
Wunkolo
4b7bd9df3d Add Vulkan Descriptor-Update batching
Allows multiple descriptor operations to be batched up and dispatched in
one API call rather than scattered through out the code base.
2023-08-20 23:01:43 -07:00
Wunkolo
72c77e41b4 Draft Vulkan DescriptorHeap
A utility class from a personal project for managing a heap of
descriptors of a particular layout.

Allows the display graphics pipeline to be successfully created,
satisfying its descriptor layout issues.
2023-08-20 23:01:43 -07:00
Wunkolo
97b6b7f122 Add Vulkan Host-Shader compilation
Compiles Vulkan Host shaders into spirv binary files and embeds them
into the application's virtual file-system.
2023-08-20 23:01:43 -07:00
Wunkolo
bf8bb5d459 Add vk_pica translation unit
Intended for conversions and utils between PICA definitions and Vulkan.
2023-08-20 23:01:43 -07:00
Wunkolo
4976671ef0 Rename vulkan_api.hpp to vk_api.hpp
Consistant with other vulkan header patterns.
This header in particular is to configure our Vulkan API usage.
2023-08-20 23:01:43 -07:00
Wunkolo
e3699fe8f8 Allocate and present separate top/bottom screen framebuffer images
Instead of operating directly on the swapchain images, we have our own
top/bottom framebuffer images that will be rendered to independent of
having an available swapchain. The images are blitted into the swapchain
images, allowing for resizing too!
2023-08-20 23:01:43 -07:00
wheremyfoodat
9e0f590b79 Trying to switch to MacOS 10.15 2023-08-20 22:46:44 +03:00
wheremyfoodat
2e5dc5da07 Set MacOS deployment target & vendor discord-rpc 2023-08-20 00:27:43 +03:00
wheremyfoodat
14784403c4
Disable Discord RPC on Android 2023-08-19 19:35:04 +03:00
wheremyfoodat
c544dd1567 Add MCU::HWC 2023-08-19 17:44:28 +03:00
wheremyfoodat
6552f2998c OS timers part 1 2023-08-13 03:35:41 +03:00
wheremyfoodat
e9bff39a7f Merge remote-tracking branch 'upstream/master' into moar-gpu 2023-08-12 14:54:17 +03:00
wheremyfoodat
fa91c4effb Add SSL service 2023-08-12 00:12:20 +03:00
wheremyfoodat
1544710e36 Merge remote-tracking branch 'upstream/master' into moar-gpu 2023-08-11 18:49:30 +03:00
wheremyfoodat
2bb751110b Add soc:u 2023-08-10 17:44:42 +03:00
wheremyfoodat
f614bcb005 Merge branch 'master' into mii_selector 2023-08-10 12:18:43 +03:00
wheremyfoodat
34b7961c41
Merge branch 'master' into moar-gpu 2023-08-09 17:14:47 +03:00
wheremyfoodat
dcd8e631de [CFG] Add GetCountryCodeID 2023-08-08 18:39:13 +03:00
wheremyfoodat
8d5a3d6197 [HTTP] Add service stuff 2023-08-08 17:07:12 +03:00
wheremyfoodat
1c11e2df40
Add Discord RPC (#161)
* Add discord-rpc submodule

* Add Discord RPC

* Fix up Discord status

* Fix CMake because MacOS sucks

* Slightly less hacky fix
2023-08-08 00:23:39 +03:00
wheremyfoodat
8006ec63b0 [Applets] Add initial stuff 2023-08-04 19:09:43 +03:00
wheremyfoodat
73a18e3609 Switch out math_util.hpp 2023-08-04 16:14:41 +03:00
wheremyfoodat
952e2a06f9 Move opengl.hpp to third_party 2023-08-04 14:16:56 +03:00
offtkp
f3ce29bf2d Add IVFC parser 2023-07-29 02:08:14 +03:00
wheremyfoodat
bceaf3b6b7 Rename HTTP server files 2023-07-28 14:21:00 +03:00
wheremyfoodat
69b5357eb3 Optimize logging for user builds 2023-07-27 17:16:45 +03:00
wheremyfoodat
4a1ed06525 Update build instructions 2023-07-24 21:04:36 +03:00
Wunkolo
870b6a21bf Add initial vulkan instance creation
Headlessly creates a new vulkan instance, with conditional MacOS
support, and enables the `VK_EXT_debug_utils` instance-extension with a
debug-messenger to hook onto validation layer messages.
2023-07-22 13:16:23 -07:00
Wunkolo
d2241a25bc Stub Vulkan backend support
A lot of the architecture of the emulator here does not allow for vulkan
to initialize easily since it involves a bit of data to be exchanged
between SDL and Vulkan. This commit just adds the foundational linkage
and library code for vulkan support.
2023-07-22 13:16:23 -07:00
wheremyfoodat
311d69fd2d Always build glad 2023-07-22 22:15:44 +03:00
wheremyfoodat
9da11b95d9 Add glm submodule 2023-07-22 21:57:23 +03:00
wheremyfoodat
f328200c65 Add empty sw renderer class 2023-07-22 20:24:49 +03:00
wheremyfoodat
ae69c8f8c4 [Cheats] Split gateway and AR 2023-07-19 21:09:44 +03:00
wheremyfoodat
0904638df0 [Cheats] Add boilerplate 2023-07-19 20:51:45 +03:00
Wunkolo
1becbef811 Add Null rendering backend
Doesn't implement any functions, currently not selectable or
configurable
2023-07-17 09:34:10 -07:00
wheremyfoodat
f956a3eb7a Add glsl files to source_group 2023-07-16 22:01:14 +03:00
Wunkolo
a9bb11e4b3 Migrate OpenGL string-literals to embedded files
Rather than declaring a big C++ literal for these strings, they are now
proper `.vert` and `.frag` files that will become embedded into the
application at build-time. It also allows for clang-format to format the
glsl files the same as our C++ code. CMake will also automatically track
and re-embed the file if it detects that the glsl source files have
changed since the last build. Ex, making a change to
`opengl_display.frag` and compiling will automatically recompile and
link the resource-target that it is associated with.
2023-07-15 19:12:07 -07:00
wheremyfoodat
a601686cb1 Pretend to know CMake 2023-07-16 00:11:07 +03:00
Wunkolo
0a605339a3 Conditionally compile and link glad
Only include this library in the case that the OpenGL backend is
enabled.
2023-07-11 11:28:06 -07:00