We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The outlines of object boundaries (cell::id) must be set by pro::shape when rendering each window.
A special case of #164 when the background (or image fragment) consists of only one pixel (RGBA color)
struct cell { // Neighbor cells // c0 c1 // c2 // // BG interpolation type (two 1-bit values): // 0 -- None // 1 -- Cubic // // 0 1 // │ └────── interpolation type between `c0` and `c2` // └──────── interpolation type between `c0` and `c1` byte interpolation_vector : 2; ... rgba fg; rgba bg; ... other cell data; };
Region without background interpolation (nearest neighbor)
Region with bicubic background interpolation (I drew in a graphic editor)
The text was updated successfully, but these errors were encountered:
o-sdn-o
No branches or pull requests
The outlines of object boundaries (cell::id) must be set by pro::shape when rendering each window.
A special case of #164 when the background (or image fragment) consists of only one pixel (RGBA color)
Region without background interpolation (nearest neighbor)
Region with bicubic background interpolation (I drew in a graphic editor)
The text was updated successfully, but these errors were encountered: