Skip to content

Commit

Permalink
Fix 07 properly
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Dec 1, 2024
1 parent eab7bdd commit 728291f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 07_multiple_render_targets/Sources/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,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 @@ -111,7 +111,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);

for (uint32_t i = 0; i < 4; ++i) {
kope_g5_texture_parameters texture_parameters;
Expand Down

0 comments on commit 728291f

Please sign in to comment.