当前示例源码github地址:
https://github.com/vilyLei/voxwebgpu/blob/feature/rendering/src/voxgpu/sample/FloatRTT.ts
当前示例运行效果:
此示例基于此渲染系统实现,当前示例TypeScript源码如下:
const floatRTT = { diffuse: { uuid: "rtt0", rttTexture: {}, format: 'rgba16float' } };export class FloatRTT {private mRscene = new RendererScene();initialize(): void {console.log("FloatRTT::initialize() ...");let multisampleEnabled = true;let depthTestEnabled = false;let rpassparam = { multisampleEnabled, depthTestEnabled };this.mRscene.initialize({ rpassparam });this.initScene();}private applyRTTPass(extent: number[]): void {let rs = this.mRscene;let shaderSrc = {vert: { code: vertWGSL, uuid: "vert" },frag: { code: fragCalc, uuid: "calcFrag" }};const attachment = {texture: floatRTT,clearValue: [0.1, 0.1, 0.1, 1.0]};const colorAttachments = [attachment];let rPass = rs.createRenderPass({ separate: true, colorAttachments });const diffuseTex = { diffuse: { url: "static/assets/huluwa.jpg", flipY: true } };let rttEntity = new FixScreenPlaneEntity({ extent: [-1, -1, 2, 2], textures: [diffuseTex], shaderSrc, shadinguuid: "floatRTT" });rPass.addEntity(rttEntity);shaderSrc = {vert: { code: vertWGSL, uuid: "vert" },frag: { code: fragRead, uuid: "readFrag" }};// display float rtt rendering resultextent = [-0.8, -0.8, 1.6, 1.6];let entity = new FixScreenPlaneEntity({ extent, flipY: true, textures: [floatRTT], shaderSrc, shadinguuid: "calcColor" });rs.addEntity(entity);// display origin imageextent = [-0.95, -0.95, 0.6, 0.6];entity = new FixScreenPlaneEntity({ extent, flipY: false, textures: [diffuseTex]});rs.addEntity(entity);}private initScene(): void {this.applyRTTPass( [-1, -1, 2, 2] );}run(): void {this.mRscene.run();}
}