Skip to content

Commit

Permalink
use render target w/o ms
Browse files Browse the repository at this point in the history
  • Loading branch information
tcdude committed Aug 3, 2024
1 parent d5f6ab8 commit 4e6d28f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/basic.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ static void create_png(kinc_g4_render_target_t *target) {
static void update(void *unused) {
kinc_g4_begin(0);
kinc_g4_render_target_t target;
kinc_g4_render_target_init_with_multisampling(&target, WINDOW_WIDTH, WINDOW_HEIGHT,
KINC_G4_RENDER_TARGET_FORMAT_32BIT, 16, 0, 1);
kinc_g4_render_target_init(&target, WINDOW_WIDTH, WINDOW_HEIGHT,
KINC_G4_RENDER_TARGET_FORMAT_32BIT, 16, 0);
kinc_g4_render_target_t *targets = {&target};
kinc_g4_set_render_targets(&targets, 1);
kinc_g4_clear(KINC_G4_CLEAR_COLOR, 0xff000000, 0, 0);
Expand Down

0 comments on commit 4e6d28f

Please sign in to comment.