Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit 9b5ce62

Browse files
committed
August 17, 2022
1 parent 669addf commit 9b5ce62

4 files changed

Lines changed: 15 additions & 7 deletions

File tree

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required (VERSION 3.13)
55

6-
set(DXUT_VERSION 11.27)
6+
set(DXUT_VERSION 11.28)
77

88
project (DXUT
99
VERSION ${DXUT_VERSION}
@@ -154,25 +154,25 @@ install(TARGETS ${PROJECT_NAME}Opt
154154

155155
configure_package_config_file(${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}-config.cmake.in
156156
${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}-config.cmake
157-
INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/cmake/)
157+
INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME})
158158

159159
install(EXPORT ${PROJECT_NAME}-targets
160160
FILE ${PROJECT_NAME}-targets.cmake
161161
NAMESPACE Microsoft::
162-
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/cmake/)
162+
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME})
163163

164164
install(EXPORT ${PROJECT_NAME}Opt-targets
165165
FILE ${PROJECT_NAME}Opt-targets.cmake
166166
NAMESPACE Microsoft::
167-
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/cmake/)
167+
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME})
168168

169169
install(FILES ${CORE_LIBRARY_HEADERS} ${OPT_LIBRARY_HEADERS}
170170
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME})
171171

172172
install(FILES
173173
${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}-config.cmake
174174
${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}-config-version.cmake
175-
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/cmake/)
175+
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME})
176176

177177
if(MSVC)
178178
target_compile_options(${PROJECT_NAME} PRIVATE /fp:fast "$<$<NOT:$<CONFIG:DEBUG>>:/guard:cf>")

Core/DXUT.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
((DWORD)((((a)&0xff)<<24)|(((r)&0xff)<<16)|(((g)&0xff)<<8)|((b)&0xff)))
134134
#endif
135135

136-
#define DXUT_VERSION 1127
136+
#define DXUT_VERSION 1128
137137

138138
//--------------------------------------------------------------------------------------
139139
// Structs

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ http://go.microsoft.com/fwlink/?LinkId=320437
44

55
## Release History
66

7+
## August 17, 2022 (11.28)
8+
* *breaking change* DDSTextureLoader ``Ex`` functions now use ``DDS_LOADER_FLAGS`` instead of ``bool forceSRGB`` parameter.
9+
* CMake and MSBuild project updates
10+
711
## May 23, 2022 (11.27)
812
* Updated DDSTextureLoader, WICTextureLoader, and ScreenGrab
913
* Add VS 2022 projects, retired VS 2017 projects

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkId=320437
66

77
Copyright (c) Microsoft Corporation.
88

9-
**May 23, 2022**
9+
**August 17, 2022**
1010

1111
DXUT is a "GLUT"-like framework for Direct3D 11.x Win32 desktop applications; primarily samples, demos, and prototypes.
1212

@@ -37,6 +37,10 @@ For the latest version of DXUT for Direct3D 11, please visit the project site on
3737

3838
> The legacy versions of **DXUT for DX11/DX9** and **DXUT for DX10/DX9** version are on [GitHub](https://github.com/walbourn/directx-sdk-legacy-samples). These both require using [Microsoft.DXSDK.D3DX](https://www.nuget.org/packages/Microsoft.DXSDK.D3DX).
3939
40+
## Release Notes
41+
42+
* Starting with the July 2022 release, the ``bool forceSRGB`` parameter for DDSTextureLoader ``Ex`` functions is now a ``DDS_LOADER_FLAGS`` typed enum bitmask flag parameter. This may have a *breaking change* impact to client code. Replace ``true`` with ``DDS_LOADER_FORCE_SRGB`` and ``false`` with ``DDS_LOADER_DEFAULT``.
43+
4044
## Support
4145

4246
For questions, consider using [Stack Overflow](https://stackoverflow.com/questions/tagged/dxut) with the *dxut* tag.

0 commit comments

Comments
 (0)