aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/psxgpu
Commit message (Collapse)AuthorAgeFilesLines
* Fix typos, add missing const and improve code formatting.yogi3132025-01-231-13/+13
|
* Fix TIM compatibility and improve TIM validation.yogi3132025-01-211-19/+35
| | | | | | | | | | | PSn00bSDK is a good SDK for testing decompiled game code and working with extracted TIM resources. However, there is an issue where some textures that can be loaded with the PsyQ SDK are not compatible with PSn00bSDK, causing a black screen when attempting to load them. This commit fixes this issue. Additionally, it adds a new check in the `GsGetTimInfo` and `GetTimInfo` functions. The check verifies if pixel data exists before setting the corresponding fields in the structure, preventing the loading of garbage data.
* Fix bugs in libc, psxgpu, psxpress, clean up headersspicyjpeg2024-01-082-7/+15
|
* Fix setjmp.h, FntSort(), examples, rewrite system/timerspicyjpeg2023-07-031-5/+16
|
* Fix IRQ bugs, PutDispEnv() PAL screen centeringspicyjpeg2023-06-202-41/+36
|
* More library cleanups and libc fixesspicyjpeg2023-05-211-75/+76
|
* Add GPU IRQ variants of all display list APIsspicyjpeg2023-05-114-114/+213
|
* Add MoveImage(), SetDrawOpType(), GPU IRQ supportspicyjpeg2023-05-113-67/+83
|
* Add argument validation to most libpsn00b functionsspicyjpeg2023-04-044-5/+56
|
* Add IsIdleGPU(), tweak psxgpu.h, fix mdec/strvideospicyjpeg2023-04-041-0/+15
|
* Fix VSync(), assert(), warnings and some examplesspicyjpeg2023-01-222-6/+7
|
* Fix VSync() rate limiter, add missing tagless packetsspicyjpeg2023-01-133-62/+69
|
* Re-enable MoveImage(), add tagless primitive structsspicyjpeg2022-12-283-30/+40
|
* Add CdUnlock() and DMA priority APIspicyjpeg2022-12-282-21/+25
|
* Misc. bugfixes, add support for DRAWENV texture windowsspicyjpeg2022-12-183-47/+92
|
* Misc. libpsn00b bugfixes, new critical section macrosspicyjpeg2022-11-153-20/+21
|
* Rewrite psxsio with new API, fix compiler warningsspicyjpeg2022-10-211-31/+37
|
* Clean up SDK debug logging, fix getTPage()spicyjpeg2022-10-192-15/+13
|
* Add debug log buffering, fix GetHeapUsage()spicyjpeg2022-10-183-31/+24
|
* Add MoveImage(), use draw queue for psxgpu VRAM APIsspicyjpeg2022-10-183-87/+136
|
* Replace DEBUG macro with standard NDEBUG macrospicyjpeg2022-10-112-6/+6
|
* Fix DMACallback bug, disable logging in release buildsspicyjpeg2022-10-082-7/+21
|
* Replace psxgpu debug font, add CdGetSector2()spicyjpeg2022-10-063-17/+19
|
* Update version number, clean up old headersspicyjpeg2022-09-221-1/+0
|
* Fix psxetc bugs, IRQ controller register sizespicyjpeg2022-08-211-1/+1
|
* Fix psxgpu and psxetc bugs, add VSyncHaltFunction()spicyjpeg2022-08-211-27/+43
|
* Rewrite libpsxetc in C, add ResetCallback()spicyjpeg2022-08-131-11/+2
|
* Misc. fixes, add texturing to graphics/gte examplespicyjpeg2022-08-101-4/+5
|
* Rewrite libpsxspu in C and update sound examplesspicyjpeg2022-07-312-9/+8
|
* Deprecate u_short, u_int and u_long types in libpsn00bspicyjpeg2022-07-304-50/+46
|
* Refactor libpsxgpu in C, add OT drawing queuespicyjpeg2022-06-2928-1634/+674
|
* Rename some hwregs_c.h and hwregs.a definitionsspicyjpeg2022-02-2712-48/+48
|
* Rename hwregs_a definitions, add hwregs_c, fix io/padsspicyjpeg2022-02-097-24/+24
|
* Minor psxgpu/psxpad header changesspicyjpeg2022-01-171-1/+1
|
* Deprecated malloc.h, moved int*_t types to stdint.hspicyjpeg2021-11-181-1/+1
|
* Migrated libpsn00b to CMakespicyjpeg2021-09-121-59/+0
|
* Merge pull request #36 from spicyjpeg/dynlinkJohn "Lameguy" Wilbert Villamor2021-08-311-22/+35
|\ | | | | Dynamic linker, gp-relative addressing, ldscripts and more
| * Rewritten all Makefiles, set up proper GCC options, added iso.xml to templatespicyjpeg2021-08-171-22/+35
| |
* | Forgot to commit updated font.cJohn Wilbert M. Villamor2021-08-311-5/+5
|/
* Fixed missing type errors when compiling libraries due to the new variable ↵John Wilbert M. Villamor2021-07-015-5/+10
| | | | type changes
* Minor Makefile fixesAustin Annestrand2021-02-201-1/+1
|
* Revised makefiles, added strtok(), command line arguments, SetHeapSize(), ↵John Wilbert M. Villamor2020-09-1910-440/+489
| | | | moved ISR and callback system to psxetc, moved debug font to psxgpu, fixed CD-ROM library crashing on PSIO, fixed interrupt callback setup to fix crashing on ResetGraph()
* Added CdOpenDir(), CdReadDir() and CdCloseDir(). Fixed SpuKeyOn() bug and ↵John Wilbert M. Villamor2020-02-281-0/+20
| | | | added cdbrowse example.
* Added long awaited CD-ROM library and loads of fixes, see changelog for detailsJohn Wilbert M. Villamor2019-11-223-8/+6
|
* Added FntOpen(), FntPrint() and FntFlush(), fixed termPrim() typo, fixed ↵John Wilbert M. Villamor2019-10-111-1/+1
| | | | negative values in vsprintf(), added billboard sprites example
* Added C++ support, updated build instructions and makefiles, consolidated ↵John Wilbert M. Villamor2019-07-176-15/+146
| | | | libc and libgcc (during build process), libraries now v0.12b and more
* Fixed bug in DrawPrim() where it sends 1 extra junk wordJohn Wilbert M. Villamor2019-06-241-0/+1
|
* LibPSn00b officially v0.10b, added psxsio library, better DrawSync() and ↵John Wilbert M. Villamor2019-06-2314-240/+799
| | | | VSync(), better reference manual.
* Added BIOS Controller, BIOS CD, 2 new examples and custom exit handler in ↵lameguy642019-05-232-15/+81
| | | | the works
* First commitJohn Wilbert M. Villamor2019-04-0619-0/+1087