mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed default initialization of software warp textures
https://forum.zdoom.org/viewtopic.php?t=62979
This commit is contained in:
parent
fb540d6d2b
commit
9446ddb318
1 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ class FWarpTexture : public FSoftwareTexture
|
|||
TArray<uint32_t> WarpedPixelsRgba;
|
||||
|
||||
int bWarped = 0;
|
||||
uint64_t GenTime[3] = { 0, 0, 0 };
|
||||
uint64_t GenTime[3] = { UINT64_MAX, UINT64_MAX, UINT64_MAX };
|
||||
int WidthOffsetMultiplier, HeightOffsetMultiplier; // [mxd]
|
||||
|
||||
public:
|
||||
|
@ -195,4 +195,4 @@ public:
|
|||
DCanvas *GetCanvasBgra() { return CanvasBgra; }
|
||||
bool Mipmapped() override { return false; }
|
||||
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue