以前、GetCopyableFootprintsの記事では手抜きで生成していたテクスチャですが、今回はミップマップやキューブマップも考慮して真面目に生成してみます。
ところで、テクスチャのアップロードは既にMicrosoftのD3DX12.hのUpdateSubresources関数があります。D3DX12.hが優れている所としては、必要なリソースはUpdateSubresourcesの引数を通してのみ取得しており、透明であること、マルチスレッド化が容易であることが挙げられます。反面、やや使いにくい点としては、D3DX12.hはDX12特有の概念であるリソースバリアやアップロードバッファの管理を呼び出し側に委ねています。使用者はDX12のアーキテクチャを理解した上で使わなければいけないので、手軽に使えるものではないです。また、DX12を隠蔽するものではないので、マルチプラットフォーム化を目指した設計の中では使いにくそうです。
今回はD3DX12.hを使用しないで実装します。
DDSのロード
DDSファイルをメモリ上にまるごとロードして解析します。以前やったDX11版とほぼ同じです。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct DDSHeader { | |
uint32_t h3[3]; | |
int h, w; | |
uint32_t h2[2]; | |
int mipCnt; | |
uint32_t h13[13]; | |
uint32_t fourcc, bitsPerPixel, rMask, gMask, bMask, aMask, caps1, caps2; | |
bool IsCubeMap() const { return caps2 == 0xFE00; } | |
int GetArraySize() const { return IsCubeMap() ? 6 : 1; } | |
int GetMipCnt() const { return std::max(mipCnt, 1); } | |
}; | |
struct TexDesc { | |
IVec2 size; | |
int arraySize = 1; | |
bool isCubeMap = false; | |
}; | |
struct AFTexSubresourceData | |
{ | |
const void* ptr; | |
uint32_t pitch; | |
uint32_t pitchSlice; | |
}; | |
static ComPtr<ID3D12Resource> LoadDDSTexture(const char* name, TexDesc& texDesc) | |
{ | |
int size; | |
void* img = LoadFile(name, &size); | |
if (!img) { | |
aflog("LoadDDSTexture failed! %s", name); | |
return nullptr; | |
} | |
const DDSHeader* hdr = (DDSHeader*)img; | |
AFDTFormat format = AFDT_INVALID; | |
int(*pitchCalcurator)(int, int) = nullptr; | |
switch (hdr->fourcc) { | |
case 0x31545844: //'1TXD': | |
format = AFDT_BC1_UNORM; | |
pitchCalcurator = [](int w, int h) { return ((w + 3) / 4) * ((h + 3) / 4) * 8; }; | |
break; | |
case 0x33545844: //'3TXD': | |
format = AFDT_BC2_UNORM; | |
pitchCalcurator = [](int w, int h) { return ((w + 3) / 4) * ((h + 3) / 4) * 16; }; | |
break; | |
case 0x35545844: //'5TXD': | |
format = AFDT_BC3_UNORM; | |
pitchCalcurator = [](int w, int h) { return ((w + 3) / 4) * ((h + 3) / 4) * 16; }; | |
break; | |
default: | |
ArrangeRawDDS(img, size); | |
format = AFDT_R8G8B8A8_UNORM; | |
pitchCalcurator = [](int w, int h) { return w * h * 4; }; | |
break; | |
} | |
texDesc.size.x = hdr->w; | |
texDesc.size.y = hdr->h; | |
texDesc.arraySize = hdr->GetArraySize(); | |
texDesc.isCubeMap = hdr->IsCubeMap(); | |
int arraySize = hdr->GetArraySize(); | |
int mipCnt = hdr->GetMipCnt(); | |
std::vector<AFTexSubresourceData> r; | |
int offset = 128; | |
for (int a = 0; a < arraySize; a++) { | |
for (int m = 0; m < mipCnt; m++) { | |
int w = std::max(1, hdr->w >> m); | |
int h = std::max(1, hdr->h >> m); | |
int size = pitchCalcurator(w, h); | |
r.push_back({ (char*)img + offset, (uint32_t)pitchCalcurator(w, 1), (uint32_t)size }); | |
offset += size; | |
} | |
} | |
ComPtr<ID3D12Resource> tex = afCreateTexture2D(format, texDesc, mipCnt, &r[0]); | |
assert(tex); | |
free(img); | |
return tex; | |
} | |
static const D3D12_HEAP_PROPERTIES defaultHeapProperties = { D3D12_HEAP_TYPE_DEFAULT, D3D12_CPU_PAGE_PROPERTY_UNKNOWN, D3D12_MEMORY_POOL_UNKNOWN, 1, 1 }; | |
ComPtr<ID3D12Resource> afCreateTexture2D(AFDTFormat format, const struct TexDesc& desc, int mipCount, const AFTexSubresourceData datas[]) | |
{ | |
D3D12_RESOURCE_DESC resourceDesc = { D3D12_RESOURCE_DIMENSION_TEXTURE2D, 0, (UINT64)desc.size.x, (UINT)desc.size.y, (UINT16)desc.arraySize, (UINT16)mipCount, format, {1, 0} }; | |
ComPtr<ID3D12Resource> tex; | |
HRESULT hr = deviceMan.GetDevice()->CreateCommittedResource(&defaultHeapProperties, D3D12_HEAP_FLAG_NONE, &resourceDesc, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE, nullptr, IID_PPV_ARGS(&tex)); | |
afWriteTexture(tex, desc, mipCount, datas); | |
return tex; | |
} |
テクスチャメモリへの転送
ここの処理の詳細は、以前やったGetCopyableFootprintsの記事を見てもらうと分かり易いと思います。違いは、今回の実装はミップマップやキューブマップもサポートします。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void afWriteTexture(ComPtr<ID3D12Resource> tex, const TexDesc& desc, int mipCount, const AFTexSubresourceData datas[]) | |
{ | |
const int maxSubresources = 100; | |
const UINT subResources = mipCount * desc.arraySize; | |
assert(subResources <= maxSubresources); | |
D3D12_PLACED_SUBRESOURCE_FOOTPRINT footprints[maxSubresources]; | |
UINT64 rowSizeInBytes[maxSubresources], uploadSize; | |
UINT numRows[maxSubresources]; | |
D3D12_RESOURCE_BARRIER transitions1[maxSubresources], transitions2[maxSubresources]; | |
deviceMan.GetDevice()->GetCopyableFootprints(&tex->GetDesc(), 0, subResources, 0, footprints, numRows, rowSizeInBytes, &uploadSize); | |
ComPtr<ID3D12Resource> uploadBuf = afCreateBuffer((int)uploadSize); | |
assert(uploadBuf); | |
uploadBuf->SetName(__FUNCTIONW__ L" intermediate buffer"); | |
D3D12_RANGE readRange = {}; | |
BYTE* ptr; | |
HRESULT hr = uploadBuf->Map(0, &readRange, (void**)&ptr); | |
assert(ptr); | |
for (UINT i = 0; i < subResources; i++) | |
{ | |
transitions1[i] = { D3D12_RESOURCE_BARRIER_TYPE_TRANSITION, D3D12_RESOURCE_BARRIER_FLAG_NONE,{ tex.Get(), i, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE, D3D12_RESOURCE_STATE_COPY_DEST } }; | |
transitions2[i] = { D3D12_RESOURCE_BARRIER_TYPE_TRANSITION, D3D12_RESOURCE_BARRIER_FLAG_NONE,{ tex.Get(), i, D3D12_RESOURCE_STATE_COPY_DEST, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE } }; | |
} | |
ID3D12GraphicsCommandList* list = deviceMan.GetCommandList(); | |
list->ResourceBarrier(subResources, transitions1); | |
for (UINT i = 0; i < subResources; i++) | |
{ | |
assert(datas[i].pitch == rowSizeInBytes[i]); | |
assert(datas[i].pitch <= footprints[i].Footprint.RowPitch); | |
for (UINT row = 0; row < numRows[i]; row++) { | |
memcpy(ptr + footprints[i].Offset + footprints[i].Footprint.RowPitch * row, (BYTE*)datas[i].ptr + datas[i].pitch * row, datas[i].pitch); | |
} | |
D3D12_TEXTURE_COPY_LOCATION uploadBufLocation = { uploadBuf.Get(), D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT, footprints[i] }; | |
D3D12_TEXTURE_COPY_LOCATION nativeBufLocation = { tex.Get(), D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX, i }; | |
list->CopyTextureRegion(&nativeBufLocation, 0, 0, 0, &uploadBufLocation, nullptr); | |
} | |
list->ResourceBarrier(subResources, transitions2); | |
uploadBuf->Unmap(0, nullptr); | |
deviceMan.AddIntermediateCommandlistDependentResource(uploadBuf); | |
deviceMan.AddIntermediateCommandlistDependentResource(tex); | |
} |
コマンドリスト実行前のID3D12Resourceの保護
最後に、アップロードバッファからテクスチャへの転送を行うコマンドリストの実行が終わるまで、転送元であるアップロードバッファと転送先であるテクスチャの双方が間違って解放されないように保護しておく必要があります。
AddIntermediateCommandlistDependentResourceがそれをやっていて、何をするかというとAddRefしてコンテナに追加しておくだけで、コマンドリストの終了を確認したら全てReleaseします。
アップロードバッファが保護されるべきであるのは分かり易い所ですが、「生成したばかりのテクスチャが即不要になる」というのは無さそうで有り得るケースです。GPUがピクセルを転送しようとしたら転送先のテクスチャがなくなっていて不正なメモリアクセスというケースはDX12では発生します。コマンドリストから参照されている以上、テクスチャも忘れずに保護しておきます。
ちなみに、GitHubにあるマイクロソフトのDirectX-Graphics-Samplesではその場でコマンドリストを実行してフェンスで待つようになっています。その為アップロードバッファを生成した同じ関数内で使用済みになりその場で解放できるメリットがありますが、CPUはGPUがテクスチャを作る間ブロックされています。
まとめと課題
DX12のテクスチャの生成で分かり難いのは、アップロードバッファやリソースバリアなどの存在があると思いますが、この辺を隠蔽してかつてのDirectX SDKの感覚でテクスチャを生成できるようにしてみました。ただし今回の実装は、関数の引数が簡潔な反面、コマンドリストやコマンドリストから参照中のアップロードバッファの保持などを外部のモジュールに依存しているので、透明ではなく、そのままマルチスレッド化できないものになってしまいました。テクスチャのアップロード1つ取ってもどんな設計を選択するか、これもまたDX12時代にゲームエンジン開発者に委ねられた課題となりました。
No comments:
Post a Comment