mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-08 05:51:26 +00:00
1acc3d00c4
palettes smaller than 256 entries with the shader I wrote for it. Is there a list of gotchas like this listed some where? I'd really like to see it. Well, when compiled with SM2.0, the PalTex shader seems to be every-so- slightly faster on my GF7950GT than the SM1.4 version, so I guess it's a minor win for cards that support it. - Fixed: ST_Endoom() failed to free the bitmap it used. - Added the DTA_ColorOverlay attribute to blend a color with the texture being drawn. For software, this (currently) only works with black. For hardware, it works with any color. The motiviation for this was so I could rewrite the status bar calls that passed DIM_MAP to DTA_Translation to draw darker icons into something that didn't require making a whole new remap table. - After having an "OMG! How could I have been so stupid?" moment, I have removed the off-by-one check from D3DFB. I had thought the off-by-one error was caused by rounding errors by the shader hardware. Not so. Rather, I wasn't sampling what I thought I was sampling. A texture that uses palette index 255 passes the value 1.0 to the shader. The shader needs to adjust the range of its palette indexes, or it will end up trying to read color 256 from the palette texture when it should be reading color 255. Doh! - The TranslationToTable() function has been added to map from translation numbers used by actors to the tables those numbers represent. This function performs validation for the input and returns NULL if the input value is invalid. - Major changes to the way translation tables work: No longer are they each a 256-byte array. Instead, the FRemapTable structure is used to represent each one. It includes a remap array for the software renderer, a palette array for a hardware renderer, and a native texture pointer for D3DFB. The translationtables array itself is now an array of TArrays that point to the real tables. The DTA_Translation attribute must also be passed a pointer to a FRemapTable, not a byte array as previously. - Modified DFrameBuffer::DrawRateStuff() so that it can do its thing properly for D3DFB's 2D mode. Before, any fullscreen graphics (like help images) covered it up. SVN r640 (trunk) |
||
---|---|---|
.. | ||
a_action.cpp | ||
a_action.h | ||
a_armor.cpp | ||
a_artifacts.cpp | ||
a_artifacts.h | ||
a_bridge.cpp | ||
a_camera.cpp | ||
a_debris.cpp | ||
a_decals.cpp | ||
a_flashfader.cpp | ||
a_fountain.cpp | ||
a_hatetarget.cpp | ||
a_keys.cpp | ||
a_keys.h | ||
a_lightning.cpp | ||
a_lightning.h | ||
a_mapmarker.cpp | ||
a_morph.cpp | ||
a_movingcamera.cpp | ||
a_pickups.cpp | ||
a_pickups.h | ||
a_puzzleitems.cpp | ||
a_quake.cpp | ||
a_secrettrigger.cpp | ||
a_sectoraction.cpp | ||
a_setcolor.cpp | ||
a_sharedglobal.h | ||
a_skies.cpp | ||
a_soundenvironment.cpp | ||
a_soundsequence.cpp | ||
a_spark.cpp | ||
a_waterzone.cpp | ||
a_weaponpiece.cpp | ||
a_weaponpiece.h | ||
a_weapons.cpp | ||
hudmessages.cpp | ||
sbar.h | ||
sbarinfo.cpp | ||
sbarinfo.h | ||
shared_sbar.cpp |