-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "com.saivs.plugin.bindless.vulkan",
"version": "1.4.0",
"displayName": "Unity Vulkan Bindless Native Plugin",
"description": "Native plugin bringing bindless textures to Unity on Vulkan. Register any number of textures into a global descriptor heap and sample them in shaders by integer index — no per-draw binding, mixed sizes/formats, per-texture samplers from import settings, dynamic registration for streaming. Companion to the Multi-Draw Indirect plugin for fully GPU-driven rendering.",
"unity": "6000.0",
"author": {
"name": "Denis Zhukov",
"url": "https://github.com/saivs"
},
"keywords": [
"rendering",
"gpu-driven",
"bindless",
"descriptor-indexing",
"vulkan",
"texture-streaming",
"native-plugin"
],
"samples": [
{
"displayName": "Bindless Test",
"description": "Grid of cubes drawn with a single RenderMeshIndirect call, every instance sampling its own texture from the bindless heap. Includes an on-screen diagnostics panel.",
"path": "Samples~/BindlessTest"
}
]
}