├── .atomignore ├── .gitignore ├── CMakeLists.txt ├── README.md ├── resources ├── config │ ├── main.json │ └── xmb.json ├── fonts │ ├── SQR721N.ttf │ ├── arial.ttf │ └── ubuntu-r.ttf ├── icons │ ├── Player-Options.png │ ├── Web-browser-options.png │ ├── animating300.png │ ├── backpsp-v1-350.png │ ├── battery350.png │ ├── book300.png │ ├── brb300.png │ ├── busy300.png │ ├── camera350.png │ ├── certificate350.png │ ├── chat300.png │ ├── combustion300.png │ ├── friends350.png │ ├── game300.png │ ├── gamesharing350.png │ ├── group350.png │ ├── ir350.png │ ├── lit_workout.png │ ├── locationfree350.png │ ├── lunch300.png │ ├── memorystick350.png │ ├── modeling300.png │ ├── movie300.png │ ├── mp3.png │ ├── music300.png │ ├── network300.png │ ├── networkupdate350.png │ ├── nobattery350.png │ ├── outodinner2-300.png │ ├── photo300.png │ ├── powersave350.png │ ├── psp-simple350-black.png │ ├── psp-simple350.png │ ├── psp-v1-350.png │ ├── remoteplay300.png │ ├── rss300.png │ ├── saveddata350.png │ ├── security350.png │ ├── settings300.png │ ├── settingscircle350.png │ ├── sound350.png │ ├── theme350.png │ ├── umd.png │ ├── usb450.png │ ├── user350.png │ ├── users350.png │ ├── vegas300.png │ ├── volume350.png │ ├── wifiicon.png │ ├── winrespluses_lit.png │ └── www_lit.png └── shaders │ ├── clear_f.cg │ ├── clear_v.cg │ ├── color_picker_f.cg │ ├── color_picker_v.cg │ ├── debug_draw_f.cg │ ├── debug_draw_v.cg │ ├── xmb_back_f.cg │ ├── xmb_back_v.cg │ ├── xmb_f.cg │ ├── xmb_font_f.cg │ ├── xmb_font_v.cg │ ├── xmb_icon_f.cg │ ├── xmb_icon_v.cg │ ├── xmb_options_f.cg │ ├── xmb_options_v.cg │ └── xmb_v.cg ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg.png │ ├── startup.png │ └── template.xml └── src ├── common ├── debugLog.cpp ├── debugLog.h ├── debugScreen.cpp ├── debugScreen.h ├── debugScreenFont.builder.html ├── debugScreenFont.h ├── json.hpp ├── png.cpp ├── png.h ├── types.cpp └── types.h ├── main.cpp ├── rendering ├── color_picker.cpp ├── color_picker.h ├── font.cpp ├── font.h ├── xmb.cpp ├── xmb.h ├── xmb_column.cpp ├── xmb_column.h ├── xmb_icon.cpp ├── xmb_icon.h ├── xmb_option.cpp ├── xmb_option.h ├── xmb_options_pane.cpp ├── xmb_options_pane.h ├── xmb_sub_icon.cpp ├── xmb_sub_icon.h ├── xmb_wave.cpp └── xmb_wave.h ├── system ├── buffer.cpp ├── buffer.h ├── config.cpp ├── config.h ├── device.cpp ├── device.h ├── display_buffers.cpp ├── display_buffers.h ├── file.cpp ├── file.h ├── gpu.cpp ├── gpu.h ├── gpu_utils.cpp ├── gpu_utils.h ├── input.cpp ├── input.h ├── screen.cpp ├── screen.h ├── shaders.cpp ├── shaders.h ├── texture.cpp └── texture.h ├── tools ├── 8ssedt.cpp ├── 8ssedt.h ├── bin_packing.c ├── bin_packing.h ├── interpolator.cpp ├── interpolator.hpp ├── math.cpp ├── math.h ├── parse_application.cpp ├── parse_application.h └── perlin.hpp ├── xmb_settings.cpp ├── xmb_settings.h ├── xmb_sources.cpp └── xmb_sources.h /.atomignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/.atomignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/README.md -------------------------------------------------------------------------------- /resources/config/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/config/main.json -------------------------------------------------------------------------------- /resources/config/xmb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/config/xmb.json -------------------------------------------------------------------------------- /resources/fonts/SQR721N.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/fonts/SQR721N.ttf -------------------------------------------------------------------------------- /resources/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/fonts/arial.ttf -------------------------------------------------------------------------------- /resources/fonts/ubuntu-r.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/fonts/ubuntu-r.ttf -------------------------------------------------------------------------------- /resources/icons/Player-Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/Player-Options.png -------------------------------------------------------------------------------- /resources/icons/Web-browser-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/Web-browser-options.png -------------------------------------------------------------------------------- /resources/icons/animating300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/animating300.png -------------------------------------------------------------------------------- /resources/icons/backpsp-v1-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/backpsp-v1-350.png -------------------------------------------------------------------------------- /resources/icons/battery350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/battery350.png -------------------------------------------------------------------------------- /resources/icons/book300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/book300.png -------------------------------------------------------------------------------- /resources/icons/brb300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/brb300.png -------------------------------------------------------------------------------- /resources/icons/busy300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/busy300.png -------------------------------------------------------------------------------- /resources/icons/camera350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/camera350.png -------------------------------------------------------------------------------- /resources/icons/certificate350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/certificate350.png -------------------------------------------------------------------------------- /resources/icons/chat300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/chat300.png -------------------------------------------------------------------------------- /resources/icons/combustion300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/combustion300.png -------------------------------------------------------------------------------- /resources/icons/friends350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/friends350.png -------------------------------------------------------------------------------- /resources/icons/game300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/game300.png -------------------------------------------------------------------------------- /resources/icons/gamesharing350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/gamesharing350.png -------------------------------------------------------------------------------- /resources/icons/group350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/group350.png -------------------------------------------------------------------------------- /resources/icons/ir350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/ir350.png -------------------------------------------------------------------------------- /resources/icons/lit_workout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/lit_workout.png -------------------------------------------------------------------------------- /resources/icons/locationfree350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/locationfree350.png -------------------------------------------------------------------------------- /resources/icons/lunch300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/lunch300.png -------------------------------------------------------------------------------- /resources/icons/memorystick350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/memorystick350.png -------------------------------------------------------------------------------- /resources/icons/modeling300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/modeling300.png -------------------------------------------------------------------------------- /resources/icons/movie300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/movie300.png -------------------------------------------------------------------------------- /resources/icons/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/mp3.png -------------------------------------------------------------------------------- /resources/icons/music300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/music300.png -------------------------------------------------------------------------------- /resources/icons/network300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/network300.png -------------------------------------------------------------------------------- /resources/icons/networkupdate350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/networkupdate350.png -------------------------------------------------------------------------------- /resources/icons/nobattery350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/nobattery350.png -------------------------------------------------------------------------------- /resources/icons/outodinner2-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/outodinner2-300.png -------------------------------------------------------------------------------- /resources/icons/photo300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/photo300.png -------------------------------------------------------------------------------- /resources/icons/powersave350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/powersave350.png -------------------------------------------------------------------------------- /resources/icons/psp-simple350-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/psp-simple350-black.png -------------------------------------------------------------------------------- /resources/icons/psp-simple350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/psp-simple350.png -------------------------------------------------------------------------------- /resources/icons/psp-v1-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/psp-v1-350.png -------------------------------------------------------------------------------- /resources/icons/remoteplay300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/remoteplay300.png -------------------------------------------------------------------------------- /resources/icons/rss300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/rss300.png -------------------------------------------------------------------------------- /resources/icons/saveddata350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/saveddata350.png -------------------------------------------------------------------------------- /resources/icons/security350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/security350.png -------------------------------------------------------------------------------- /resources/icons/settings300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/settings300.png -------------------------------------------------------------------------------- /resources/icons/settingscircle350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/settingscircle350.png -------------------------------------------------------------------------------- /resources/icons/sound350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/sound350.png -------------------------------------------------------------------------------- /resources/icons/theme350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/theme350.png -------------------------------------------------------------------------------- /resources/icons/umd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/umd.png -------------------------------------------------------------------------------- /resources/icons/usb450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/usb450.png -------------------------------------------------------------------------------- /resources/icons/user350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/user350.png -------------------------------------------------------------------------------- /resources/icons/users350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/users350.png -------------------------------------------------------------------------------- /resources/icons/vegas300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/vegas300.png -------------------------------------------------------------------------------- /resources/icons/volume350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/volume350.png -------------------------------------------------------------------------------- /resources/icons/wifiicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/wifiicon.png -------------------------------------------------------------------------------- /resources/icons/winrespluses_lit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/winrespluses_lit.png -------------------------------------------------------------------------------- /resources/icons/www_lit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/icons/www_lit.png -------------------------------------------------------------------------------- /resources/shaders/clear_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/clear_f.cg -------------------------------------------------------------------------------- /resources/shaders/clear_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/clear_v.cg -------------------------------------------------------------------------------- /resources/shaders/color_picker_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/color_picker_f.cg -------------------------------------------------------------------------------- /resources/shaders/color_picker_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/color_picker_v.cg -------------------------------------------------------------------------------- /resources/shaders/debug_draw_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/debug_draw_f.cg -------------------------------------------------------------------------------- /resources/shaders/debug_draw_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/debug_draw_v.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_back_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_back_f.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_back_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_back_v.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_f.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_font_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_font_f.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_font_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_font_v.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_icon_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_icon_f.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_icon_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_icon_v.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_options_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_options_f.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_options_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_options_v.cg -------------------------------------------------------------------------------- /resources/shaders/xmb_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/resources/shaders/xmb_v.cg -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /src/common/debugLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/debugLog.cpp -------------------------------------------------------------------------------- /src/common/debugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/debugLog.h -------------------------------------------------------------------------------- /src/common/debugScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/debugScreen.cpp -------------------------------------------------------------------------------- /src/common/debugScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/debugScreen.h -------------------------------------------------------------------------------- /src/common/debugScreenFont.builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/debugScreenFont.builder.html -------------------------------------------------------------------------------- /src/common/debugScreenFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/debugScreenFont.h -------------------------------------------------------------------------------- /src/common/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/json.hpp -------------------------------------------------------------------------------- /src/common/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/png.cpp -------------------------------------------------------------------------------- /src/common/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/png.h -------------------------------------------------------------------------------- /src/common/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/types.cpp -------------------------------------------------------------------------------- /src/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/common/types.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/rendering/color_picker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/color_picker.cpp -------------------------------------------------------------------------------- /src/rendering/color_picker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/color_picker.h -------------------------------------------------------------------------------- /src/rendering/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/font.cpp -------------------------------------------------------------------------------- /src/rendering/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/font.h -------------------------------------------------------------------------------- /src/rendering/xmb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb.cpp -------------------------------------------------------------------------------- /src/rendering/xmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb.h -------------------------------------------------------------------------------- /src/rendering/xmb_column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_column.cpp -------------------------------------------------------------------------------- /src/rendering/xmb_column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_column.h -------------------------------------------------------------------------------- /src/rendering/xmb_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_icon.cpp -------------------------------------------------------------------------------- /src/rendering/xmb_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_icon.h -------------------------------------------------------------------------------- /src/rendering/xmb_option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_option.cpp -------------------------------------------------------------------------------- /src/rendering/xmb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_option.h -------------------------------------------------------------------------------- /src/rendering/xmb_options_pane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_options_pane.cpp -------------------------------------------------------------------------------- /src/rendering/xmb_options_pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_options_pane.h -------------------------------------------------------------------------------- /src/rendering/xmb_sub_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_sub_icon.cpp -------------------------------------------------------------------------------- /src/rendering/xmb_sub_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_sub_icon.h -------------------------------------------------------------------------------- /src/rendering/xmb_wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_wave.cpp -------------------------------------------------------------------------------- /src/rendering/xmb_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/rendering/xmb_wave.h -------------------------------------------------------------------------------- /src/system/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/buffer.cpp -------------------------------------------------------------------------------- /src/system/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/buffer.h -------------------------------------------------------------------------------- /src/system/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/config.cpp -------------------------------------------------------------------------------- /src/system/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/config.h -------------------------------------------------------------------------------- /src/system/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/device.cpp -------------------------------------------------------------------------------- /src/system/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/device.h -------------------------------------------------------------------------------- /src/system/display_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/display_buffers.cpp -------------------------------------------------------------------------------- /src/system/display_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/display_buffers.h -------------------------------------------------------------------------------- /src/system/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/file.cpp -------------------------------------------------------------------------------- /src/system/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/file.h -------------------------------------------------------------------------------- /src/system/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/gpu.cpp -------------------------------------------------------------------------------- /src/system/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/gpu.h -------------------------------------------------------------------------------- /src/system/gpu_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/gpu_utils.cpp -------------------------------------------------------------------------------- /src/system/gpu_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/gpu_utils.h -------------------------------------------------------------------------------- /src/system/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/input.cpp -------------------------------------------------------------------------------- /src/system/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/input.h -------------------------------------------------------------------------------- /src/system/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/screen.cpp -------------------------------------------------------------------------------- /src/system/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/screen.h -------------------------------------------------------------------------------- /src/system/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/shaders.cpp -------------------------------------------------------------------------------- /src/system/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/shaders.h -------------------------------------------------------------------------------- /src/system/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/texture.cpp -------------------------------------------------------------------------------- /src/system/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/system/texture.h -------------------------------------------------------------------------------- /src/tools/8ssedt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/8ssedt.cpp -------------------------------------------------------------------------------- /src/tools/8ssedt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/8ssedt.h -------------------------------------------------------------------------------- /src/tools/bin_packing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/bin_packing.c -------------------------------------------------------------------------------- /src/tools/bin_packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/bin_packing.h -------------------------------------------------------------------------------- /src/tools/interpolator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/interpolator.cpp -------------------------------------------------------------------------------- /src/tools/interpolator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/interpolator.hpp -------------------------------------------------------------------------------- /src/tools/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/math.cpp -------------------------------------------------------------------------------- /src/tools/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/math.h -------------------------------------------------------------------------------- /src/tools/parse_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/parse_application.cpp -------------------------------------------------------------------------------- /src/tools/parse_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/parse_application.h -------------------------------------------------------------------------------- /src/tools/perlin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/tools/perlin.hpp -------------------------------------------------------------------------------- /src/xmb_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/xmb_settings.cpp -------------------------------------------------------------------------------- /src/xmb_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/xmb_settings.h -------------------------------------------------------------------------------- /src/xmb_sources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/xmb_sources.cpp -------------------------------------------------------------------------------- /src/xmb_sources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecicco/vitaxmb/HEAD/src/xmb_sources.h --------------------------------------------------------------------------------