summaryrefslogtreecommitdiffstats
path: root/thirdparty/basis_universal/patches/remove-tinydds-qoi.patch
blob: a4d176602d2ac72b05b32b02561cafb8fe6bb387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
diff --git a/thirdparty/basis_universal/encoder/basisu_enc.cpp b/thirdparty/basis_universal/encoder/basisu_enc.cpp
index 2bf486a0287..fff98e83014 100644
--- a/thirdparty/basis_universal/encoder/basisu_enc.cpp
+++ b/thirdparty/basis_universal/encoder/basisu_enc.cpp
@@ -37,9 +37,6 @@
 #endif
 #include "basisu_miniz.h"
 
-#define QOI_IMPLEMENTATION
-#include "3rdparty/qoi.h"
-
 #if defined(_WIN32)
 // For QueryPerformanceCounter/QueryPerformanceFrequency
 #define WIN32_LEAN_AND_MEAN
@@ -408,16 +405,7 @@ namespace basisu
 
 	bool load_qoi(const char* pFilename, image& img)
 	{
-		qoi_desc desc;
-		clear_obj(desc);
-
-		void* p = qoi_read(pFilename, &desc, 4);
-		if (!p)
-			return false;
-
-		img.grant_ownership(static_cast<color_rgba *>(p), desc.width, desc.height);
-
-		return true;
+		return false;
 	}
 
 	bool load_png(const uint8_t *pBuf, size_t buf_size, image &img, const char *pFilename)
diff --git a/thirdparty/basis_universal/encoder/basisu_gpu_texture.cpp b/thirdparty/basis_universal/encoder/basisu_gpu_texture.cpp
index 000869a5337..342446b8fd4 100644
--- a/thirdparty/basis_universal/encoder/basisu_gpu_texture.cpp
+++ b/thirdparty/basis_universal/encoder/basisu_gpu_texture.cpp
@@ -19,9 +19,6 @@
 #include "basisu_bc7enc.h"
 #include "../transcoder/basisu_astc_hdr_core.h"
 
-#define TINYDDS_IMPLEMENTATION
-#include "3rdparty/tinydds.h"
-
 namespace basisu
 {
 	//------------------------------------------------------------------------------------------------
@@ -1979,208 +1976,8 @@ namespace basisu
 	// Accepts 2D, 2D mipmapped, 2D array, 2D array mipmapped
 	// and cubemap, cubemap mipmapped, and cubemap array mipmapped.
 	bool write_dds_file(uint8_vec &dds_data, const basisu::vector<gpu_image_vec>& gpu_images, bool cubemap_flag, bool use_srgb_format)
-	{
-		if (!gpu_images.size())
-		{
-			assert(0);
-			return false;
-		}
-
-		// Sanity check the input
-		uint32_t slices = 1;
-		if (cubemap_flag)
-		{
-			if ((gpu_images.size() % 6) != 0)
-			{
-				assert(0);
-				return false;
-			}
-			slices = gpu_images.size() / 6;
-		}
-		else
-		{
-			slices = gpu_images.size();
-		}
-
-		uint32_t width = 0, height = 0, total_levels = 0;
-		basisu::texture_format fmt = texture_format::cInvalidTextureFormat;
-
-		// Sanity check the input for consistent # of dimensions and mip levels
-		for (uint32_t array_index = 0; array_index < gpu_images.size(); array_index++)
-		{
-			const gpu_image_vec& levels = gpu_images[array_index];
-
-			if (!levels.size())
-			{
-				// Empty mip chain
-				assert(0);
-				return false;
-			}
-
-			if (!array_index)
-			{
-				width = levels[0].get_pixel_width();
-				height = levels[0].get_pixel_height();
-				total_levels = (uint32_t)levels.size();
-				fmt = levels[0].get_format();
-			}
-			else
-			{
-				if ((width != levels[0].get_pixel_width()) ||
-					(height != levels[0].get_pixel_height()) ||
-					(total_levels != levels.size()))
-				{
-					// All cubemap/texture array faces must be the same dimension
-					assert(0);
-					return false;
-				}
-			}
-
-			for (uint32_t level_index = 0; level_index < levels.size(); level_index++)
-			{
-				if (level_index)
-				{
-					if ((levels[level_index].get_pixel_width() != maximum<uint32_t>(1, levels[0].get_pixel_width() >> level_index)) ||
-						(levels[level_index].get_pixel_height() != maximum<uint32_t>(1, levels[0].get_pixel_height() >> level_index)))
-					{
-						// Malformed mipmap chain
-						assert(0);
-						return false;
-					}
-				}
-
-				if (fmt != levels[level_index].get_format())
-				{
-					// All input textures must use the same GPU format
-					assert(0);
-					return false;
-				}
-			}
-		}
-
-		// No mipmap levels
-		if (!total_levels)
-		{
-			assert(0);
-			return false;
-		}
-
-		// Create the DDS mipmap level data
-		uint8_vec mipmaps[32];
-
-		// See https://learn.microsoft.com/en-us/windows/win32/direct3ddds/dds-file-layout-for-cubic-environment-maps
-		// DDS cubemap organization is cubemap face 0 followed by all mips, then cubemap face 1 followed by all mips, etc.
-		// Unfortunately tinydds.h's writer doesn't handle this case correctly, so we work around it here.
-		// This also applies with 2D texture arrays, too. RenderDoc and ddsview (DirectXTex) views each type (cubemap array and 2D texture array) correctly.
-		// Also see "Using Texture Arrays in Direct3D 10/11":
-		// https://learn.microsoft.com/en-us/windows/win32/direct3ddds/dx-graphics-dds-pguide
-		for (uint32_t array_index = 0; array_index < gpu_images.size(); array_index++)
-		{
-			const gpu_image_vec& levels = gpu_images[array_index];
-
-			for (uint32_t level_index = 0; level_index < levels.size(); level_index++)
-			{
-				append_vector(mipmaps[0], (uint8_t*)levels[level_index].get_ptr(), levels[level_index].get_size_in_bytes());
-
-			} // level_index
-		} // array_index
-
-#if 0
-		// This organization, required by tinydds.h's API, is wrong.
-		{
-			for (uint32_t array_index = 0; array_index < gpu_images.size(); array_index++)
-			{
-				const gpu_image_vec& levels = gpu_images[array_index];
-
-				for (uint32_t level_index = 0; level_index < levels.size(); level_index++)
-				{
-					append_vector(mipmaps[level_index], (uint8_t*)levels[level_index].get_ptr(), levels[level_index].get_size_in_bytes());
-
-				} // level_index
-			} // array_index
-		}
-#endif
-		
-		// Write DDS file using tinydds
-		TinyDDS_WriteCallbacks cbs;
-		cbs.error = [](void* user, char const* msg) { BASISU_NOTE_UNUSED(user);  fprintf(stderr, "tinydds: %s\n", msg); };
-		cbs.alloc = [](void* user, size_t size) -> void* { BASISU_NOTE_UNUSED(user); return malloc(size); };
-		cbs.free = [](void* user, void* memory) { BASISU_NOTE_UNUSED(user); free(memory); };
-		cbs.write = [](void* user, void const* buffer, size_t byteCount) { BASISU_NOTE_UNUSED(user); uint8_vec* pVec = (uint8_vec*)user; append_vector(*pVec, (const uint8_t*)buffer, byteCount); };
-
-		uint32_t mipmap_sizes[32];
-		const void* mipmap_ptrs[32];
-		
-		clear_obj(mipmap_sizes);
-		clear_obj(mipmap_ptrs);
-
-		assert(total_levels < 32);
-		for (uint32_t i = 0; i < total_levels; i++)
-		{
-			mipmap_sizes[i] = mipmaps[i].size_in_bytes();
-			mipmap_ptrs[i] = mipmaps[i].get_ptr();
-		}
-
-		// Select tinydds texture format
-		uint32_t tinydds_fmt = 0;
-
-		switch (fmt)
-		{
-			case texture_format::cBC1_NV:
-			case texture_format::cBC1_AMD:
-			case texture_format::cBC1: 
-				tinydds_fmt = use_srgb_format ? TDDS_BC1_RGBA_SRGB_BLOCK : TDDS_BC1_RGBA_UNORM_BLOCK;
-				break;
-			case texture_format::cBC3:
-				tinydds_fmt = use_srgb_format ? TDDS_BC3_SRGB_BLOCK : TDDS_BC3_UNORM_BLOCK;
-				break;
-			case texture_format::cBC4:
-				tinydds_fmt = TDDS_BC4_UNORM_BLOCK;
-				break;
-			case texture_format::cBC5:
-				tinydds_fmt = TDDS_BC5_UNORM_BLOCK;
-				break;
-			case texture_format::cBC6HSigned:
-				tinydds_fmt = TDDS_BC6H_SFLOAT_BLOCK;
-				break;
-			case texture_format::cBC6HUnsigned:
-				tinydds_fmt = TDDS_BC6H_UFLOAT_BLOCK;
-				break;
-			case texture_format::cBC7:
-				tinydds_fmt = use_srgb_format ? TDDS_BC7_SRGB_BLOCK : TDDS_BC7_UNORM_BLOCK;
-				break;
-			default:
-			{
-				fprintf(stderr, "Warning: Unsupported format in write_dds_file().\n");
-				return false;
-			}
-		}
-
-		// DirectXTex's DDSView doesn't handle odd sizes textures correctly. RenderDoc loads them fine, however.
-		// Trying to work around this here results in invalid mipmaps. 
-		//width = (width + 3) & ~3;
-		//height = (height + 3) & ~3;
-
-		bool status = TinyDDS_WriteImage(&cbs,
-			&dds_data,
-			width,
-			height,
-			1,
-			slices,
-			total_levels,
-			(TinyDDS_Format)tinydds_fmt,
-			cubemap_flag,
-			true,
-			mipmap_sizes,
-			mipmap_ptrs);
-
-		if (!status)
-		{
-			fprintf(stderr, "write_dds_file: Failed creating DDS file\n");
-			return false;
-		}
-								
-		return true;
+	{		
+		return false;
 	}
 
 	bool write_dds_file(const char* pFilename, const basisu::vector<gpu_image_vec>& gpu_images, bool cubemap_flag, bool use_srgb_format)
@@ -2201,188 +1998,6 @@ namespace basisu
 		
 	bool read_uncompressed_dds_file(const char* pFilename, basisu::vector<image> &ldr_mips,	basisu::vector<imagef>& hdr_mips)
 	{
-		const uint32_t MAX_IMAGE_DIM = 16384;
-
-		TinyDDS_Callbacks cbs;
-
-		cbs.errorFn = [](void* user, char const* msg) { BASISU_NOTE_UNUSED(user); fprintf(stderr, "tinydds: %s\n", msg); };
-		cbs.allocFn = [](void* user, size_t size) -> void* { BASISU_NOTE_UNUSED(user); return malloc(size); };
-		cbs.freeFn = [](void* user, void* memory) { BASISU_NOTE_UNUSED(user); free(memory); };
-		cbs.readFn = [](void* user, void* buffer, size_t byteCount) -> size_t { return (size_t)fread(buffer, 1, byteCount, (FILE*)user); };
-		
-#ifdef _MSC_VER
-		cbs.seekFn = [](void* user, int64_t ofs) -> bool { return _fseeki64((FILE*)user, ofs, SEEK_SET) == 0; };
-		cbs.tellFn = [](void* user) -> int64_t { return _ftelli64((FILE*)user); };
-#else
-		cbs.seekFn = [](void* user, int64_t ofs) -> bool { return fseek((FILE*)user, (long)ofs, SEEK_SET) == 0; };
-		cbs.tellFn = [](void* user) -> int64_t { return (int64_t)ftell((FILE*)user); };
-#endif
-
-		FILE* pFile = fopen_safe(pFilename, "rb");
-		if (!pFile)
-		{
-			error_printf("Can't open .DDS file \"%s\"\n", pFilename);
-			return false;
-		}
-
-		// These are the formats AMD Compressonator supports in its UI.
-		enum dds_fmt
-		{
-			cRGBA32,
-			cRGBA_HALF,
-			cRGBA_FLOAT
-		};
-
-		bool status = false;
-		dds_fmt fmt = cRGBA32;
-		uint32_t width = 0, height = 0;
-		bool hdr_flag = false;
-		TinyDDS_Format tfmt = TDDS_UNDEFINED;
-
-		TinyDDS_ContextHandle ctx = TinyDDS_CreateContext(&cbs, pFile);
-		if (!ctx)
-			goto failure;
-
-		status = TinyDDS_ReadHeader(ctx);
-		if (!status)
-		{
-			error_printf("Failed parsing DDS header in file \"%s\"\n", pFilename);
-			goto failure;
-		}
-				
-		if ((!TinyDDS_Is2D(ctx)) || (TinyDDS_ArraySlices(ctx) > 1) || (TinyDDS_IsCubemap(ctx)))
-		{
-			error_printf("Unsupported DDS texture type in file \"%s\"\n", pFilename);
-			goto failure;
-		}
-
-		width = TinyDDS_Width(ctx);
-		height = TinyDDS_Height(ctx);
-						
-		if (!width || !height)
-		{
-			error_printf("DDS texture dimensions invalid in file \"%s\"\n", pFilename);
-			goto failure;
-		}
-
-		if ((width > MAX_IMAGE_DIM) || (height > MAX_IMAGE_DIM))
-		{
-			error_printf("DDS texture dimensions too large in file \"%s\"\n", pFilename);
-			goto failure;
-		}
-		
-		tfmt = TinyDDS_GetFormat(ctx);
-		switch (tfmt)
-		{
-		case TDDS_R8G8B8A8_SRGB:
-		case TDDS_R8G8B8A8_UNORM:
-		case TDDS_B8G8R8A8_SRGB:
-		case TDDS_B8G8R8A8_UNORM:
-			fmt = cRGBA32;
-			break;
-		case TDDS_R16G16B16A16_SFLOAT:
-			fmt = cRGBA_HALF;
-			hdr_flag = true;
-			break;
-		case TDDS_R32G32B32A32_SFLOAT:
-			fmt = cRGBA_FLOAT;
-			hdr_flag = true;
-			break;
-		default:
-			error_printf("File \"%s\" has an unsupported DDS texture format (only supports RGBA/BGRA 32bpp, RGBA HALF float, or RGBA FLOAT)\n", pFilename);
-			goto failure;
-		}
-
-		if (hdr_flag)
-			hdr_mips.resize(TinyDDS_NumberOfMipmaps(ctx));
-		else
-			ldr_mips.resize(TinyDDS_NumberOfMipmaps(ctx));
-
-		for (uint32_t level = 0; level < TinyDDS_NumberOfMipmaps(ctx); level++)
-		{
-			const uint32_t level_width = TinyDDS_MipMapReduce(width, level);
-			const uint32_t level_height = TinyDDS_MipMapReduce(height, level);
-			const uint32_t total_level_texels = level_width * level_height;
-
-			const void* pImage = TinyDDS_ImageRawData(ctx, level);
-			const uint32_t image_size = TinyDDS_ImageSize(ctx, level);
-
-			if (fmt == cRGBA32)
-			{
-				ldr_mips[level].resize(level_width, level_height);
-
-				if ((ldr_mips[level].get_total_pixels() * sizeof(uint32_t) != image_size))
-				{
-					assert(0);
-					goto failure;
-				}
-
-				memcpy(ldr_mips[level].get_ptr(), pImage, image_size);
-								
-				if ((tfmt == TDDS_B8G8R8A8_SRGB) || (tfmt == TDDS_B8G8R8A8_UNORM))
-				{
-					// Swap R and B components.
-					uint32_t *pTexels = (uint32_t *)ldr_mips[level].get_ptr();
-					for (uint32_t i = 0; i < total_level_texels; i++)
-					{
-						const uint32_t v = pTexels[i];
-						const uint32_t r = (v >> 16) & 0xFF;
-						const uint32_t b = v & 0xFF;
-						pTexels[i] = r | (b << 16) | (v & 0xFF00FF00);
-					}
-				}
-			}
-			else if (fmt == cRGBA_FLOAT)
-			{
-				hdr_mips[level].resize(level_width, level_height);
-
-				if ((hdr_mips[level].get_total_pixels() * sizeof(float) * 4 != image_size))
-				{
-					assert(0);
-					goto failure;
-				}
-
-				memcpy(hdr_mips[level].get_ptr(), pImage, image_size);
-			}
-			else if (fmt == cRGBA_HALF)
-			{
-				hdr_mips[level].resize(level_width, level_height);
-				
-				if ((hdr_mips[level].get_total_pixels() * sizeof(basist::half_float) * 4 != image_size))
-				{
-					assert(0);
-					goto failure;
-				}
-
-				// Unpack half to float.
-				const basist::half_float* pSrc_comps = static_cast<const basist::half_float*>(pImage);
-				vec4F* pDst_texels = hdr_mips[level].get_ptr();
-				
-				for (uint32_t i = 0; i < total_level_texels; i++)
-				{
-					(*pDst_texels)[0] = basist::half_to_float(pSrc_comps[0]);
-					(*pDst_texels)[1] = basist::half_to_float(pSrc_comps[1]);
-					(*pDst_texels)[2] = basist::half_to_float(pSrc_comps[2]);
-					(*pDst_texels)[3] = basist::half_to_float(pSrc_comps[3]);
-
-					pSrc_comps += 4;
-					pDst_texels++;
-				} // y
-			}
-		} // level
-
-		TinyDDS_DestroyContext(ctx);
-		fclose(pFile);
-
-		return true;
-
-	failure:
-		if (ctx)
-			TinyDDS_DestroyContext(ctx);
-
-		if (pFile)
-			fclose(pFile);
-
 		return false;
 	}