-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtexture.h
283 lines (233 loc) · 7.57 KB
/
texture.h
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
#pragma once
namespace Framework
{
// Utility functions for working with texture formats
const char * NameOfFormat(DXGI_FORMAT format);
int BitsPerPixel(DXGI_FORMAT format);
DXGI_FORMAT FindTypelessFormat(DXGI_FORMAT format);
// Utility functions for counting mips
// Note: these don't take into account minimum block sizes for compressed formats.
inline int CalculateMipCount(int size)
{ return log2_floor(size) + 1; }
inline int CalculateMipCount(int2 dims)
{ return CalculateMipCount(maxComponent(dims)); }
inline int CalculateMipCount(int3 dims)
{ return CalculateMipCount(maxComponent(dims)); }
inline int CalculateMipDims(int baseDim, int level)
{ return max(baseDim >> level, 1); }
inline int2 CalculateMipDims(int2 baseDims, int level)
{ return max(int2(baseDims.x >> level, baseDims.y >> level), int2(1)); }
inline int3 CalculateMipDims(int3 baseDims, int level)
{ return max(int3(baseDims.x >> level, baseDims.y >> level, baseDims.z >> level), int3(1)); }
inline int CalculateMipSizeInBytes(int baseDim, int level, DXGI_FORMAT format)
{ return square(CalculateMipDims(baseDim, level)) * BitsPerPixel(format); }
inline int CalculateMipSizeInBytes(int2 baseDims, int level, DXGI_FORMAT format)
{ int2 mipDims = CalculateMipDims(baseDims, level); return mipDims.x * mipDims.y * BitsPerPixel(format); }
inline int CalculateMipSizeInBytes(int3 baseDims, int level, DXGI_FORMAT format)
{ int3 mipDims = CalculateMipDims(baseDims, level); return mipDims.x * mipDims.y * mipDims.z * BitsPerPixel(format); }
inline int CalculateMipPyramidSizeInBytes(int baseDim, DXGI_FORMAT format, int mipLevels = -1)
{
if (mipLevels < 0)
mipLevels = CalculateMipCount(baseDim);
int total = 0;
for (int i = 0; i < mipLevels; ++i)
total += CalculateMipSizeInBytes(baseDim, i, format);
return total;
}
inline int CalculateMipPyramidSizeInBytes(int2 baseDims, DXGI_FORMAT format, int mipLevels = -1)
{
if (mipLevels < 0)
mipLevels = CalculateMipCount(baseDims);
int total = 0;
for (int i = 0; i < mipLevels; ++i)
total += CalculateMipSizeInBytes(baseDims, i, format);
return total;
}
inline int CalculateMipPyramidSizeInBytes(int3 baseDims, DXGI_FORMAT format, int mipLevels = -1)
{
if (mipLevels < 0)
mipLevels = CalculateMipCount(baseDims);
int total = 0;
for (int i = 0; i < mipLevels; ++i)
total += CalculateMipSizeInBytes(baseDims, i, format);
return total;
}
enum TEXFLAG
{
TEXFLAG_Mipmaps = 0x01,
TEXFLAG_EnableUAV = 0x02,
TEXFLAG_Default = 0x00,
};
class Texture2D
{
public:
// Asset pack that this texture's data is sourced from
comptr<AssetPack> m_pPack;
// Pointers to pixel data in the asset pack, for each mip level
std::vector<void *> m_apPixels;
int2 m_dims;
int m_mipLevels;
DXGI_FORMAT m_format;
// GPU resources
comptr<ID3D11Texture2D> m_pTex;
comptr<ID3D11ShaderResourceView> m_pSrv;
comptr<ID3D11UnorderedAccessView> m_pUav;
Texture2D();
void Reset();
int SizeInBytes() const
{ return CalculateMipPyramidSizeInBytes(m_dims, m_format, m_mipLevels); }
// Creates a texture that exists only on the GPU, not backed by asset data
void Init(
ID3D11Device * pDevice,
int2 dims,
DXGI_FORMAT format,
int flags = TEXFLAG_Default);
// Creates the texture on the GPU from m_apPixels
void UploadToGPU(
ID3D11Device * pDevice,
int flags = TEXFLAG_Default);
// Read back the data to main memory - you're responsible for allocing enough
void Readback(
ID3D11DeviceContext * pCtx,
int level,
void * pDataOut);
};
class TextureCube
{
public:
// Asset pack that this texture's data is sourced from
comptr<AssetPack> m_pPack;
// Pointers to pixel data in the asset pack, for each mip level and cube face
std::vector<void *> m_apPixels;
int m_cubeSize;
int m_mipLevels;
DXGI_FORMAT m_format;
// GPU resources
comptr<ID3D11Texture2D> m_pTex;
comptr<ID3D11ShaderResourceView> m_pSrv;
comptr<ID3D11UnorderedAccessView> m_pUav;
TextureCube();
void Init(
ID3D11Device * pDevice,
int cubeSize,
DXGI_FORMAT format,
int flags = TEXFLAG_Default);
void Reset();
int SizeInBytes() const
{ return CalculateMipPyramidSizeInBytes(m_cubeSize, m_format, m_mipLevels); }
// Creates the texture on the GPU from m_apPixels
void UploadToGPU(
ID3D11Device * pDevice,
int flags = TEXFLAG_Default);
// Read back the data to main memory - you're responsible for allocing enough
void Readback(
ID3D11DeviceContext * pCtx,
int face,
int level,
void * pDataOut);
};
class Texture3D
{
public:
// Asset pack that this texture's data is sourced from
comptr<AssetPack> m_pPack;
// Pointers to pixel data in the asset pack, for each mip level
std::vector<void *> m_apPixels;
int3 m_dims;
int m_mipLevels;
DXGI_FORMAT m_format;
// GPU resources
comptr<ID3D11Texture3D> m_pTex;
comptr<ID3D11ShaderResourceView> m_pSrv;
comptr<ID3D11UnorderedAccessView> m_pUav;
Texture3D();
void Init(
ID3D11Device * pDevice,
int3 dims,
DXGI_FORMAT format,
int flags = TEXFLAG_Default);
void Reset();
int SizeInBytes() const
{ return CalculateMipPyramidSizeInBytes(m_dims, m_format, m_mipLevels); }
// Creates the texture on the GPU from m_apPixels
void UploadToGPU(
ID3D11Device * pDevice,
int flags = TEXFLAG_Default);
// Read back the data to main memory - you're responsible for allocing enough
void Readback(
ID3D11DeviceContext * pCtx,
int level,
void * pDataOut);
};
// Texture loading from asset packs
bool LoadTexture2DFromAssetPack(
AssetPack * pPack,
const char * path,
Texture2D * pTexOut);
// !!!UNDONE: load cubemaps and 3D textures as well
// Helper function for quick and dirty apps - just get a texture from
// an image file, no messing around with asset packs or mipmaps
bool LoadTexture2DRaw(
const char * path,
Texture2D * pTexOut);
// Creating textures directly in memory
void CreateTexture1x1(
ID3D11Device * pDevice,
rgba color,
Texture2D * pTexOut,
DXGI_FORMAT format = DXGI_FORMAT_R8G8B8A8_UNORM_SRGB);
void CreateTextureCube1x1(
ID3D11Device * pDevice,
rgba color,
TextureCube * pTexOut,
DXGI_FORMAT format = DXGI_FORMAT_R8G8B8A8_UNORM_SRGB);
void CreateTexture2DFromMemory(
ID3D11Device * pDevice,
int2 dims,
DXGI_FORMAT format,
const void * pPixels,
Texture2D * pTexOut);
// Texture library: indexes a set of textures by name.
class TextureLib
{
public:
// Table of textures by name
// !!!UNDONE: store cubemaps and 3D textures as well
std::unordered_map<std::string, Texture2D> m_texs;
TextureLib();
Texture2D * Lookup(const std::string & name);
Texture2D * Lookup(const char * name)
{ return Lookup(std::string(name)); }
void UploadAllToGPU(
ID3D11Device * pDevice,
int flags = TEXFLAG_Default);
void Reset();
};
// Create a library of all the textures in an asset pack
struct AssetCompileInfo;
bool LoadTextureLibFromAssetPack(
AssetPack * pPack,
const AssetCompileInfo * assets,
int numAssets,
TextureLib * pTexLibOut);
// Helper functions for saving out screenshots of textures
void WriteBMPToMemory(
const byte4 * pPixels,
int2 dims,
std::vector<byte> * pDataOut);
bool WriteBMPToFile(
const byte4 * pPixels,
int2 dims,
const char * path);
bool WriteTexToBMP(
ID3D11DeviceContext * pCtx,
Texture2D * pTex,
int level,
const char * path);
bool WriteTexToBMP(
ID3D11DeviceContext * pCtx,
TextureCube * pTex,
int face,
int level,
const char * path);
}