MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_set_position

Function af_set_position

src/api/c/window.cpp:33–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33af_err af_set_position(const af_window wind, const unsigned x,
34 const unsigned y) {
35 try {
36 if (wind == 0) { AF_ERROR("Not a valid window", AF_ERR_INTERNAL); }
37 FG_CHECK(forgePlugin().fg_set_window_position(wind, x, y));
38 }
39 CATCHALL;
40 return AF_SUCCESS;
41}
42
43af_err af_set_title(const af_window wind, const char* const title) {
44 try {

Callers 1

setPosMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected