Skip to content

Commit

Permalink
softgpu: Fix viewport flag clean/dirty.
Browse files Browse the repository at this point in the history
Fixes Split/Second effects, see hrydgard#15501.
  • Loading branch information
unknownbrackets committed May 8, 2022
1 parent 28532fe commit 9367ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GPU/Software/SoftGpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ enum class SoftDirty : uint64_t {

TRANSFORM_BASIC = 1ULL << 18,
TRANSFORM_MATRIX = 1ULL << 19,
TRANSFORM_VIEWPORT = 1ULL << 10,
TRANSFORM_VIEWPORT = 1ULL << 20,
TRANSFORM_FOG = 1ULL << 21,
TRANSFORM_ALL = 31ULL << 18,

Expand Down

0 comments on commit 9367ce8

Please sign in to comment.