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
this means if you're not seeing alpha blending, the issue is probably elsewhere. For example, a misconfigured attr::Info, or perhaps use of buffer::Info::add (on any buffer info) multiple times in the same frame (in which case, use immediate mode rendering, described in #57)
It could also be the result of not dirtying your Texenvs if they are changed more than once in a frame, see #56
The text was updated successfully, but these errors were encountered:
While the
Previous
for the firstTexenv
is the pixel that is currently in the framebuffer,You instead want to notice this:
which is ran when
citro3d
is initialised.src
is the output of yourTexenvs
,dst
is the pixel currently in the framebufferthink of this as:
this means if you're not seeing alpha blending, the issue is probably elsewhere. For example, a misconfigured
attr::Info
, or perhaps use ofbuffer::Info::add
(on any buffer info) multiple times in the same frame (in which case, use immediate mode rendering, described in #57)It could also be the result of not dirtying your
Texenv
s if they are changed more than once in a frame, see #56The text was updated successfully, but these errors were encountered: