abstract base class for simple GLFW windows used to view buffers, etc.
More...
#include <cs237-window.hpp>
|
| Window (Application *app, CreateWindowInfo const &info) |
| the Window base-class constructor
|
|
SwapChainDetails | _getSwapChainDetails () |
| Get the swap-chain details for a physical device.
|
|
void | _createSwapChain (bool depth, bool stencil) |
| Create the swap chain for this window; this initializes the _swap instance variable.
|
|
void | _recreateSwapChain () |
| Recreate the swap chain for this window; this redefines the _swap instance variable and is used when some aspect of the presentation surface changes.
|
|
void | _initAttachments (std::vector< vk::AttachmentDescription > &descs, std::vector< vk::AttachmentReference > &refs) |
| initialize the attachment descriptors and references for the color and optional depth/stencil-buffer
|
|
uint32_t | _graphicsQIdx () const |
| the graphics queue-family index
|
|
uint32_t | _presentationQIdx () const |
| the presentation queue
|
|
vk::Viewport | _getViewport (bool oglView=false) |
| get the natural viewport for the window
|
|
vk::Rect2D | _getScissorsRect () |
| get the scissors rectangle for this window
|
|
void | _setViewportCmd (vk::CommandBuffer cmdBuf, bool oglView=false) |
| add a command to set the viewport and scissor to the whole window
|
|
void | _setViewportCmd (vk::CommandBuffer cmdBuf, int32_t x, int32_t y, int32_t wid, int32_t ht) |
| add a viewport command to the command buffer; this also sets the scissor rectangle.
|
|
abstract base class for simple GLFW windows used to view buffers, etc.
◆ ~Window()
virtual cs237::Window::~Window |
( |
| ) |
|
|
virtual |
destructor: it destroys the underlying GLFW window
◆ Window()
the Window base-class constructor
- Parameters
-
app | the owning application |
info | information for creating the window, such as size and title |
◆ _createSwapChain()
void cs237::Window::_createSwapChain |
( |
bool |
depth, |
|
|
bool |
stencil |
|
) |
| |
|
protected |
Create the swap chain for this window; this initializes the _swap instance variable.
- Parameters
-
depth | set to true if requesting depth-buffer support |
stencil | set to true if requesting stencil-buffer support |
◆ _getScissorsRect()
vk::Rect2D cs237::Window::_getScissorsRect |
( |
| ) |
|
|
inlineprotected |
get the scissors rectangle for this window
- Returns
- a rectangle that covers the extent of the window
◆ _getSwapChainDetails()
Get the swap-chain details for a physical device.
◆ _getViewport()
vk::Viewport cs237::Window::_getViewport |
( |
bool |
oglView = false | ) |
|
|
inlineprotected |
get the natural viewport for the window
- Parameters
-
oglView | if true then use the OpenGL convention where Y = 0 maps to the bottom of the screen and Y increases going up. |
- Returns
- a viewport that covers the extent of the window
◆ _graphicsQIdx()
uint32_t cs237::Window::_graphicsQIdx |
( |
| ) |
const |
|
inlineprotected |
the graphics queue-family index
This is a wrapper to allow subclasses access to this information
◆ _initAttachments()
void cs237::Window::_initAttachments |
( |
std::vector< vk::AttachmentDescription > & |
descs, |
|
|
std::vector< vk::AttachmentReference > & |
refs |
|
) |
| |
|
protected |
initialize the attachment descriptors and references for the color and optional depth/stencil-buffer
- Parameters
-
[out] | descs | vector that will contain the attachment descriptors |
[out] | refs | vector that will contain the attachment references |
◆ _presentationQIdx()
uint32_t cs237::Window::_presentationQIdx |
( |
| ) |
const |
|
inlineprotected |
the presentation queue
This is a wrapper to allow subclasses access to this information
◆ _recreateSwapChain()
void cs237::Window::_recreateSwapChain |
( |
| ) |
|
|
protected |
Recreate the swap chain for this window; this redefines the _swap instance variable and is used when some aspect of the presentation surface changes.
◆ _setViewportCmd() [1/2]
void cs237::Window::_setViewportCmd |
( |
vk::CommandBuffer |
cmdBuf, |
|
|
bool |
oglView = false |
|
) |
| |
|
inlineprotected |
add a command to set the viewport and scissor to the whole window
- Parameters
-
cmdBuf | the command buffer |
oglView | if true then use the OpenGL convention where Y = 0 maps to the bottom of the screen and Y increases going up. |
Vulkan follows the Direct3D convention of using a right-handed NDC space, which means that Y = 0 maps to the top of the screen, instead of the bottom (as in OpenGL). pass true
as the second argument to use the OpenGL convention.
◆ _setViewportCmd() [2/2]
void cs237::Window::_setViewportCmd |
( |
vk::CommandBuffer |
cmdBuf, |
|
|
int32_t |
x, |
|
|
int32_t |
y, |
|
|
int32_t |
wid, |
|
|
int32_t |
ht |
|
) |
| |
|
protected |
add a viewport command to the command buffer; this also sets the scissor rectangle.
- Parameters
-
cmdBuf | the command buffer |
x | specifies the Y coordinate of the upper-left corner |
y | specifies the X coordinate of the upper-left corner |
wid | specifies the width of the viewport |
ht | specifies the height of the viewport |
To use the OpenGL convention of the Y axis pointing up, specify the OpenGL Y coordinate and a negative height.
◆ app()
return the application pointer
◆ cursorEnter()
virtual void cs237::Window::cursorEnter |
( |
bool |
entered | ) |
|
|
virtual |
◆ cursorPos()
virtual void cs237::Window::cursorPos |
( |
double |
xpos, |
|
|
double |
ypos |
|
) |
| |
|
virtual |
◆ device()
vk::Device cs237::Window::device |
( |
| ) |
const |
|
inline |
return the logical device for this window
◆ draw()
virtual void cs237::Window::draw |
( |
| ) |
|
|
pure virtual |
virtual draw method provided by derived classes to draw the contents of the window. It is called by Refresh.
◆ enableCursorEnterEvent()
void cs237::Window::enableCursorEnterEvent |
( |
bool |
enable | ) |
|
◆ enableCursorPosEvent()
void cs237::Window::enableCursorPosEvent |
( |
bool |
enable | ) |
|
◆ enableKeyEvent()
void cs237::Window::enableKeyEvent |
( |
bool |
enable | ) |
|
{ enable/disable handling of events
◆ enableMouseButtonEvent()
void cs237::Window::enableMouseButtonEvent |
( |
bool |
enable | ) |
|
◆ enableScrollEvent()
void cs237::Window::enableScrollEvent |
( |
bool |
enable | ) |
|
◆ graphicsQ()
vk::Queue cs237::Window::graphicsQ |
( |
| ) |
const |
|
inline |
◆ height()
int cs237::Window::height |
( |
| ) |
const |
|
inline |
◆ hide()
void cs237::Window::hide |
( |
| ) |
|
|
inline |
◆ iconify()
virtual void cs237::Window::iconify |
( |
bool |
iconified | ) |
|
|
virtual |
method invoked on Iconify events.
◆ key()
virtual void cs237::Window::key |
( |
int |
key, |
|
|
int |
scancode, |
|
|
int |
action, |
|
|
int |
mods |
|
) |
| |
|
virtual |
{ Input handling methods; override these in the derived window classes to do something useful.
◆ mouseButton()
virtual void cs237::Window::mouseButton |
( |
int |
button, |
|
|
int |
action, |
|
|
int |
mods |
|
) |
| |
|
virtual |
◆ presentationQ()
vk::Queue cs237::Window::presentationQ |
( |
| ) |
const |
|
inline |
◆ refresh()
void cs237::Window::refresh |
( |
| ) |
|
|
inline |
Refresh the contents of the window. This method is also invoked on Refresh events.
◆ reshape()
virtual void cs237::Window::reshape |
( |
int |
wid, |
|
|
int |
ht |
|
) |
| |
|
virtual |
method invoked on Reshape events.
- Parameters
-
wid | specifies the width of the viewport |
ht | specifies the height of the viewport |
This method takes care of updating the cached size of the window and recreating the swap chain. Other updates, including allocating new framebuffers should be handled by overriding this method in the subclass.
◆ scroll()
virtual void cs237::Window::scroll |
( |
double |
xoffset, |
|
|
double |
yoffset |
|
) |
| |
|
virtual |
◆ setCursorMode()
void cs237::Window::setCursorMode |
( |
int |
mode | ) |
|
◆ show()
void cs237::Window::show |
( |
| ) |
|
|
inline |
Show the window (a no-op if it is already visible)
◆ width()
int cs237::Window::width |
( |
| ) |
const |
|
inline |
◆ windowShouldClose()
bool cs237::Window::windowShouldClose |
( |
| ) |
|
|
inline |
get the value of the "close" flag for the window
◆ _app
◆ _cursorEnterEnabled
bool cs237::Window::_cursorEnterEnabled |
|
protected |
true when the CursorEnter callback is enabled
◆ _cursorPosEnabled
bool cs237::Window::_cursorPosEnabled |
|
protected |
true when the CursorPos callback is enabled
◆ _ht
◆ _isVis
bool cs237::Window::_isVis |
|
protected |
true when the window is visible
◆ _keyEnabled
bool cs237::Window::_keyEnabled |
|
protected |
true when the Key callback is enabled
◆ _mouseButtonEnabled
bool cs237::Window::_mouseButtonEnabled |
|
protected |
true when the MouseButton callback is enabled
◆ _scrollEnabled
bool cs237::Window::_scrollEnabled |
|
protected |
true when the Scroll callback is enabled
◆ _surf
vk::SurfaceKHR cs237::Window::_surf |
|
protected |
the Vulkan surface to render to
◆ _swap
buffer-swapping information
◆ _wid
◆ _win
GLFWwindow* cs237::Window::_win |
|
protected |
The documentation for this class was generated from the following file: