Skip to content

Commit

Permalink
[bug] Replace "dest" with "src2" in C XOR blend
Browse files Browse the repository at this point in the history
This one slipped through...

fixup-for: b52a381 [bug] Replace all "dest" with "src2" in blend.cpp
  • Loading branch information
grandchild committed Nov 2, 2024
1 parent a886a08 commit 6a333e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avs/vis_avs/blend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ void blend_sub_src1_from_src2_abs(const uint32_t* src1,
static inline void blend_xor_rgb0_8_c(const uint32_t* src1,
const uint32_t* src2,
uint32_t* dest) {
*dest = *src1 ^ *dest;
*dest = *src1 ^ *src2;
}

static inline void blend_xor_rgb0_8_x86v128(const uint32_t* src1,
Expand Down

0 comments on commit 6a333e6

Please sign in to comment.