Skip to content

Commit

Permalink
Fix 09 properly
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Dec 1, 2024
1 parent 728291f commit 1c65c86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 09_depth_render_targets/Sources/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static void update(void *data) {

kope_g5_command_list_present(&list);

kope_g5_device_execute_command_list(&device, KOPE_G5_COMMAND_LIST_TYPE_GRAPHICS, &list);
kope_g5_device_execute_command_list(&device, &list);

#ifdef SCREENSHOT
screenshot_take(&device, &list, framebuffer, width, height);
Expand All @@ -91,7 +91,7 @@ int kickstart(int argc, char **argv) {

kong_init(&device);

kope_g5_device_create_command_list(&device, &list);
kope_g5_device_create_command_list(&device, KOPE_G5_COMMAND_LIST_TYPE_GRAPHICS, &list);

kope_g5_texture_parameters texture_parameters;
texture_parameters.width = width;
Expand Down

0 comments on commit 1c65c86

Please sign in to comment.