Mercurial > hg > pub > prymula > com
view DPF-Prymula-audioplugins/dpf/dgl/src/pugl-extra/wasm.h @ 5:0c50890ef159
flappyufo-0.230919-1
author | prymula <prymula76@outlook.com> |
---|---|
date | Wed, 31 Jan 2024 13:23:13 +0100 |
parents | 84e66ea83026 |
children |
line wrap: on
line source
// Copyright 2012-2022 David Robillard <d@drobilla.net> // Copyright 2021-2022 Filipe Coelho <falktx@falktx.com> // SPDX-License-Identifier: ISC #ifndef PUGL_SRC_WASM_H #define PUGL_SRC_WASM_H #include "../pugl-upstream/src/types.h" #include "pugl/pugl.h" // #define PUGL_WASM_ASYNC_CLIPBOARD struct PuglTimer { PuglView* view; uintptr_t id; }; struct PuglWorldInternalsImpl { double scaleFactor; }; struct LastMotionValues { double x, y, xRoot, yRoot; }; struct PuglInternalsImpl { PuglSurface* surface; bool isFullscreen; bool needsRepaint; bool pointerLocked; uint32_t numTimers; LastMotionValues lastMotion; long buttonPressTimeout; PuglEvent nextButtonEvent; #ifdef PUGL_WASM_ASYNC_CLIPBOARD PuglViewHintValue supportsClipboardRead; PuglViewHintValue supportsClipboardWrite; #endif PuglViewHintValue supportsTouch; char* clipboardData; struct PuglTimer* timers; }; #endif // PUGL_SRC_WASM_H