Skip to content
Snippets Groups Projects
Commit 7dfb26eb authored by Jim's avatar Jim
Browse files

Reset blend state to default after drawing

parent 57cfd4f9
No related branches found
No related tags found
No related merge requests found
......@@ -442,6 +442,8 @@ void XCompcapMain::render(effect_t effect)
gs_enable_blending(false);
gs_draw_sprite(p->tex, 0, 0, 0);
gs_reset_blend_state();
}
uint32_t XCompcapMain::width()
......
......@@ -105,7 +105,6 @@ void xcursor_render(xcursor_t *data) {
gs_enable_blending(True);
gs_blendfunction(GS_BLEND_ONE, GS_BLEND_INVSRCALPHA);
gs_draw_sprite(data->tex, 0, 0, 0);
gs_enable_blending(False);
gs_matrix_pop();
}
......
......@@ -275,6 +275,8 @@ static void xshm_video_render(void *vptr, effect_t effect)
if (data->show_cursor)
xcursor_render(data->cursor);
gs_reset_blend_state();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment