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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
use super::*;
impl ViewportGpuResources {
/// Lazily create the polyline render pipeline (instanced TriangleList : screen-space thick lines).
///
/// No-op if already created. Called from `prepare()` when `frame.scene.polylines` is non-empty.
pub(crate) fn ensure_polyline_pipeline(&mut self, device: &wgpu::Device) {
if self.polyline_pipeline.is_some() {
return;
}
let pl_bgl = device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
label: Some("polyline_bgl"),
entries: &[
wgpu::BindGroupLayoutEntry {
binding: 0,
visibility: wgpu::ShaderStages::VERTEX | wgpu::ShaderStages::FRAGMENT,
ty: wgpu::BindingType::Buffer {
ty: wgpu::BufferBindingType::Uniform,
has_dynamic_offset: false,
min_binding_size: None,
},
count: None,
},
wgpu::BindGroupLayoutEntry {
binding: 1,
visibility: wgpu::ShaderStages::VERTEX,
ty: wgpu::BindingType::Texture {
sample_type: wgpu::TextureSampleType::Float { filterable: true },
view_dimension: wgpu::TextureViewDimension::D2,
multisampled: false,
},
count: None,
},
wgpu::BindGroupLayoutEntry {
binding: 2,
visibility: wgpu::ShaderStages::VERTEX,
ty: wgpu::BindingType::Sampler(wgpu::SamplerBindingType::Filtering),
count: None,
},
],
});
let shader = device.create_shader_module(wgpu::ShaderModuleDescriptor {
label: Some("polyline_shader"),
source: wgpu::ShaderSource::Wgsl(include_str!("../../shaders/polyline.wgsl").into()),
});
let layout = device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
label: Some("polyline_pipeline_layout"),
bind_group_layouts: &[&self.camera_bind_group_layout, &pl_bgl],
push_constant_ranges: &[],
});
// Instance buffer layout (112 bytes per segment):
// offset 0: pos_a vec3 : segment start (world space)
// offset 12: pos_b vec3 : segment end (world space)
// offset 24: prev_pos vec3 : point before pos_a (for miter at A); equals pos_a if strip start
// offset 36: next_pos vec3 : point after pos_b (for miter at B); equals pos_b if strip end
// offset 48: scalar_a f32
// offset 52: scalar_b f32
// offset 56: has_prev u32 : 1 = prev_pos is valid (interior join at A), 0 = square cap
// offset 60: has_next u32 : 1 = next_pos is valid (interior join at B), 0 = square cap
// offset 64: color_a vec4 : direct RGBA at segment start
// offset 80: color_b vec4 : direct RGBA at segment end
// offset 96: radius_a f32 : line width in px at A (= line_width when node_radii is empty)
// offset 100: radius_b f32 : line width in px at B
// offset 104: use_direct_color u32 : 1 = use color_a/b, 0 = use scalar LUT / default
// offset 108: _pad u32
let pl_instance_layout = wgpu::VertexBufferLayout {
array_stride: 112,
step_mode: wgpu::VertexStepMode::Instance,
attributes: &[
wgpu::VertexAttribute {
offset: 0,
shader_location: 0,
format: wgpu::VertexFormat::Float32x3,
}, // pos_a
wgpu::VertexAttribute {
offset: 12,
shader_location: 1,
format: wgpu::VertexFormat::Float32x3,
}, // pos_b
wgpu::VertexAttribute {
offset: 24,
shader_location: 2,
format: wgpu::VertexFormat::Float32x3,
}, // prev_pos
wgpu::VertexAttribute {
offset: 36,
shader_location: 3,
format: wgpu::VertexFormat::Float32x3,
}, // next_pos
wgpu::VertexAttribute {
offset: 48,
shader_location: 4,
format: wgpu::VertexFormat::Float32,
}, // scalar_a
wgpu::VertexAttribute {
offset: 52,
shader_location: 5,
format: wgpu::VertexFormat::Float32,
}, // scalar_b
wgpu::VertexAttribute {
offset: 56,
shader_location: 6,
format: wgpu::VertexFormat::Uint32,
}, // has_prev
wgpu::VertexAttribute {
offset: 60,
shader_location: 7,
format: wgpu::VertexFormat::Uint32,
}, // has_next
wgpu::VertexAttribute {
offset: 64,
shader_location: 8,
format: wgpu::VertexFormat::Float32x4,
}, // color_a
wgpu::VertexAttribute {
offset: 80,
shader_location: 9,
format: wgpu::VertexFormat::Float32x4,
}, // color_b
wgpu::VertexAttribute {
offset: 96,
shader_location: 10,
format: wgpu::VertexFormat::Float32,
}, // radius_a
wgpu::VertexAttribute {
offset: 100,
shader_location: 11,
format: wgpu::VertexFormat::Float32,
}, // radius_b
wgpu::VertexAttribute {
offset: 104,
shader_location: 12,
format: wgpu::VertexFormat::Uint32,
}, // use_direct_color
],
};
let pipeline = device.create_render_pipeline(&wgpu::RenderPipelineDescriptor {
label: Some("polyline_pipeline"),
layout: Some(&layout),
vertex: wgpu::VertexState {
module: &shader,
entry_point: Some("vs_main"),
buffers: &[pl_instance_layout],
compilation_options: wgpu::PipelineCompilationOptions::default(),
},
fragment: Some(wgpu::FragmentState {
module: &shader,
entry_point: Some("fs_main"),
targets: &[Some(wgpu::ColorTargetState {
format: self.target_format,
blend: Some(wgpu::BlendState::ALPHA_BLENDING),
write_mask: wgpu::ColorWrites::ALL,
})],
compilation_options: wgpu::PipelineCompilationOptions::default(),
}),
primitive: wgpu::PrimitiveState {
topology: wgpu::PrimitiveTopology::TriangleList,
..Default::default()
},
depth_stencil: Some(wgpu::DepthStencilState {
format: wgpu::TextureFormat::Depth24PlusStencil8,
depth_write_enabled: true,
depth_compare: wgpu::CompareFunction::LessEqual,
stencil: wgpu::StencilState::default(),
bias: wgpu::DepthBiasState::default(),
}),
multisample: wgpu::MultisampleState {
count: self.sample_count,
..Default::default()
},
multiview: None,
cache: None,
});
self.polyline_bgl = Some(pl_bgl);
self.polyline_pipeline = Some(pipeline);
}
/// Upload one [`PolylineItem`] to the GPU and return draw data.
///
/// Converts the strip-based point list into a flat segment-instance buffer
/// suitable for the screen-space thick-line pipeline with miter joints.
///
/// Each consecutive pair of points in a strip becomes one 112-byte instance
/// containing miter geometry, scalar coloring, direct RGBA colors, and per-vertex
/// radii. See the comment in `ensure_polyline_pipeline` for the full layout.
///
/// `viewport_size` is `[width_px, height_px]` and is baked into the per-item
/// uniform so the vertex shader can compute correct pixel offsets.
pub(crate) fn upload_polyline(
&mut self,
device: &wgpu::Device,
queue: &wgpu::Queue,
item: &crate::renderer::PolylineItem,
viewport_size: [f32; 2],
) -> PolylineGpuData {
// Build the segment instance buffer (112 bytes per segment).
#[repr(C)]
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
struct SegInstance {
pos_a: [f32; 3], // offset 0
pos_b: [f32; 3], // offset 12
prev_pos: [f32; 3], // offset 24
next_pos: [f32; 3], // offset 36
scalar_a: f32, // offset 48
scalar_b: f32, // offset 52
has_prev: u32, // offset 56
has_next: u32, // offset 60
color_a: [f32; 4], // offset 64
color_b: [f32; 4], // offset 80
radius_a: f32, // offset 96
radius_b: f32, // offset 100
use_direct_color: u32, // offset 104
_pad: u32, // offset 108
}
// Determine which color/scalar/radius source to use per segment.
let use_direct = !item.node_colors.is_empty() || !item.edge_colors.is_empty();
let use_edge_scalars = item.scalars.is_empty() && !item.edge_scalars.is_empty();
let use_node_radii = !item.node_radii.is_empty();
let mut instances: Vec<SegInstance> = Vec::new();
let positions = &item.positions;
let npos = positions.len();
// Collect strip ranges: (start_idx, end_idx) into `positions`.
let strip_ranges: Vec<(usize, usize)> = if item.strip_lengths.is_empty() {
vec![(0, npos)]
} else {
let mut ranges = Vec::with_capacity(item.strip_lengths.len());
let mut off = 0usize;
for &l in &item.strip_lengths {
ranges.push((off, off + l as usize));
off += l as usize;
}
ranges
};
let mut seg_idx_global: usize = 0; // monotonic segment counter across all strips
for &(strip_start, strip_end) in &strip_ranges {
let end = strip_end.min(npos);
for i in strip_start..end.saturating_sub(1) {
let j = i + 1;
let has_prev = i > strip_start;
let has_next = j + 1 < end;
// Scalar: edge_scalars (flat per segment) > per-node scalars > 0
let (scalar_a, scalar_b) = if use_edge_scalars {
let s = item.edge_scalars.get(seg_idx_global).copied().unwrap_or(0.0);
(s, s)
} else {
(
item.scalars.get(i).copied().unwrap_or(0.0),
item.scalars.get(j).copied().unwrap_or(0.0),
)
};
// Direct color: node_colors (per-endpoint) > edge_colors (per-segment)
let (color_a, color_b) = if !item.node_colors.is_empty() {
(
item.node_colors.get(i).copied().unwrap_or([1.0; 4]),
item.node_colors.get(j).copied().unwrap_or([1.0; 4]),
)
} else if !item.edge_colors.is_empty() {
let c = item.edge_colors.get(seg_idx_global).copied().unwrap_or([1.0; 4]);
(c, c)
} else {
([1.0; 4], [1.0; 4])
};
// Radius: per-node > global line_width
let (radius_a, radius_b) = if use_node_radii {
(
item.node_radii.get(i).copied().unwrap_or(item.line_width),
item.node_radii.get(j).copied().unwrap_or(item.line_width),
)
} else {
(item.line_width, item.line_width)
};
instances.push(SegInstance {
pos_a: positions[i],
pos_b: positions[j],
prev_pos: if has_prev { positions[i - 1] } else { positions[i] },
next_pos: if has_next { positions[j + 1] } else { positions[j] },
scalar_a,
scalar_b,
has_prev: has_prev as u32,
has_next: has_next as u32,
color_a,
color_b,
radius_a,
radius_b,
use_direct_color: use_direct as u32,
_pad: 0,
});
seg_idx_global += 1;
}
}
let seg_count = instances.len() as u32;
// Allocate instance buffer (min 112 bytes so wgpu doesn't complain on empty).
let seg_bytes: &[u8] = bytemuck::cast_slice(&instances);
let vertex_buffer = device.create_buffer(&wgpu::BufferDescriptor {
label: Some("polyline_vertex_buf"),
size: seg_bytes.len().max(112) as u64,
usage: wgpu::BufferUsages::VERTEX | wgpu::BufferUsages::COPY_DST,
mapped_at_creation: false,
});
if !seg_bytes.is_empty() {
queue.write_buffer(&vertex_buffer, 0, seg_bytes);
}
// Determine scalar range for the LUT uniform (node or edge scalars).
let scalar_source: &[f32] = if !item.scalars.is_empty() {
&item.scalars
} else {
&item.edge_scalars
};
let (has_scalar, scalar_min, scalar_max) = if !scalar_source.is_empty() {
let (min, max) = item.scalar_range.unwrap_or_else(|| {
let mn = scalar_source.iter().cloned().fold(f32::INFINITY, f32::min);
let mx = scalar_source.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
(mn, mx)
});
(1u32, min, max)
} else {
(0u32, 0.0f32, 1.0f32)
};
#[repr(C)]
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
struct PolylineUniform {
default_color: [f32; 4], // offset 0
line_width: f32, // offset 16
scalar_min: f32, // offset 20
scalar_max: f32, // offset 24
has_scalar: u32, // offset 28
viewport_width: f32, // offset 32
viewport_height: f32, // offset 36
_pad: [f32; 2], // offset 40 (total 48 bytes)
}
let uniform_data = PolylineUniform {
default_color: item.default_color,
line_width: item.line_width,
scalar_min,
scalar_max,
has_scalar,
viewport_width: viewport_size[0].max(1.0),
viewport_height: viewport_size[1].max(1.0),
_pad: [0.0; 2],
};
let uniform_buf = device.create_buffer(&wgpu::BufferDescriptor {
label: Some("polyline_uniform_buf"),
size: std::mem::size_of::<PolylineUniform>() as u64,
usage: wgpu::BufferUsages::UNIFORM | wgpu::BufferUsages::COPY_DST,
mapped_at_creation: false,
});
queue.write_buffer(&uniform_buf, 0, bytemuck::bytes_of(&uniform_data));
let lut_view = self
.builtin_colormap_ids
.and_then(|ids| {
let preset_id = item
.colormap_id
.unwrap_or(ids[crate::resources::BuiltinColormap::Viridis as usize]);
self.colormap_views.get(preset_id.0)
})
.unwrap_or(&self.fallback_lut_view);
let lut_sampler = &self.material_sampler;
let bgl = self
.polyline_bgl
.as_ref()
.expect("ensure_polyline_pipeline not called");
let bind_group = device.create_bind_group(&wgpu::BindGroupDescriptor {
label: Some("polyline_bind_group"),
layout: bgl,
entries: &[
wgpu::BindGroupEntry {
binding: 0,
resource: uniform_buf.as_entire_binding(),
},
wgpu::BindGroupEntry {
binding: 1,
resource: wgpu::BindingResource::TextureView(lut_view),
},
wgpu::BindGroupEntry {
binding: 2,
resource: wgpu::BindingResource::Sampler(lut_sampler),
},
],
});
PolylineGpuData {
vertex_buffer,
segment_count: seg_count,
bind_group,
_uniform_buf: uniform_buf,
}
}
}