Why the View jiggled when following the Doc during the figure 7& 8
Do you have a background layer as well? I've had a few people send me similar things after the newest GM update. Looks like the background isn't clearing. You could try (in a pre-draw event) to do:
surface_set_target(application_surface); draw_clear(c_black); surface_reset_target();
Maybe that will solve the issue? I will look into this further!
gpu_set_ztestenable(false); gpu_set_zwriteenable(false); draw_set_color(c_black); draw_rectangle(0,0,window_get_width(), window_get_height(), false); gpu_set_ztestenable(true); gpu_set_zwriteenable(true);