mirror of
https://github.com/microsoft/DirectXTex
synced 2024-11-21 12:00:06 +00:00
January 31, 2023 (#310)
This commit is contained in:
parent
126d15c39a
commit
23ac46e962
@ -10,7 +10,7 @@
|
||||
<description>This version is for Windows desktop applications using Visual Studio 2019 or Visual Studio 2022 and supports Windows 7 / DirectX 11.
|
||||
|
||||
DirectXTex, a shared source library for reading and writing .DDS files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes simple .TGA and .HDR readers and writers since these image file format are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.</description>
|
||||
<releaseNotes>Matches the December 15, 2022 release on GitHub.</releaseNotes>
|
||||
<releaseNotes>Matches the January 31, 2023 release on GitHub.</releaseNotes>
|
||||
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248926</projectUrl>
|
||||
<repository type="git" url="https://github.com/microsoft/DirectXTex.git" />
|
||||
<icon>images\icon.jpg</icon>
|
||||
|
@ -10,7 +10,7 @@
|
||||
<description>This version is for Windows desktop applications using Visual Studio 2019 or Visual Studio 2022 and supports Windows 10 / Windows 11 including both DirectX 11 and DirectX 12.
|
||||
|
||||
DirectXTex, a shared source library for reading and writing .DDS files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes simple .TGA and .HDR readers and writers since these image file format are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.</description>
|
||||
<releaseNotes>Matches the December 15, 2022 release on GitHub.</releaseNotes>
|
||||
<releaseNotes>Matches the January 31, 2023 release on GitHub.</releaseNotes>
|
||||
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248926</projectUrl>
|
||||
<repository type="git" url="https://github.com/microsoft/DirectXTex.git" />
|
||||
<icon>images\icon.jpg</icon>
|
||||
|
@ -10,7 +10,7 @@
|
||||
<description>This version is for Universal Windows Platform apps on Windows 10 / Windows 11 using Visual Studio 2019 or Visual Studio 2022.
|
||||
|
||||
DirectXTex, a shared source library for reading and writing .DDS files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes simple .TGA and .HDR readers and writers since these image file format are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.</description>
|
||||
<releaseNotes>Matches the December 15, 2022 release on GitHub.</releaseNotes>
|
||||
<releaseNotes>Matches the January 31, 2023 release on GitHub.</releaseNotes>
|
||||
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248926</projectUrl>
|
||||
<repository type="git" url="https://github.com/microsoft/DirectXTex.git" />
|
||||
<icon>images\icon.jpg</icon>
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
cmake_minimum_required (VERSION 3.20)
|
||||
|
||||
set(DIRECTXTEX_VERSION 1.9.7)
|
||||
set(DIRECTXTEX_VERSION 1.9.8)
|
||||
|
||||
project (DirectXTex
|
||||
VERSION ${DIRECTXTEX_VERSION}
|
||||
|
@ -47,7 +47,7 @@ struct IWICImagingFactory;
|
||||
struct IWICMetadataQueryReader;
|
||||
#endif
|
||||
|
||||
#define DIRECTX_TEX_VERSION 196
|
||||
#define DIRECTX_TEX_VERSION 198
|
||||
|
||||
|
||||
namespace DirectX
|
||||
|
@ -6,6 +6,13 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
|
||||
|
||||
## Release History
|
||||
|
||||
### January 31, 2023
|
||||
* Fixed memory overwrite bug in **ConvertToSinglePlane** that can lead to a potential security issue for untrusted planar video format DDS files
|
||||
* Make sure ScratchImage zero-fills image memory
|
||||
* Fix DirectX12 GPU-validation warnings for texture loaders
|
||||
* Minor fix for non-Win32 builds
|
||||
* ddsview: Updated sample app with a ``-forcesrgb`` command-line switch
|
||||
|
||||
### December 15, 2022
|
||||
* ARM/ARM64 platform fix for 16bpp pixel conversion
|
||||
* Updated D3DX12 internal copy with latest changes from DirectX-Headers GitHub
|
||||
@ -277,7 +284,7 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
|
||||
### July 26, 2017
|
||||
* Support for reading non-standard DDS files written by nVidia Texture Tools (NVTT)
|
||||
* Fix for **ComputeMSE** when using ``CMSE_IMAGE2_X2_BIAS``
|
||||
* Fix for WIC writer then codec target format requires a palette
|
||||
* Fix for WIC writer then codec target format requires a palette
|
||||
* Code cleanup
|
||||
|
||||
### April 24, 2017
|
||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2011-2022 Microsoft Corp
|
||||
Copyright (c) 2011-2023 Microsoft Corp
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkId=248926
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
**December 15, 2022**
|
||||
**January 31, 2023**
|
||||
|
||||
This package contains DirectXTex, a shared source library for reading and writing ``.DDS`` files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes ``.TGA`` and ``.HDR`` readers and writers since these image file formats are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user