MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / GetScreenSize

Method GetScreenSize

Source/SysGL/Graphics/GraphicsContextGL.cpp:140–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140void GraphicsContextGL::GetScreenSize(u32 * width, u32 * height) const
141{
142 int window_width, window_height;
143 glfwGetFramebufferSize(gWindow, &window_width, &window_height);
144
145 *width = window_width;
146 *height = window_height;
147}
148
149void GraphicsContextGL::ViewportType(u32 * width, u32 * height) const
150{

Callers 1

RestoreRenderStatesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected