Browse Source

Fix missing puglSetWindowPosition symbol in wasm builds

Signed-off-by: falkTX <falktx@falktx.com>
pull/517/head
falkTX 2 weeks ago
parent
commit
d38701abff
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      dgl/src/pugl-extra/wasm.c

+ 7
- 0
dgl/src/pugl-extra/wasm.c View File

@@ -996,6 +996,13 @@ puglViewStringChanged(PuglView*, const PuglStringHint key, const char* const val
return PUGL_SUCCESS;
}


PuglStatus
puglSetWindowPosition(PuglView* const view, const int x, const int y)
{
return PUGL_SUCCESS;
}

PuglStatus
puglSetWindowSize(PuglView* const view, const unsigned width, const unsigned height)
{


Loading…
Cancel
Save