轻量封装WebGPU渲染系统示例<36>- 广告板(Billboard)(WGSL源码)

本文主要是介绍轻量封装WebGPU渲染系统示例<36>- 广告板(Billboard)(WGSL源码),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

原理不再赘述,请见wgsl shader实现。

当前示例源码github地址:

https://github.com/vilyLei/voxwebgpu/blob/feature/rendering/src/voxgpu/sample/BillboardEntityTest.ts

当前示例运行效果:

WGSL顶点shader:

@group(0) @binding(0) var<uniform> objMat : mat4x4<f32>;
@group(0) @binding(1) var<uniform> viewMat : mat4x4<f32>;
@group(0) @binding(2) var<uniform> projMat : mat4x4<f32>;
@group(0) @binding(3) var<uniform> billParam: vec4<f32>;struct VertexOutput {@builtin(position) Position : vec4<f32>,@location(0) uv : vec2<f32>
}@vertex
fn main(@location(0) position : vec3<f32>,@location(1) uv : vec2<f32>
) -> VertexOutput {let cosv = cos(billParam.z);let sinv = sin(billParam.z);let vtx = position.xy * billParam.xy;let vtx_pos = vec2<f32>(vtx.x * cosv - vtx.y * sinv, vtx.x * sinv + vtx.y * cosv);var viewV = viewMat * objMat * vec4f(0.0,0.0,0.0,1.0);viewV = vec4<f32>(viewV.xy + vtx_pos.xy, viewV.zw);var projV =  projMat * viewV;projV.z = ((projV.z / projV.w) + billParam.w) * projV.w;var output : VertexOutput;output.Position = projV;output.uv = uv;return output;
}

WGSL片段shader:

@group(0) @binding(4) var<uniform> color: vec4f;
@group(0) @binding(5) var<uniform> uvScale: vec4f;
@group(0) @binding(6) var billSampler: sampler;
@group(0) @binding(7) var billTexture: texture_2d<f32>;@fragment
fn main(@location(0) uv: vec2f) -> @location(0) vec4f {var c4 = textureSample(billTexture, billSampler, uv * uvScale.xy + uvScale.zw) * color;return c4;
}

此示例基于此渲染系统实现,当前示例TypeScript源码如下

export class BillboardEntityTest {private mRscene = new RendererScene();initialize(): void {this.mRscene.initialize();this.initScene();this.initEvent();}private initScene(): void {this.initEntities();}private initEntities(): void {let rc = this.mRscene;let diffuseTex0 = { diffuse: { url: "static/assets/flare_core_02.jpg" } };let entity = new FixScreenPlaneEntity({ extent: [-0.8, -0.8, 1.6, 1.6], textures: [diffuseTex0] });entity.color = [0.1, 0.3, 0.5];rc.addEntity(entity);rc.addEntity(new AxisEntity());for (let i = 0; i < 10; ++i) {let billboard = new BillboardEntity({ textures: [diffuseTex0] });billboard.color = [0.5, 0.5, 2];billboard.scale = Math.random() * 2 + 1;billboard.transform.setPosition([Math.random() * 1000 - 500, 0, 0]);rc.addEntity(billboard);let diffuseTex1 = { diffuse: { url: "static/assets/testEFT4_01.jpg", flipY: true } };billboard = new BillboardEntity({ textures: [diffuseTex1] });billboard.color = [1.8, 1.5, 0.5];// billboard.color = [0.8, 0.5, 0.5];billboard.scale = Math.random() * 2 + 1;billboard.uvScale = [0.5, 0.5];billboard.uvOffset = [1, 1];// billboard.uvOffset = [0.5, 1];billboard.transform.setPosition([0, Math.random() * 1000 - 500, 0]);rc.addEntity(billboard);}}private initEvent(): void {const rc = this.mRscene;rc.addEventListener(MouseEvent.MOUSE_DOWN, this.mouseDown);new MouseInteraction().initialize(rc, 0, false).setAutoRunning(true);}private mouseDown = (evt: MouseEvent): void => {};run(): void {this.mRscene.run();}
}

这篇关于轻量封装WebGPU渲染系统示例<36>- 广告板(Billboard)(WGSL源码)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/402619

相关文章

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Linux系统中卸载与安装JDK的详细教程

《Linux系统中卸载与安装JDK的详细教程》本文详细介绍了如何在Linux系统中通过Xshell和Xftp工具连接与传输文件,然后进行JDK的安装与卸载,安装步骤包括连接Linux、传输JDK安装包... 目录1、卸载1.1 linux删除自带的JDK1.2 Linux上卸载自己安装的JDK2、安装2.1

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

用js控制视频播放进度基本示例代码

《用js控制视频播放进度基本示例代码》写前端的时候,很多的时候是需要支持要网页视频播放的功能,下面这篇文章主要给大家介绍了关于用js控制视频播放进度的相关资料,文中通过代码介绍的非常详细,需要的朋友可... 目录前言html部分:JavaScript部分:注意:总结前言在javascript中控制视频播放

Java中StopWatch的使用示例详解

《Java中StopWatch的使用示例详解》stopWatch是org.springframework.util包下的一个工具类,使用它可直观的输出代码执行耗时,以及执行时间百分比,这篇文章主要介绍... 目录stopWatch 是org.springframework.util 包下的一个工具类,使用它

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很

SpringBoot中封装Cors自动配置方式

《SpringBoot中封装Cors自动配置方式》:本文主要介绍SpringBoot中封装Cors自动配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录SpringBoot封装Cors自动配置背景实现步骤1. 创建 GlobalCorsProperties

golang 日志log与logrus示例详解

《golang日志log与logrus示例详解》log是Go语言标准库中一个简单的日志库,本文给大家介绍golang日志log与logrus示例详解,感兴趣的朋友一起看看吧... 目录一、Go 标准库 log 详解1. 功能特点2. 常用函数3. 示例代码4. 优势和局限二、第三方库 logrus 详解1.