Uncomment player icons

They don't scale properly, but it's something that I hope gets fixed sooner or later.
This commit is contained in:
Michael 2017-10-25 16:24:36 -07:00
parent f566b74b12
commit 0d7d7b9796

View File

@ -15,14 +15,14 @@ version = 2
[TextureRedefine] # tv
width = 1280
height = 720
formatsExcluded = 0x00000019,0x0000001a
formatsExcluded = 0x19,0x1a
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] # tv
width = 1280
height = 720
formats = 0x00000019,0x0000001a
formats = 0x19,0x1a
overwriteFormat = 0x1f
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
@ -30,7 +30,7 @@ overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] # half-res alpha
width = 640
height = 360
formatsExcluded = 0x0000041a,0x00000431 # exclude obvious textures
formatsExcluded = 0x41a,0x431 # exclude obvious textures; 41a exclude is broken atm, stage previews don't show
overwriteWidth = <?=round($scaleFactorX*640)?>
overwriteHeight = <?=round($scaleFactorY*360)?>
@ -64,24 +64,24 @@ height = 252
overwriteWidth = <?=round($scaleFactorX*448)?>
overwriteHeight = <?=round($scaleFactorY*252)?>
[TextureRedefine] # player icon - GL_SRGB8_ALPHA8; need to find format
[TextureRedefine] # player icon - GL_SRGB8_ALPHA8; doesn't scale properly yet
width = 128
height = 128
formats = 0x0000041a
#overwriteWidth = <?=round($scaleFactorY*128)?>
#overwriteHeight = <?=round($scaleFactorY*128)?>
formats = 0x41a
overwriteWidth = <?=round($scaleFactorY*128)?>
overwriteHeight = <?=round($scaleFactorY*128)?>
[TextureRedefine] # player icon - GL_RGBA8; doesn't scale properly yet, uncomment with caution
[TextureRedefine] # player icon - GL_RGBA8; doesn't scale properly yet
width = 256
height = 256
formats = 0x0000001a
#overwriteWidth = <?=round($scaleFactorY*256)?>
#overwriteHeight = <?=round($scaleFactorY*256)?>
formats = 0x1a
overwriteWidth = <?=round($scaleFactorY*256)?>
overwriteHeight = <?=round($scaleFactorY*256)?>
[TextureRedefine] # player name - GL_RGBA8
width = 128
height = 32
formats = 0x0000001a
formats = 0x1a
overwriteWidth = <?=round($scaleFactorX*128)?>
overwriteHeight = <?=round($scaleFactorY*32)?>