view Deprecated/Platforms/Wasm/WasmViewport.h @ 1436:fb8c36073983

Fix problem where multiple init/exit were not possible when using GuiAdapter
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 19 May 2020 15:28:15 +0200
parents 419d0320c344
children 828a9b4ee1b7
line wrap: on
line source

#pragma once

#include "../../Framework/Deprecated/Viewport/WidgetViewport.h"

#include <emscripten/emscripten.h>

#ifdef __cplusplus
extern "C" {
#endif

  // JS methods accessible from C++
  extern Deprecated::WidgetViewport* CreateWasmViewportFromCpp(const char* htmlCanvasId);

#ifdef __cplusplus
}
#endif

extern void AttachWidgetToWasmViewport(const char* htmlCanvasId, Deprecated::IWidget* centralWidget);