From a72cc85bf074b13378741daf1c0bb955d77d478c Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Sun, 2 Oct 2016 12:47:09 -0700 Subject: [PATCH] texassemble/texdiag: added optional .exr support --- Texassemble.md | 4 +++- Texdiag.md | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Texassemble.md b/Texassemble.md index d316682..9787128 100644 --- a/Texassemble.md +++ b/Texassemble.md @@ -77,4 +77,6 @@ This loads the cubemap, and outputs a ``cubemap.bmp`` with the cubemap faces arr # Remarks -Partial cubemaps (where less than 6 faces are specified) are not supported by Direct3D 10 or later. Therefore this tool only supports cubemaps with all six faces defined. \ No newline at end of file +Partial cubemaps (where less than 6 faces are specified) are not supported by Direct3D 10 or later. Therefore this tool only supports cubemaps with all six faces defined. + +Support for [OpenEXR](http://www.openexr.com/) (``EXR``) can be added to the *texassemble* utility. Uncomment ``#define USE_OPENEXR`` in the source, and add the DirectXTex auxiliary module to the project. See [[Adding OpenEXR]] for more details including building the OpenEXR library. diff --git a/Texdiag.md b/Texdiag.md index 6d1fe28..a33dc02 100644 --- a/Texdiag.md +++ b/Texdiag.md @@ -262,3 +262,6 @@ Results in the following output: E1: (R: 0.065, G: 0.063, B: 0.065) Index: 2 3 3 3 | 3 3 3 3 | 3 3 3 3 | 3 3 3 3 +# Remarks + +Support for [OpenEXR](http://www.openexr.com/) (``EXR``) can be added to the *texdiag* utility. Uncomment ``#define USE_OPENEXR`` in the source, and add the DirectXTex auxiliary module to the project. See [[Adding OpenEXR]] for more details including building the OpenEXR library.