Search found 22 matches
- March 13th, 2017, 3:20 am
- Forum: Programming/CPU
- Topic: Toolchain, libraries and headers relationship
- Replies: 4
- Views: 14391
Re: Toolchain, libraries and headers relationship
You will be stuck with PSY-Q linking format being incompatible. The whole toolchain is entirely based on custom builds of GCC, which also include customized object and library formats. Unless you can convert them to whatever GCC uses these days (was it ELF?), you cannot use a more recent build of GCC.
- June 9th, 2016, 11:48 am
- Forum: Programming/CPU
- Topic: Custom fonts?
- Replies: 6
- Views: 16963
Re: Custom fonts?
Ideally you should use a VRAM 2 VRAM copy function to construct whole paragraph
and then create 1 sprite and place it in the framebuffer. That's how MGS does it for subtitles and Codec screen.
Bad solution and not ideal. You end up eating RAM and VRAM more than you need. Allocate a VRAM page for ...
and then create 1 sprite and place it in the framebuffer. That's how MGS does it for subtitles and Codec screen.
Bad solution and not ideal. You end up eating RAM and VRAM more than you need. Allocate a VRAM page for ...