2
2
3
3
use std:: { borrow:: Cow , collections:: HashMap , num:: NonZeroU32 } ;
4
4
5
- use bytemuck:: { Pod , Zeroable } ;
6
5
use egui:: epaint:: Primitive ;
7
6
use wgpu;
8
7
use wgpu:: util:: DeviceExt as _;
@@ -35,20 +34,17 @@ impl ScreenDescriptor {
35
34
}
36
35
37
36
/// Uniform buffer used when rendering.
38
- #[ derive( Clone , Copy , Debug ) ]
37
+ #[ derive( Clone , Copy , Debug , bytemuck :: Pod , bytemuck :: Zeroable ) ]
39
38
#[ repr( C ) ]
40
39
struct UniformBuffer {
41
40
screen_size_in_points : [ f32 ; 2 ] ,
42
41
}
43
42
44
- unsafe impl Pod for UniformBuffer { }
45
-
46
- unsafe impl Zeroable for UniformBuffer { }
47
-
48
43
/// Wraps the buffers and includes additional information.
49
44
#[ derive( Debug ) ]
50
45
struct SizedBuffer {
51
46
buffer : wgpu:: Buffer ,
47
+ /// number of bytes
52
48
size : usize ,
53
49
}
54
50
@@ -275,8 +271,8 @@ impl RenderPass {
275
271
index_buffer,
276
272
) in paint_jobs
277
273
. iter ( )
278
- . zip ( self . vertex_buffers . iter ( ) )
279
- . zip ( self . index_buffers . iter ( ) )
274
+ . zip ( & self . vertex_buffers )
275
+ . zip ( & self . index_buffers )
280
276
{
281
277
// Transform clip rect to physical pixels.
282
278
let clip_min_x = pixels_per_point * clip_rect. min . x ;
@@ -342,24 +338,27 @@ impl RenderPass {
342
338
id : egui:: TextureId ,
343
339
image_delta : & egui:: epaint:: ImageDelta ,
344
340
) {
341
+ let width = image_delta. image . width ( ) as u32 ;
342
+ let height = image_delta. image . height ( ) as u32 ;
343
+
345
344
let size = wgpu:: Extent3d {
346
- width : image_delta . image . size ( ) [ 0 ] as u32 ,
347
- height : image_delta . image . size ( ) [ 1 ] as u32 ,
345
+ width,
346
+ height,
348
347
depth_or_array_layers : 1 ,
349
348
} ;
350
349
351
350
let data_color32 = match & image_delta. image {
352
351
egui:: ImageData :: Color ( image) => {
353
352
assert_eq ! (
354
- image . width( ) * image . height( ) ,
353
+ width as usize * height as usize ,
355
354
image. pixels. len( ) ,
356
355
"Mismatch between texture size and texel count"
357
356
) ;
358
357
Cow :: Borrowed ( & image. pixels )
359
358
}
360
359
egui:: ImageData :: Font ( image) => {
361
360
assert_eq ! (
362
- image . width( ) * image . height( ) ,
361
+ width as usize * height as usize ,
363
362
image. pixels. len( ) ,
364
363
"Mismatch between texture size and texel count"
365
364
) ;
@@ -379,8 +378,8 @@ impl RenderPass {
379
378
data_bytes,
380
379
wgpu:: ImageDataLayout {
381
380
offset : 0 ,
382
- bytes_per_row : NonZeroU32 :: new ( ( 4 * image_delta . image . width ( ) ) as u32 ) ,
383
- rows_per_image : NonZeroU32 :: new ( image_delta . image . height ( ) as u32 ) ,
381
+ bytes_per_row : NonZeroU32 :: new ( 4 * width) ,
382
+ rows_per_image : NonZeroU32 :: new ( height) ,
384
383
} ,
385
384
size,
386
385
) ;
@@ -451,9 +450,6 @@ impl RenderPass {
451
450
paint_jobs : & [ egui:: epaint:: ClippedPrimitive ] ,
452
451
screen_descriptor : & ScreenDescriptor ,
453
452
) {
454
- let index_size = self . index_buffers . len ( ) ;
455
- let vertex_size = self . vertex_buffers . len ( ) ;
456
-
457
453
let screen_size_in_points = screen_descriptor. screen_size_in_points ( ) ;
458
454
459
455
self . update_buffer (
@@ -470,7 +466,7 @@ impl RenderPass {
470
466
match primitive {
471
467
Primitive :: Mesh ( mesh) => {
472
468
let data: & [ u8 ] = bytemuck:: cast_slice ( & mesh. indices ) ;
473
- if i < index_size {
469
+ if i < self . index_buffers . len ( ) {
474
470
self . update_buffer ( device, queue, & BufferType :: Index , i, data) ;
475
471
} else {
476
472
let buffer = device. create_buffer_init ( & wgpu:: util:: BufferInitDescriptor {
@@ -485,7 +481,7 @@ impl RenderPass {
485
481
}
486
482
487
483
let data: & [ u8 ] = bytemuck:: cast_slice ( & mesh. vertices ) ;
488
- if i < vertex_size {
484
+ if i < self . vertex_buffers . len ( ) {
489
485
self . update_buffer ( device, queue, & BufferType :: Vertex , i, data) ;
490
486
} else {
491
487
let buffer = device. create_buffer_init ( & wgpu:: util:: BufferInitDescriptor {
@@ -501,7 +497,7 @@ impl RenderPass {
501
497
}
502
498
}
503
499
Primitive :: Callback ( _) => {
504
- tracing:: warn!( "Painting callbacks not supported by egui-wgpu" ) ;
500
+ tracing:: warn!( "Painting callbacks not supported by egui-wgpu (yet) " ) ;
505
501
}
506
502
}
507
503
}
0 commit comments