Skip to content
Snippets Groups Projects
Unverified Commit 28e00c94 authored by sam's avatar sam Committed by GitHub
Browse files

Merge pull request #91 from StaffEngineer/transparent-background

fix transparent backgrounds with opaque text
parents aa1b981f dda7e2be
No related branches found
No related tags found
No related merge requests found
......@@ -336,7 +336,7 @@ fn draw_pixel(
buffer[offset + 2] = (out.b() * 255.0) as u8;
buffer[offset + 1] = (out.g() * 255.0) as u8;
buffer[offset] = (out.r() * 255.0) as u8;
buffer[offset + 3] = (bg.a() * 255.0) as u8;
buffer[offset + 3] = (out.a() * 255.0) as u8;
}
pub(crate) fn blink_cursor(
......
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