-
Any ideas why I am getting this? My includes: #include "imgui/imgui.h"
#include "imgui/imgui_impl_glfw.h"
#include "imgui/imgui_impl_wgpu.h"
#include <stdio.h>
#include <emscripten.h>
#include <emscripten/html5.h>
#include <emscripten/html5_webgpu.h>
#include <GLFW/glfw3.h>
#include <webgpu/webgpu.h>
#include <webgpu/webgpu_cpp.h> calling:
cmd
|
Beta Was this translation helpful? Give feedback.
Answered by
sbc100
Dec 1, 2022
Replies: 1 comment 6 replies
-
I believe this is because you are using |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
trsh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I believe this is because you are using
MINIMAL_RUNTIME
. In the most thelibrary_browser.js
JS library is not included by default. You would need to include it explicitly using-lbrowser.js
.