You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be focused on just decoding, not I/O, not caching - those things are handled by other parts of servo, but it needs to support both task and instruction parallelism. We can start by binding existing libraries and replace them with Rust-based decoders over time.
Needs bindings for libjpeg-turbo and libpng at minimum, also BMP and GIF are important, but I don't know offhand the best libs for them.
Replace and remove stb-image.
The text was updated successfully, but these errors were encountered:
Make the desktop no longer show through when alpha blending is involved for borderless windows on the Mac.
This was because the blend function was
`GL_SRC_ALPHA`/`GL_ONE_MINUS_SRC_ALPHA` for both RGB and alpha, and that
was incorrect for alpha, since a destination alpha of 1.0 and a source
alpha < 1.0 should result in an alpha of 1.0.
r? @glennw
It should be focused on just decoding, not I/O, not caching - those things are handled by other parts of servo, but it needs to support both task and instruction parallelism. We can start by binding existing libraries and replace them with Rust-based decoders over time.
Needs bindings for libjpeg-turbo and libpng at minimum, also BMP and GIF are important, but I don't know offhand the best libs for them.
Replace and remove stb-image.
The text was updated successfully, but these errors were encountered: