forked from organicmaps/organicmaps
Fixed crash after reseting of GL resources.
This commit is contained in:
parent
9158d2a3c6
commit
83fcab5276
1 changed files with 2 additions and 0 deletions
|
@ -64,6 +64,7 @@ class TileReadStartMessage : public MapShapeMessage
|
|||
public:
|
||||
TileReadStartMessage(TileKey const & key) : MapShapeMessage(key) {}
|
||||
Type GetType() const override { return Message::TileReadStarted; }
|
||||
bool IsGLContextDependent() const override { return true; }
|
||||
};
|
||||
|
||||
class TileReadEndMessage : public MapShapeMessage
|
||||
|
@ -71,6 +72,7 @@ class TileReadEndMessage : public MapShapeMessage
|
|||
public:
|
||||
TileReadEndMessage(TileKey const & key) : MapShapeMessage(key) {}
|
||||
Type GetType() const override { return Message::TileReadEnded; }
|
||||
bool IsGLContextDependent() const override { return true; }
|
||||
};
|
||||
|
||||
class MapShapeReadedMessage : public MapShapeMessage
|
||||
|
|
Loading…
Add table
Reference in a new issue