vsg  1.1.0
VulkanSceneGraph library
WindowAdapter.h
1 #pragma once
2 
3 /* <editor-fold desc="MIT License">
4 
5 Copyright(c) 2021 Robert Osfield
6 
7 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8 
9 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10 
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12 
13 </editor-fold> */
14 
15 #include <vsg/app/Window.h>
16 
17 namespace vsg
18 {
24  class VSG_DECLSPEC WindowAdapter : public Inherit<Window, WindowAdapter>
25  {
26  public:
28 
29  WindowAdapter() = delete;
30  WindowAdapter(const Window&) = delete;
31  WindowAdapter& operator=(const Window&) = delete;
32 
33  const char* instanceExtensionSurfaceName() const override { return nullptr; }
34 
35  bool visible() const override { return windowVisible; }
36  bool valid() const override { return windowValid; }
37 
38  void resize() override;
39 
41  void updateExtents(uint32_t width, uint32_t height);
42 
43  // access methods
44  VkExtent2D& extent2D() { return _extent2D; }
45  bool windowVisible = false;
46  bool windowValid = false;
47 
48  protected:
49  virtual ~WindowAdapter() {}
50 
51  void _initSurface() override{};
52  };
53  VSG_type_name(WindowAdapter);
54 
55 } // namespace vsg
Definition: Inherit.h:28
Definition: WindowAdapter.h:25
void updateExtents(uint32_t width, uint32_t height)
update the WindowAdapter::_extents and set windowResize to true
Definition: Window.h:31
Definition: ref_ptr.h:22