mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Fixed multitouch input. Module is now exported with global functions hidden via MODULARIZE as global object OccViewerModule created by createOccViewerModule(). Global Module setup has been moved to occt-webgl-viewer.js. Use EMSCRIPTEN_KEEPALIVE attribute istead of listing C functions via EXTRA_EXPORTED_RUNTIME_METHODS. WasmOcctView now exports static methods as Module functions using EMSCRIPTEN_BINDINGS. Standard_ASSERT_DBGBREAK_() is now defined using emscripten_debugger().
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
#include <iostream>
|
|
|
|
#include "WasmOcctView.h"
|
|
|
|
#include <Message.hxx>
|
|
#include <Message_Messenger.hxx>
|
|
#include <Message_PrinterSystemLog.hxx>
|
|
#include <OSD_MemInfo.hxx>
|
|
#include <OSD_Parallel.hxx>
|
|
|
|
#include <emscripten.h>
|
|
#include <emscripten/html5.h>
|
|
|
|
//! Dummy main loop callback for a single shot.
|
|
extern "C" void onMainLoop()
|
|
{
|
|
// do nothing here - viewer updates are handled on demand
|
|
emscripten_cancel_main_loop();
|
|
}
|
|
|
|
EMSCRIPTEN_KEEPALIVE int main()
|
|
{
|
|
Message::DefaultMessenger()->Printers().First()->SetTraceLevel (Message_Trace);
|
|
Handle(Message_PrinterSystemLog) aJSConsolePrinter = new Message_PrinterSystemLog ("webgl-sample", Message_Trace);
|
|
Message::DefaultMessenger()->AddPrinter (aJSConsolePrinter); // open JavaScript console within the Browser to see this output
|
|
Message::DefaultMessenger()->Send (TCollection_AsciiString("NbLogicalProcessors: ") + OSD_Parallel::NbLogicalProcessors(), Message_Trace);
|
|
|
|
// setup a dummy single-shot main loop callback just to shut up a useless Emscripten error message on calling eglSwapInterval()
|
|
emscripten_set_main_loop (onMainLoop, -1, 0);
|
|
|
|
WasmOcctView& aViewer = WasmOcctView::Instance();
|
|
aViewer.run();
|
|
Message::DefaultMessenger()->Send (OSD_MemInfo::PrintInfo(), Message_Trace);
|
|
return 0;
|
|
}
|