Skip to content

Commit

Permalink
Fix the layer count in 10_cubemap
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Sep 27, 2024
1 parent 018a09b commit c45906b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 10_cubemap/Sources/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ int kickstart(int argc, char **argv) {
fs_params.fs_texture.base_mip_level = 0;
fs_params.fs_texture.mip_level_count = 1;
fs_params.fs_texture.base_array_layer = 0;
fs_params.fs_texture.array_layer_count = 1;
fs_params.fs_texture.array_layer_count = 6;
fs_params.fs_sampler = &sampler;
kong_create_fs_set(&device, &fs_params, &set);

Expand Down
2 changes: 1 addition & 1 deletion Kinc

0 comments on commit c45906b

Please sign in to comment.