-
Notifications
You must be signed in to change notification settings - Fork 27
/
ChangeLog
239 lines (207 loc) · 10.7 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
gsKit ChangeLog:
-> 12/29/08 - ragnarok2040
* Fixed a bug in the vsync example. The display buffer doesn't need
to check if it's locked to display.
* Moved some FontM code to their respective gsFontM files.
* Reset the FirstFrame attribute when resetting the GS.
* Clear the screen as part of initializing to remove
FirstFrame quirkyness. As a result, the vsync example
started working with ps2link.
-> 12/28/08 - ragnarok2040
* Added LockBuffer to gsGlobal
* Added gsKit_lock_buffer to lock the current working buffer
* Added gsKit_unlock_buffer to unlock the current working buffer
* Added gsKit_lock_status which returns GS_SETTING_ON if the
working buffer is locked. All this allows you to lock the buffer
as it's being displayed and block until there's an active buffer
to use.
* Added vsync example based on basic example to show the usage
of a vsync interrupt handler with display buffer locking
-> 12/27/08 - ragnarok2040
* Added gsKit_add_vsync_handler to add a vsync handler
* Added gsKit_remove_vsync_handler to remove a vsync handler
* Added gsKit_switch_dispfb() to switch buffers for display
* Added gsKit_switch_context() to switch the working buffers
-> 12/25/08 - ragnarok2040
* Merry Christmas
* Removed gslib tga2fnt font support since the support was broken
except for certain converted types
* Fixed png/bmp with .dat variable font widths rendering
* Fonts need to be left-aligned when created
* Added ability to scale png/bmp with .dat with variable font widths
* Converted font example to use bmp/png .dat variable width fonts
-> 12/24/08 - ragnarok2040
* Changed build structure to use separate Makefile.global files
depending on what's being built
* Finished work on the font code
* Started work on building the examples
* Discovered bitmap.raw is bad in textures example
* Discovered testorig.jpg is bad in linuz-texture example
* Fixed a bug in gsKit_texture_bmp() as fread() returns the
number of elements read, not the number of bytes
-> 12/23/08 - ragnarok2040
* Changed gsFont.c and gsFont.h to gsFontM.c and gsFontM.h
* Finished migration of non-FontM code
* Started separation of non-FontM code from FontM code in gskit
* Started separation of FontM code from non-FontM code in gskit_toolkit
-> 12/22/08 - ragnarok2040
* Continued separation of FontM and non-FontM codes
* Finished changing fio* file routines to stdio file routines
* Started work on fixing .fnt support for tga2fnt fonts
from gslib
-> 12/21/08 - ragnarok2040
* Modified gsKit_init_font to allocate memory for the ".dat" path
* Modified gsKit_font_upload to properly load a ".dat" file
* Changed gsFont->Additional to a s16 type since a ".dat" file is 256 short ints
* More separation of FontM and non-FontM code
-> 12/20/08 - ragnarok2040
* Added the ability to clear the vram by resetting the
vram pointer back to the beginning of useable texture
buffer space.
* Continued migration of image lib texture functions
to gsKit_toolkit.
* Added a fix to Z Buffering support for mismatched depths.
* Started modifying non-fontm loading routines to use stdio file functions
-> 12/19/08 - ragnarok2040
* Fixed draw buffer code to allow for smaller draw buffers
for the mode selected. This is useful as it allows you to
use a 640x540 draw buffer that can be used for 1080i or
640x720 or 640x360 draw buffer for 720p, etc.
* Added dithering support for 16-bit modes.
* Added the ability to set the dithering matrix.
* Started migration of integrated image lib texture
support into an external library called gsKit_toolkit.
* Started separation of fontm and non-fontm code for the migration.
-> 12/18/08 - ragnarok2040
* Added gsKit_deinit_global() which frees all the memory
gsGlobal allocates
* Modified gsKit_init_global() to enable DoubleBuffering and
ZBuffering as default - might not work with large resolutions
* Fixed a bug with 1920x1080i using GS_FRAME mode
-> 12/17/08 - ragnarok2040
* Changed gsKit_vsync() to gsKit_vsync_wait()
* Added gsKit_hsync_wait()
* Added gsKit_vsync_nowait()
* Added gsKit_hsync_nowait()
* Added ability to set which fields to render with gsKit_set_drawfield()
based on libgraph's code
* Added gsKit_get_field() which sets gsGlobal->EvenOrOdd from the CSR->Field
register: 0 is for Even and 1 is for Odd
* Removed all the half buffer offset (HBOFFSET) fixes which users should do
using their own vsync interrupt handler
* Removed all the FRAME height adjustments which users should do depending on
the interlace mode they choose
* Added the ability to set low-resolution modes
* Modified the gsKit_init_global_custom() to remove mode parameter
* gsGlobal->Width, gsGlobal->Height, gsGlobal->Mode, gsGlobal->Interlace, and
gsGlobal->Field should all be set prior to calling gsKit_init_screen()
* Modified gsKit_init_screen() to reset the GS any time it is called
* Defined a gsKit_reset_screen() symbol for resetting the screen
* Added aspect ratio detection within gsKit_init_global()
* Modified gsKit_detect_signal() to use RomGetName() method
of detecting a PS2's region
-> 04/15/07 - Chris Gilbert (Neovanglist)
* Fixed up dmaKit to properly support fast cop0 waits.
* Removed some unneeded printf
* Fixed some things to make sure they were floats.
-> 06/07/06 - Chris Gilbert (Neovanglist)
* Added preliminary (and buggy) libpng support.
* Added gsKit_setup_tbw routine to find TBW value for textures.
* Added FONTM print alignment support.
* Added some experimental but disabled lineoffset tweaks for halfbuffer modes.
-> 05/19/06 - Chris Gilbert (Neovanglist)
* Added gsKit_prim_sprite_striped_texture. This routine autostrips
sprites for a big performance boost. This is most useful on large
sprites which would otherwise result in many GS pagemisses.
NOTE: This ONLY works with textures that have NEAREST filtering.
* Reworked drawbuffers so that it waits on the FINISH signal from the GS
before pushing new DMA to it.
* Added "bigtex" example.
* Added option to delay texture uploading. This allows you to do it manually
using the gsKit_texture_send_inline in usercode.
-> 04/22/06 - Chris Gilbert (Neovanglist)
* Fully implimented FONTM support.
* Added a hack on 4bit BMP textures to swap nibbles so it displays
correctly.
* Added a gsKit_texture_send_inline routine, this allows you to schedule
a texture upload via your drawbuffer.
*WARNING* You MUST make ensure that when the time comes to send, the
cache is in sync since it won't FlushCache() for you. The best way
to do this is to write the texture to be uploaded in memory using UCAB.
* Added a gsKit_heap_alloc_dma routine. This allows you to allocate things
with their own DMA_TAGs into the drawbuffer. (Like textures)
-> 04/15/06 - Chris Gilbert (Neovanglist)
* Added 4bit BMP image support.
* Started on FONTM support - added fontm example
-> 04/14/06 - Chris Gilbert (Neovanglist)
* More big changes to the drawbuffer system...
* gsKit is now working 100% as far as I know, please report bugs ASAP.
* gsKit is now the fastest library according to Shazz's "newlibtest" - 27800 tri/frame!
* NOTICE: Made some dmaKit changes, cleaned up the API a bit and added a new
specialized routine. If you use dmaKit, you will need to make some trivial
changes to get it compiling. (Just remove the timeout argument from your call.)
* Added TIFF texture support to gsKit (and ported libtiff, will be in svn soon)
* Added full (and fixed) Alpha blending support, check the alpha example.
* Other small stuff here and there.
* gsKit 0.3 release is on it's way very soon, please let me know of any bugs
and/or last minute features ASAP so I can get them into the release.
* Added a 512 byte dma_misc buffer to gsGlobal. This is for small/trivial
DMA packets so you don't have to memalign() for them.
NOTE: It's UCAB, so be careful how you work with it.
-> 04/09/06 - Chris Gilbert (Neovanglist)
* Totally overhauled the drawbuffer system... (again)
* gsKit now uses REGLIST mode and GIFTAG sharing on same-type prims!
* Major speedups.
* Got all known bugs back out... last commit was a real mess.
* NOTICE: I made new routines in gsCore for setting tex1 and blend modes.
Right now they get setup "Automagically" but this is a performance issue
and will be changed *after* gsKit 0.3.
-> 02/06/06 - Chris Gilbert (Neovanglist)
* Fixed some bugs in relation to SPR/drawpipe management
* Some small optimizations
-> 02/05/06 - Chris Gilbert (Neovanglist)
* Removed gsKit_scale for good.
* Overhauled the drawbuffer objects, and how persistant drawpipes are handled.
* Implimented custom SPR allocator and handler for gsKit.
* Fixed misc bugs along the way.
* Removed immediate mode.
* More misc optimizations.
-> 01/16/06 - Chris Gilbert (Neovanglist)
* More optimizations!
* Now using the scratchpad more intensively duing renderlist building.
* Packed the Element structure more tightly, and made it an aligned non-pointer array in the Queue.
* NOTICE: Modified the GS_AXIS_ macros so that X, U, and V are the same value, so I only have to check on one in gsKit_scale. (Better performance)
-> 01/15/06 - Chris Gilbert (Neovanglist)
* Tons of optimizations!
* Now using toSPR as well as fromSPR.
* Fixed some other misc bugs.
-> 01/14/06 - Chris Gilbert (Neovanglist)
* Implimented the long awaited gsKit render queue!
* Implimented DMA fromSPR into dmaKit.
* Optimzied examples to take advantage of the rew render queue.
-> 01/12/06 - Chris Gilbert (Neovanglist)
* Fixed large-size textures bug.
* Modified texture_send to check the dma chain size and only use spr if room is avail.
-> 01/12/06 - Chris Gilbert (Neovanglist)
* Fixed missing lines of texture bug.
* Fixed some issues in regards to halfbuffers.
-> 01/12/06 - Chris Gilbert (Neovanglist)
* Big commit - fixed many bugs!
* HalfBuffers working now in PAL and NTSC
-> 03/12/04 - linuzappz
* Fixed FNT format support.
* FNT files can be loaded in raw format.
* font demo uses arial.fnt by default, compiled within the elf.
-> 06/29/04 - Chris Gilbert (Neovanglist)
* dmaKit officially finished.
* gsKit has working ZTest.
* gsKit has working Alpha.
* All primitives implimented and working.
* gsKit 0.1 release.
-> 06/15/04 - Chris Gilbert (Neovanglist)
* Changed directory layout. (See README)
* Added dmaKit.
-> 06/15/04 - Chris Gilbert (Neovanglist)
* Project framework and build system completed.
* Created CVS module and commited to PS2Dev CVS.
* README, STATUS, AUTHORS, ID, and LICENSE files added.