Skip to content

Commit

Permalink
Remove constexpr
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Evstyukhin committed Apr 3, 2022
1 parent a6777cf commit 3b8fbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bc7Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ INLINED int ComputeSubsetTable(const Area& area, const __m128i mweights, Modulat
__m128i mpacked = _mm_load_si128(&area.DataMask_I16[i]);
__m128i mpixel = _mm_unpacklo_epi64(mpacked, mpacked);

constexpr uint64_t bottom = kBlockMaximalColorAlphaError * ((1uLL << 32) + 1uLL);
uint64_t bottom = kBlockMaximalColorAlphaError * ((1uLL << 32) + 1uLL);

for (int j = 0; j < M; j += 2)
{
Expand Down

0 comments on commit 3b8fbf6

Please sign in to comment.