Skip to content

Commit d38701a

Browse files
committed
Fix missing puglSetWindowPosition symbol in wasm builds
Signed-off-by: falkTX <[email protected]>
1 parent 4e235c9 commit d38701a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dgl/src/pugl-extra/wasm.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,13 @@ puglViewStringChanged(PuglView*, const PuglStringHint key, const char* const val
996996
return PUGL_SUCCESS;
997997
}
998998

999+
1000+
PuglStatus
1001+
puglSetWindowPosition(PuglView* const view, const int x, const int y)
1002+
{
1003+
return PUGL_SUCCESS;
1004+
}
1005+
9991006
PuglStatus
10001007
puglSetWindowSize(PuglView* const view, const unsigned width, const unsigned height)
10011008
{

0 commit comments

Comments
 (0)