MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_get_window_width

Function fg_get_window_width

src/api/c/window.cpp:155–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153}
154
155fg_err fg_get_window_width(int *pWidth, const fg_window pWindow)
156{
157 try {
158 ARG_ASSERT(1, (pWindow!=0));
159
160 *pWidth = getWindow(pWindow)->width();
161 }
162 CATCHALL
163 return FG_ERR_NONE;
164}
165
166fg_err fg_get_window_height(int *pHeight, const fg_window pWindow)
167{

Callers 1

widthMethod · 0.85

Calls 2

getWindowFunction · 0.85
widthMethod · 0.45

Tested by

no test coverage detected