-
Notifications
You must be signed in to change notification settings - Fork 223
[[ Blend Modes ]] Support more blend modes #6759
base: develop-9.0
Are you sure you want to change the base?
Conversation
engine/src/tilecachecg.cpp
Outdated
t_blend_mode = kCGBlendModeClear; | ||
break; | ||
case GXblendSrc: | ||
case GXblendSrcOver: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GXblendSrcOver / GXcopy are BlendModeNormal - i.e. SrcOver
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
engine/src/tilecachegl.cpp
Outdated
case GXblendDst: | ||
glBlendFunc(GL_ZERO, GL_ONE); | ||
break; | ||
case GXblendSrcOver: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be moved to the default case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
8f7fbb2
to
775ac83
Compare
775ac83
to
686adaf
Compare
@runrevmark do you think this should be rebased against develop? I was thinking it was reasonable for a maintenance release because it may resolve or at least document rendering issues in accelerated rendering under openGL |
No description provided.