mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-12 01:36:57 +00:00
Edit makefile to start work on compling Yuzu's FS and start work on EmuGPU
This commit is contained in:
parent
fc057169a0
commit
e6829ef94c
3 changed files with 13 additions and 2 deletions
2
Makefile
2
Makefile
|
|
@ -4,7 +4,7 @@ CXXFLAGS := -std=c++17 -Wall -Wextra -Icore -Icore/ARM -Icore/audio -Icore/fs -I
|
||||||
SRC := \
|
SRC := \
|
||||||
ui/main.cpp \
|
ui/main.cpp \
|
||||||
core/audio/audio.cpp \
|
core/audio/audio.cpp \
|
||||||
core/fs/fs.cpp \
|
core/fs/romfs.cpp \
|
||||||
core/gpu/emu/emugpu.cpp \
|
core/gpu/emu/emugpu.cpp \
|
||||||
core/gpu/vk/emugpuvk.cpp \
|
core/gpu/vk/emugpuvk.cpp \
|
||||||
core/JIT/jit.cpp
|
core/JIT/jit.cpp
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Assets folder
|
# Core folder
|
||||||
|
|
||||||
### !! The file system implementation is copied from Yuzu as the filesystem is believed to be the same betweeen both consoles
|
### !! The file system implementation is copied from Yuzu as the filesystem is believed to be the same betweeen both consoles
|
||||||
|
|
||||||
|
|
|
||||||
11
core/gpu/README.md
Normal file
11
core/gpu/README.md
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
# GPU core folder
|
||||||
|
|
||||||
|
dir: /core/gpu/
|
||||||
|
|
||||||
|
This is where all of the main universal code for emulating the Switch 2 GPU for both OpenGL and Vulkan goes
|
||||||
|
|
||||||
|
Directories:
|
||||||
|
|
||||||
|
/core/gpu/emu/ - OpenGL EmuGPU (macOS, Android)
|
||||||
|
|
||||||
|
/core/gpu/vk/ - Vulkan EmuGPU (Linux)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue