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
12 changes: 8 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ Thumbs.db
*.swp
*~

# Native build outputs
*.dll
*.dylib
*.exe
# Native compiler output
*.o
*.obj
*.exe
*.dll
*.dylib
*.so
*.tmp.c

# Extensionless V example binaries
/examples/ergonomic_lifecycle/ergonomic_lifecycle

# setup.vsh outputs
setup
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ in `VERSION`.

## Unreleased

### Changed

- Clarify which examples are headless versus windowed and ignore local native
compiler products created while running examples.

## 1.7.0 - 2026-09-09

### Added
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,22 @@ Khronos Vulkan registry. They do not move or replace the original tags.
compatibility suffix.

## Examples
An example can be found at [antono2/v_vulkan_bindings/test](https://github.com/antono2/v_vulkan_bindings/tree/master/test)</br>
Using GLFW and Dear ImGui [antono2/v_imgui_examples](https://github.com/antono2/v_imgui_examples)

[`examples/ergonomic_lifecycle`](examples/ergonomic_lifecycle) exercises the
opt-in convenience API from instance creation through queue submission and
ordered cleanup. It is a headless validation smoke test and does not open a
window:

```sh
v run examples/ergonomic_lifecycle
```

For windowed rendering, see the tested GLFW/Vulkan example in
[`antono2/v_imgui_examples`](https://github.com/antono2/v_imgui_examples) and
the Vulkan/OpenCL particle renderer in
[`antono2/opencl`](https://github.com/antono2/opencl/tree/master/examples/vulkan_particles).
The canonical binding-generator tests remain in
[`antono2/v_vulkan_bindings`](https://github.com/antono2/v_vulkan_bindings/tree/master/test).

## Ergonomic API (opt in)

Expand Down