Skip to content

Commit 56f7888

Browse files
Example 9 bugs:
- RLE TGA loader doesn't work. - Visualization of array/cubemap not correct - screenshot doesn't work sometimes (maybe for certain formats)
1 parent 862dffc commit 56f7888

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
; This is the testing suite for various IrrlichtBAW loaders/writers (JPG/PNG/TGA/BMP/DDS/KTX).
1+
; This is the testing suite for various Nabla loaders/writers (JPG/PNG/TGA/BMP/DDS/KTX).
22
; BMP is currently unsupported for now.
33
; 16-bit PNG & 8-bit RLE (compressed) TGA is not supported.
44
; For licensing attribution, see LICENSE.
55

66
; JPG, colored & 8-bit grayscale
7-
; ../../media/color_space_test/R8G8B8_1.jpg
8-
; ../../media/color_space_test/R8G8B8_2.jpg
7+
../../media/color_space_test/R8G8B8_1.jpg
8+
../../media/color_space_test/R8G8B8_2.jpg
99

10-
;../../media/color_space_test/R8_1.jpg
11-
;../../media/color_space_test/R8_2.jpg
10+
../../media/color_space_test/R8_1.jpg
11+
../../media/color_space_test/R8_2.jpg
1212

1313
; PNG, 24/32-bit & 8-bit grayscale
14-
;../../media/color_space_test/R8G8B8_1.png
15-
;../../media/color_space_test/R8G8B8_2.png
16-
;../../media/color_space_test/R8G8B8A8_1.png
17-
; ../../media/color_space_test/R8G8B8A8_2.png
14+
../../media/color_space_test/R8G8B8_1.png
15+
../../media/color_space_test/R8G8B8_2.png
16+
../../media/color_space_test/R8G8B8A8_1.png
17+
../../media/color_space_test/R8G8B8A8_2.png
1818

19-
;../../media/color_space_test/R8_1.png
20-
;../../media/color_space_test/R8_2.png
19+
../../media/color_space_test/R8_1.png
20+
../../media/color_space_test/R8_2.png
2121

2222
; TGA, 24/32-bit & 8-bit grayscale (+RLE)
2323
;../../media/color_space_test/R8G8B8_RLE.tga
2424

2525
../../media/color_space_test/R8G8B8A8.tga
2626
;../../media/color_space_test/R8G8B8A8_RLE.tga
2727

28-
;../../media/color_space_test/R8.tga
28+
../../media/color_space_test/R8.tga
2929

3030

3131
; DDS, RGBA Block Compression with mipmaps, cubemaps, arrays, cubemap mipmap images, grayscale
32-
;../../media/GLI/kueken7_rgba_dxt1_srgb.dds
33-
;../../media/GLI/kueken7_rgba_dxt3_unorm.dds
34-
;../../media/GLI/kueken7_rgba_dxt5_srgb.dds
35-
;../../media/GLI/earth-cubemap.dds
36-
;../../media/GLI/kueken7_rgba8_unorm.dds
37-
;../../media/GLI/earth-array.dds
38-
;../../media/GLI/R8_1_unorm.dds
32+
../../media/GLI/kueken7_rgba_dxt1_srgb.dds
33+
../../media/GLI/kueken7_rgba_dxt3_unorm.dds
34+
../../media/GLI/kueken7_rgba_dxt5_srgb.dds
35+
../../media/GLI/earth-cubemap.dds
36+
../../media/GLI/kueken7_rgba8_unorm.dds
37+
../../media/GLI/earth-array.dds
38+
../../media/GLI/R8_1_unorm.dds
3939

4040
; KTX, RGBA Block Compression with mipmaps, cubemaps, arrays, cubemap mipmap images, grayscale
41-
;../../media/GLI/kueken7_rgba_dxt1_srgb.ktx
42-
;../../media/GLI/kueken7_rgba_dxt3_unorm.ktx
43-
;../../media/GLI/kueken7_rgba_dxt5_srgb.ktx
44-
;../../media/GLI/earth-cubemap.ktx
45-
;../../media/GLI/kueken7_rgba8_unorm.ktx
46-
;../../media/GLI/earth-array.ktx
47-
;../../media/GLI/R8_1_unorm.ktx
41+
../../media/GLI/kueken7_rgba_dxt1_srgb.ktx
42+
../../media/GLI/kueken7_rgba_dxt3_unorm.ktx
43+
../../media/GLI/kueken7_rgba_dxt5_srgb.ktx
44+
../../media/GLI/earth-cubemap.ktx
45+
../../media/GLI/kueken7_rgba8_unorm.ktx
46+
../../media/GLI/earth-array.ktx
47+
../../media/GLI/R8_1_unorm.ktx

examples_tests/09.ColorSpaceTest/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ColorSpaceTestSampleApp : public ApplicationBase
7777
initOutput.window = core::smart_refctd_ptr(window);
7878
CommonAPI::InitWithDefaultExt(
7979
initOutput,
80-
video::EAT_VULKAN,
80+
video::EAT_OPENGL,
8181
"09.ColorSpaceTest",
8282
WIN_W, WIN_H, SC_IMG_COUNT,
8383
swapchainImageUsage,

examples_tests/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ N = No support
4040
| 06.MeshLoaders | Y | Y | Y | S | S | S | Y | Y | |
4141
| 07.SubpassBaking | Y | Y | Y | S | S | S | S | S | |
4242
| FREE_SLOT | | | | | | | | | |
43-
| 09.ColorSpaceTest | W | W | W | W | W | W | W | W | |
43+
| 09.ColorSpaceTest | B | B | B | W | W | W | W | W | |
4444
| 10.AllocatorTest | Y | Y | Y | S | S | S | N | N | |
4545
| 11.LoDSystem | Y | Y | B | S | N | S | N | S | |
4646
| 12.glTF | W | N | W | W | N | W | N | W | COMPILE_WITH_GLTF_LOADER |
@@ -51,7 +51,7 @@ N = No support
5151
| 17.SimpleBulletIntegration | B | N | B | S | N | S | N | N | BUILD_BULLET |
5252
| 18.MitsubaLoader | S | N | S | S | N | S | N | N | BUILD_MITSUBA_LOADER |
5353
| FREE_SLOT | | | | | | | | | |
54-
| 20.Megatexture | S | S | S | S | S | S | N | S | |
54+
| 20.Megatexture | W | W | W | S | S | S | N | S | |
5555
| 21.DynamicTextureIndexing | B | B | B | S | N | S | N | S | |
5656
| 22.RaytracedAO | N | N | W | N | N | W | N | N | BUILD_MITSUBA_LOADER |
5757
| 23.Autoexposure | Y | Y | Y | S | S | S | N | S | |

0 commit comments

Comments
 (0)