File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ async fn test_impl(ctx: &TestingContext) {
45
45
layout : None ,
46
46
vertex : wgpu:: VertexState {
47
47
module : & shader,
48
- entry_point : "vs_main" ,
48
+ entry_point : Some ( "vs_main" ) ,
49
49
compilation_options : Default :: default ( ) ,
50
50
buffers : & [ ] ,
51
51
} ,
@@ -54,7 +54,7 @@ async fn test_impl(ctx: &TestingContext) {
54
54
multisample : wgpu:: MultisampleState :: default ( ) ,
55
55
fragment : Some ( wgpu:: FragmentState {
56
56
module : & shader,
57
- entry_point : "fs_main" ,
57
+ entry_point : Some ( "fs_main" ) ,
58
58
compilation_options : Default :: default ( ) ,
59
59
targets : & [ Some ( wgpu:: ColorTargetState {
60
60
format : wgpu:: TextureFormat :: Rgba8Unorm ,
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ async fn test_impl(ctx: &TestingContext) {
45
45
layout : None ,
46
46
vertex : wgpu:: VertexState {
47
47
module : & shader,
48
- entry_point : "vs_main" ,
48
+ entry_point : Some ( "vs_main" ) ,
49
49
compilation_options : Default :: default ( ) ,
50
50
buffers : & [ ] ,
51
51
} ,
@@ -54,7 +54,7 @@ async fn test_impl(ctx: &TestingContext) {
54
54
multisample : wgpu:: MultisampleState :: default ( ) ,
55
55
fragment : Some ( wgpu:: FragmentState {
56
56
module : & shader,
57
- entry_point : "fs_main" ,
57
+ entry_point : Some ( "fs_main" ) ,
58
58
compilation_options : Default :: default ( ) ,
59
59
targets : & [ Some ( wgpu:: ColorTargetState {
60
60
format : wgpu:: TextureFormat :: Rgba8Unorm ,
You can’t perform that action at this time.
0 commit comments