Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.26] — 2026-05-15

### Dependencies

- gogpu v0.34.8 → v0.35.0 (Browser/WASM platform support, X11 XKB constant fix — gogpu#70, gogpu#227, @unxed)
- wgpu v0.27.5 → v0.28.1 (Browser WebGPU backend + API stubs)

## [0.1.25] — 2026-05-14

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,11 +440,11 @@ Full Vello 9-stage compute pipeline for GPU-accelerated path rendering:
|------------|---------|---------|--------|
| gogpu/gg | v0.46.11 | 2D rendering + scene.Scene | ✅ Integrated |
| gogpu/gpucontext | v0.18.0 | Shared interfaces | ✅ Integrated |
| gogpu/gogpu | v0.34.8 | Windowing (examples) | ✅ Integrated |
| gogpu/gogpu | v0.35.0 | Windowing, Browser/WASM (examples) | ✅ Integrated |
| coregx/signals | v0.1.0 | State management | ✅ Integrated |
| golang.org/x/image | v0.39.0 | Inter font (standard) | ✅ Integrated |

**Indirect:** go-text/typesetting v0.3.4, gogpu/gputypes v0.5.0, gogpu/wgpu v0.27.5, gogpu/naga v0.17.14, goffi v0.5.1, golang.org/x/text v0.37.0
**Indirect:** go-text/typesetting v0.3.4, gogpu/gputypes v0.5.0, gogpu/wgpu v0.28.1, gogpu/naga v0.17.14, goffi v0.5.1, golang.org/x/text v0.37.0

---

Expand Down
4 changes: 2 additions & 2 deletions docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1443,11 +1443,11 @@ The `registry/` package provides a global registry for widget factories:
|------------|---------|---------|
| `github.com/gogpu/gg` | 2D graphics + scene.Scene tile-parallel rendering | v0.46.11 |
| `github.com/gogpu/gpucontext` | Window/Platform provider interfaces | v0.18.0 |
| `github.com/gogpu/gogpu` | Application framework, windowing (examples only) | v0.34.8 |
| `github.com/gogpu/gogpu` | Application framework, windowing, Browser/WASM (examples only) | v0.35.0 |
| `github.com/coregx/signals` | Reactive state management | v0.1.0 |
| `golang.org/x/image` | Font rendering infrastructure | v0.39.0 |

**Indirect:** gogpu/wgpu v0.27.5, gogpu/naga v0.17.13, gogpu/gputypes v0.5.0, goffi v0.5.1, go-text/typesetting v0.3.4, golang.org/x/text v0.37.0
**Indirect:** gogpu/wgpu v0.28.1, gogpu/naga v0.17.14, gogpu/gputypes v0.5.0, goffi v0.5.1, go-text/typesetting v0.3.4, golang.org/x/text v0.37.0

Go version: **1.25.0**

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.25.0
require (
github.com/coregx/signals v0.1.0
github.com/gogpu/gg v0.46.11
github.com/gogpu/gogpu v0.34.8
github.com/gogpu/gogpu v0.35.0
github.com/gogpu/gpucontext v0.18.0
golang.org/x/image v0.40.0
)
Expand All @@ -16,7 +16,7 @@ require (
github.com/go-webgpu/webgpu v0.4.3 // indirect
github.com/gogpu/gputypes v0.5.0 // indirect
github.com/gogpu/naga v0.17.13 // indirect
github.com/gogpu/wgpu v0.27.5 // indirect
github.com/gogpu/wgpu v0.28.1 // indirect
golang.org/x/sys v0.44.0 // indirect
golang.org/x/text v0.37.0 // indirect
)
4 changes: 4 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ github.com/gogpu/gogpu v0.34.6 h1:mKuD8x1OqxjlQl1S8scPodHMpGqBAlnWbLRDTB7b+Bc=
github.com/gogpu/gogpu v0.34.6/go.mod h1:knsNvdH0AiC/aqQVxOjVOwSH5ZzQqXMs4az3tTand80=
github.com/gogpu/gogpu v0.34.8 h1:zEsudh1+0g6sRKyhxVUSzUJvswJ7zI95Tlmih7TGYSc=
github.com/gogpu/gogpu v0.34.8/go.mod h1:knsNvdH0AiC/aqQVxOjVOwSH5ZzQqXMs4az3tTand80=
github.com/gogpu/gogpu v0.35.0 h1:8EUZLWu+JLt8UlnQkYk2JAWudHLf30ufwqRNXREJDTA=
github.com/gogpu/gogpu v0.35.0/go.mod h1:Y7o4T464KMcuQWqhy8A5YKqUrx1Jlmkavu44073EVvk=
github.com/gogpu/gpucontext v0.18.0 h1:Y48ScE0cNPevoqZEhT8CxWGh9C86TeCjtLu5eFU+Grw=
github.com/gogpu/gpucontext v0.18.0/go.mod h1:6zwdmYXH5GQltoiHbb3WXVS/UJ5bFsCux0mXCVqGlzY=
github.com/gogpu/gputypes v0.5.0 h1:i2ED/9w6m6yLxf8XJT69/NIMSNTLO2y5F1LqvugCKIE=
Expand All @@ -44,6 +46,8 @@ github.com/gogpu/wgpu v0.27.4 h1:9dlucfHFFNStK6usR0UxmMO0vaAgQ17VWqdMCLNG0vc=
github.com/gogpu/wgpu v0.27.4/go.mod h1:icn/JDIIYMxk68DpU7t1f9xV+seRyFI2j3YBMY6qSho=
github.com/gogpu/wgpu v0.27.5 h1:WifeGAYuxbjHZ8NUgeFv+6XKSzR1g9CjCxM4pvMvOFc=
github.com/gogpu/wgpu v0.27.5/go.mod h1:icn/JDIIYMxk68DpU7t1f9xV+seRyFI2j3YBMY6qSho=
github.com/gogpu/wgpu v0.28.1 h1:3CnX9stWxYhsdHSxzObBBJurFv69Du9suYpL5yabEHY=
github.com/gogpu/wgpu v0.28.1/go.mod h1:icn/JDIIYMxk68DpU7t1f9xV+seRyFI2j3YBMY6qSho=
golang.org/x/image v0.39.0 h1:skVYidAEVKgn8lZ602XO75asgXBgLj9G/FE3RbuPFww=
golang.org/x/image v0.39.0/go.mod h1:sIbmppfU+xFLPIG0FoVUTvyBMmgng1/XAMhQ2ft0hpA=
golang.org/x/image v0.40.0 h1:Tw4GyDXMo+daZN1znreBRC3VayR1aLFUyUEOLUdW1a8=
Expand Down
Loading