Skip to content

Commit 7fe0853

Browse files
authored
example showcase: switch default api to webgpu (#9193)
# Objective - in #9168 I did some change to the showcase script, introducing the notion of web api and setting the default Web API to webgl2 - that script was actually only called for webgpu example, so that should have been the default value
1 parent ff89968 commit 7fe0853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/example-showcase/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ enum Action {
5353
/// Path to the folder where the content should be created
5454
content_folder: String,
5555

56-
#[arg(value_enum, long, default_value_t = WebApi::Webgl2)]
56+
#[arg(value_enum, long, default_value_t = WebApi::Webgpu)]
5757
/// Which API to use for rendering
5858
api: WebApi,
5959
},

0 commit comments

Comments
 (0)