Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update porter_duff_blend.frag
  • Loading branch information
Jonah Williams authored Apr 23, 2024
commit fa9863ebcbb48d2c724f1169258fd8e719ddf2cf
2 changes: 1 addition & 1 deletion impeller/entity/shaders/blending/porter_duff_blend.frag
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ f16vec4 Sample(f16sampler2D texture_sampler,
}

void main() {
f16vec4 dst = texture(texture_sampler_dst, v_texture_coords, frag_info.tmx,
f16vec4 dst = Sample(texture_sampler_dst, v_texture_coords, frag_info.tmx,
frag_info.tmy) *
frag_info.input_alpha;
f16vec4 src = v_color;
Expand Down