annotate Platforms/Wasm/WasmViewport.cpp @ 242:092db46c6291
am
improved SDL/Wasm unification
author |
am@osimis.io |
date |
Wed, 20 Jun 2018 14:20:55 +0200 |
parents |
|
children |
4f2416d519b4 |
rev |
line source |
242
|
1 #include "WasmViewport.h"
|
|
2
|
|
3 #include <vector>
|
|
4 #include <memory>
|
|
5
|
|
6 std::vector<std::shared_ptr<OrthancStone::WidgetViewport>> wasmViewports;
|
|
7
|
|
8 void AttachWidgetToWasmViewport(const char* htmlCanvasId, OrthancStone::IWidget* centralWidget) {
|
|
9 std::shared_ptr<OrthancStone::WidgetViewport> viewport(CreateWasmViewportFromCpp(htmlCanvasId));
|
|
10 viewport->SetCentralWidget(centralWidget);
|
|
11
|
|
12 wasmViewports.push_back(viewport);
|
|
13 } |