Skip to content
View hjlld's full-sized avatar
Block or Report

Block or report hjlld

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. LearningWebGPU LearningWebGPU Public

    WebGPU tutorials inspired by LearningWebGL.com. Use both WGSL and GLSL/SPIR-V.

    TypeScript 543 45

  2. modocker/webgl-beginners-guide-zhcn-translation modocker/webgl-beginners-guide-zhcn-translation Public

    HTML 10 1

  3. webgpu-bitonic-sort webgpu-bitonic-sort Public

    Bitonic Sort with WebGPU

    TypeScript 8 1

  4. shadertoy-webgpu shadertoy-webgpu Public

    A Shadertoy renderer using WebGPU.

    TypeScript 12

  5. WebGPU 标准释义 - 中文版 WebGPU 标准释义 - 中文版
    1
    # 1. 概述
    2
    
                  
    3
    WebGPU 是一个让网页可以使用系统 [GPU](https://zh.wikipedia.org/zh-cn/%E5%9C%96%E5%BD%A2%E8%99%95%E7%90%86%E5%99%A8) 来实现计算和绘制复杂图形并呈现在网页内部的 Web API 提案。目标和 [WebGL](https://www.khronos.org/webgl/) 家族的 API 类似,但 WebGPU 可以访问更多更高级的 GPU 特性。在 WebGL 中,其主要用途是用于绘制图形,但是经过(相当大的努力的)改造才能用于计算,而 WebGPU 则是把 GPU 通用计算作为首要支持。
    4
    
                  
    5
    ## 1.1 使用场景