@@ -3,7 +3,7 @@ DIRECTX TEXTURE LIBRARY (DirectXTex)
3
3
4
4
Copyright (c) Microsoft Corporation. All rights reserved.
5
5
6
- December 11, 2012
6
+ January 29, 2013
7
7
8
8
This package contains DirectXTex, a shared source library for reading and writing DDS
9
9
files, and performing various texture content processing operations including
@@ -89,20 +89,21 @@ http://go.microsoft.com/fwlink/?LinkId=248926
89
89
RELEASE NOTES
90
90
91
91
* The DirectXTex library does not support block compression or decompression of mipmapped non-power-of-2 textures,
92
- although DDSTextureLoader will load these files correctly if the underlying device supports it.
92
+ although DDSTextureLoader will load these files correctly if the underlying device supports it. [CodePlex issue 640]
93
93
94
94
* The DirectXTex library only supports CLAMP filtering, and does not yet support MIRROR or WRAP filtering
95
- (WIC operations only support CLAMP filtering).
95
+ (WIC operations only support CLAMP filtering). [CodePlex issue 641]
96
96
97
97
* The DirectXTex library only supports box and POINT filtering, and does not support LINEAR or CUBIC filtering,
98
- for 3D volume mipmap-generation.
98
+ for 3D volume mipmap-generation. [CodePlex issue 642]
99
+
100
+ * The WIC conversion cases currently ignore TEX_FILTER_SRGB_IN and TEX_FILTER_SRGB_OUT out, which results in incorrect sRGB handling in
101
+ a number of cases. [CodePlex issue 643]
99
102
100
103
* Due to the underlying Windows BMP WIC codec, alpha channels are not supported for 16bpp or 32bpp BMP pixel format files. The Windows 8
101
104
version of the Windows BMP WIC codec does support 32bpp pixel formats with alpha when using the BITMAPV5HEADER file header. Note the updated
102
105
WIC is available on Windows 7 SP1 with KB 2670838 installed.
103
106
104
- * The WIC conversion cases currently ignore TEX_FILTER_SRGB_IN and TEX_FILTER_SRGB_OUT out.
105
-
106
107
* For the DXGI 1.1 version of DirectXTex, 4:4:4:4 pixel format DDS files are always expanded to 8:8:8:8 upon load since DXGI 1.0
107
108
and DXGI 1.1 versions of Direct3D do not support these resource formats. The DXGI 1.2 versions of DirectXTex and DDSTextureLoader
108
109
make use of the DXGI_FORMAT_B4G4R4A4_UNORM format instead.
@@ -122,6 +123,10 @@ RELEASE NOTES
122
123
------------------------------------
123
124
RELEASE HISTORY
124
125
126
+ January 29, 2013
127
+ Added PremultiplyAlpha to DirectXTex; -pmalpha switch for texconv command-line tool
128
+ Fixed problem with forceSRGB implementation for Ex versions of CreateTexture, CreateShaderResourceView, DDSTextureLoader and WICTextureLoader
129
+
125
130
December 11, 2012
126
131
Ex versions of CreateTexture, CreateShaderResourceView, DDSTextureLoader and WICTextureLoader
127
132
Fixed BC2 and BC3 decompression issue for unusual color encoding case
0 commit comments