File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
PostProcessing/Runtime/Utils Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
10
10
- Added Switch2 platform support
11
11
12
12
### Fixed
13
- -
13
+ - Remove support for PVRTC format in Unity 6.1 or newer
14
14
15
15
## [ 3.4.0] - 2023-12-11
16
16
Original file line number Diff line number Diff line change @@ -45,10 +45,12 @@ static TextureFormatUtilities()
45
45
{ ( int ) TextureFormat . DXT1Crunched , RenderTextureFormat . ARGB32 } ,
46
46
{ ( int ) TextureFormat . DXT5Crunched , RenderTextureFormat . ARGB32 } ,
47
47
#endif
48
+ #if ! UNITY_6000_1_OR_NEWER
48
49
{ ( int ) TextureFormat . PVRTC_RGB2 , RenderTextureFormat . ARGB32 } ,
49
50
{ ( int ) TextureFormat . PVRTC_RGBA2 , RenderTextureFormat . ARGB32 } ,
50
51
{ ( int ) TextureFormat . PVRTC_RGB4 , RenderTextureFormat . ARGB32 } ,
51
52
{ ( int ) TextureFormat . PVRTC_RGBA4 , RenderTextureFormat . ARGB32 } ,
53
+ #endif
52
54
#if ! UNITY_2018_1_OR_NEWER
53
55
{ ( int ) TextureFormat . ATC_RGB4 , RenderTextureFormat . ARGB32 } ,
54
56
{ ( int ) TextureFormat . ATC_RGBA8 , RenderTextureFormat . ARGB32 } ,
You can’t perform that action at this time.
0 commit comments