Fix for github issue https://github.com/o3de/o3de/issues/6380 (#7386)
The texture was treated as in linear space which leads to the color change when renders. Change to sRGB fixes the issue. Signed-off-by: Qing Tao <55564570+VickyAtAZ@users.noreply.github.com>
This commit is contained in:
@@ -8,33 +8,41 @@
|
||||
"Name": "UserInterface_Compressed",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "R8G8B8A8",
|
||||
"SourceColor": "Linear",
|
||||
"DestColor": "Linear"
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"PlatformsPresets": {
|
||||
"android": {
|
||||
"UUID": "{2828FBFE-BDF9-45A7-9370-F93822719CCF}",
|
||||
"Name": "UserInterface_Compressed",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "ASTC_4x4"
|
||||
"PixelFormat": "ASTC_4x4",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"ios": {
|
||||
"UUID": "{2828FBFE-BDF9-45A7-9370-F93822719CCF}",
|
||||
"Name": "UserInterface_Compressed",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "ASTC_6x6"
|
||||
"PixelFormat": "ASTC_6x6",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"mac": {
|
||||
"UUID": "{2828FBFE-BDF9-45A7-9370-F93822719CCF}",
|
||||
"Name": "UserInterface_Compressed",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "BC1"
|
||||
"PixelFormat": "BC1",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"provo": {
|
||||
"UUID": "{2828FBFE-BDF9-45A7-9370-F93822719CCF}",
|
||||
"Name": "UserInterface_Compressed",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "BC1"
|
||||
"PixelFormat": "BC1",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,33 +8,41 @@
|
||||
"Name": "UserInterface_Lossless",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "R8G8B8A8",
|
||||
"SourceColor": "Linear",
|
||||
"DestColor": "Linear"
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"PlatformsPresets": {
|
||||
"android": {
|
||||
"UUID": "{83003128-F63E-422B-AEC2-68F0A947225F}",
|
||||
"Name": "UserInterface_Lossless",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "R8G8B8A8"
|
||||
"PixelFormat": "R8G8B8A8",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"ios": {
|
||||
"UUID": "{83003128-F63E-422B-AEC2-68F0A947225F}",
|
||||
"Name": "UserInterface_Lossless",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "R8G8B8A8"
|
||||
"PixelFormat": "R8G8B8A8",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"mac": {
|
||||
"UUID": "{83003128-F63E-422B-AEC2-68F0A947225F}",
|
||||
"Name": "UserInterface_Lossless",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "R8G8B8A8"
|
||||
"PixelFormat": "R8G8B8A8",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
},
|
||||
"provo": {
|
||||
"UUID": "{83003128-F63E-422B-AEC2-68F0A947225F}",
|
||||
"Name": "UserInterface_Lossless",
|
||||
"SuppressEngineReduce": true,
|
||||
"PixelFormat": "R8G8B8A8"
|
||||
"PixelFormat": "R8G8B8A8",
|
||||
"SourceColor": "sRGB",
|
||||
"DestColor": "sRGB"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user