comparison Framework/Viewport/ViewportBase.h @ 1045:6a9300ecfa13

tests for context loss are now restricted to WebAssembly
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Oct 2019 17:17:56 +0200
parents a7351ad54960
children 32b403a47b19
comparison
equal deleted inserted replaced
1044:b60d70e8b55c 1045:6a9300ecfa13
73 #endif 73 #endif
74 74
75 private: 75 private:
76 std::string identifier_; 76 std::string identifier_;
77 boost::shared_ptr<Scene2D> scene_; 77 boost::shared_ptr<Scene2D> scene_;
78 protected:
79 virtual void RestoreCompositor() = 0;
80 virtual void DisableCompositor() = 0;
81 }; 78 };
82 } 79 }