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

Function fg_set_window_font

src/api/c/window.cpp:72–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72fg_err fg_set_window_font(fg_window pWindow, const fg_font pFont)
73{
74 try {
75 ARG_ASSERT(0, (pWindow!=0));
76 ARG_ASSERT(1, (pFont!=0));
77
78 getWindow(pWindow)->setFont(getFont(pFont));
79 }
80 CATCHALL
81 return FG_ERR_NONE;
82}
83
84fg_err fg_set_window_title(fg_window pWindow, const char* pTitle)
85{

Callers 1

setFontMethod · 0.85

Calls 3

getWindowFunction · 0.85
getFontFunction · 0.85
setFontMethod · 0.45

Tested by

no test coverage detected