03. The-Forge 入門教程 - compute shader
在上一講解釋了uniform&texture之后,其實同學們已經有能力輕松將learn opengl中的所有demo輕松移植到The-Forge中,因此本節(jié)開始將講點不同的東西。The-Forge的demo中,將compute shader放在了第二個demo,而且在ps4/xbox one的世代,compute shader已經成為了開發(fā)中不可或缺的重要成分,因此本節(jié)將簡單帶同學們入門一下compute shader。
目標?
本節(jié)要實現(xiàn)的目標
繪制一張512x512的noise texture
顯示noise texture
從本節(jié)開始,對于descriptorSet,各種對象的管理,都不會在著過多筆墨。經歷了前面的學習,你一定已經可以自行管理各種vb/ib/ub。
SRV和UAV
直接搬用微軟官方文檔的解釋了:
Shader resource views typically wrap textures in a format that the shaders can access them. An unordered access view provides similar functionality, but enables the reading and writing to the texture (or other resource) in any order.
Wrapping a single texture is probably the simplest form of shader resource view. More complex examples would be a collection of subresources (individual arrays, planes, or colors from a mipmapped texture), 3D textures, 1D texture color gradients, and so on.
Unordered access views are slightly more costly in terms of performance, but allow, for example, a texture to be written to at the same time that it is being read from. This enables the updated texture to be re-used by the graphics pipeline for some other purpose. Shader resource views are for read only use (which is the most common use of resources).
最簡單解釋,SRV只讀,而UAV可讀可寫。要利用compute shader來生成一張noise texture,首先需要生成一個UAV
在02中繪制texture的代碼為基礎繼續(xù)開發(fā),不過這次Tex0將不再是普通的貼圖,而是一張RWTexture。
新建compute shader全家桶


compute shader的入口大部分情況下都不是main,需要主動提供entrypoint name

compute shader的pipeline的type是COMPUTE,不要寫成graphics
descriptorSet管理,析構等部分的代碼略去。
修改Tex0初始化代碼

Tex0現(xiàn)在是一張RWTexture了,允許shader中unordered access
繪制

添加一個compute pass沒什么好講的,和之前添加一個UI pass的方法差不多。
值得注意的就是pTex0現(xiàn)在需要textureBarrier了。Barrier是進行資源管理的方式,屬于GPU(Device)內資源同步的方式,而fence是用于CPU-GPU(Host-Device)之間同步管理的。barrier,fence,semaphore三者的功能要理清確實需要多閱讀,多coding,才能感受。
在三者之外,vulkan還額外提供了更小粒度的event來通信和資源管理

pTex0的話,在運行compute shader的時候,需要自身的狀態(tài)為UAV。在compute pass結束時,用一個barrier,等帶compute shader完全執(zhí)行完畢,然后將pTex0轉變成SRV,在draw pass使用,pTex0在draw pass中是完全只讀的。
shader

hash12函數(shù)生成一維噪聲,再擴展到三維

如果換到tex blend,還能看到混合

如果將shader中rgb的hash坐標設為不同,就可以獲得彩色的noise


接下來該干什么
接下來可以考慮研究The-Forge的第二個demo,也是compute shader,但是在第二個demo中,wolf大神直接寫了一個QJuila4D。。。
在這個demo中,我將Tex0直接寫死成了512x512,在拉伸到方塊時會有拉伸??梢試L試將pTex0的尺寸變成1/2的屏幕高寬,然后去想想compute shader dispatch該做什么修改
參考
https://docs.microsoft.com/en-us/windows/uwp/graphics-concepts/shader-resource-view--srv-
https://docs.microsoft.com/en-us/windows/win32/direct3d12/fence-based-resource-management
https://docs.microsoft.com/en-us/windows/win32/direct3d12/using-resource-barriers-to-synchronize-resource-states-in-direct3d-12