This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dcerisano@kronos:~/git/webgpu$ npm run all --dawnversion=0.0.3 | |
> [email protected] all /home/dcerisano/git/webgpu | |
> npm run generate & npm run build | |
> [email protected] build /home/dcerisano/git/webgpu | |
> node ./build.js | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dcerisano@kronos:~/git/webgpu$ npm run all --dawnversion=0.0.3 | |
> [email protected] all /home/dcerisano/git/webgpu | |
> npm run generate & npm run build | |
> [email protected] build /home/dcerisano/git/webgpu | |
> node ./build.js | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"root": "../../..", | |
"platform": "<(OS)", | |
"build": "<@(module_root_dir)/build", | |
"release": "<(build)/Release", | |
"dawn": "{{ DAWN_PATH | safe }}", | |
"vkSDK": ["platform == 'win'", "C:/VulkanSDK/1.1.126.0"], | |
"vkSDK": ["platform == 'linux'", "/usr/bin"], | |
"vkSDK": ["platform == 'mac'", ""], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"root": "../../..", | |
"platform": "<(OS)", | |
"build": "<@(module_root_dir)/build", | |
"release": "<(build)/Release", | |
"dawn": "{{ DAWN_PATH | safe }}", | |
"vkSDK": "C:/VulkanSDK/1.1.126.0" | |
}, | |
"conditions": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"root": "../../..", | |
"platform": "<(OS)", | |
"build": "<@(module_root_dir)/build", | |
"release": "<(build)/Release", | |
"dawn": "{{ DAWN_PATH | safe }}", | |
"vkSDK": "/home/dcerisano/1.1.126.0/x86_64" | |
}, | |
"conditions": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"root": "../../..", | |
"platform": "<(OS)", | |
"build": "<@(module_root_dir)/build", | |
"release": "<(build)/Release", | |
"dawn": "{{ DAWN_PATH | safe }}", | |
"vkSDK": "/home/dcerisano/1.1.126.0/x86_64" | |
}, | |
"conditions": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gn gen out/Shared --target_cpu="x64" --args="is_component_build=true is_debug=false is_clang=true" | |
Done. Made 129 targets from 68 files in 139ms | |
ninja -C out/Shared | |
ninja: Entering directory `out/Shared' | |
[89/642] CXX obj/libdawn_native_sources/BackendGL.o | |
FAILED: obj/libdawn_native_sources/BackendGL.o | |
../../third_party/llvm-build/Release+Asserts/bin/clang++ -MMD -MF obj/libdawn_native_sources/BackendGL.o.d -DDAWN_ENABLE_VULKAN_VALIDATION_LAYERS -DDAWN_VK_DATA_DIR=\"vulkandata\" -DUSE_UDEV -DUSE_AURA=1 -DUSE_GLIB=1 -DUSE_NSS_CERTS=1 -DUSE_X11=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -DCR_CLANG_REVISION=\"365097-f7e52fbd-8\" -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D_FORTIFY_SOURCE=2 -DCOMPONENT_BUILD -D_LIBCPP_ABI_UNSTABLE -D_LIBCPP_ABI_VERSION=Cr -D_LIBCPP_ENABLE_NODISCARD -DCR_LIBCXX_REVISION=361348 -DCR_SYSROOT_HASH=e7c53f04bd88d29d075bfd1f62b073aeb69cbe09 -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -DDAWN_ENABLE_BACKEND_NULL -DDAWN_ENABLE_BACKEND_O |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm run all --dawnversion=0.0.1 | |
> [email protected] all /home/dcerisano/git/webgpu | |
> npm run generate ; npm run build | |
> [email protected] generate /home/dcerisano/git/webgpu | |
> node --experimental-modules ./generator/index.mjs | |
(node:15822) ExperimentalWarning: The ESM module loader is experimental. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"root": "../../..", | |
"platform": "<(OS)", | |
"build": "<@(module_root_dir)/build", | |
"release": "<(build)/Release", | |
"dawn": "{{ DAWN_PATH | safe }}", | |
"vkSDK": "/home/dcerisano/1.1.126.0/x86_64" | |
}, | |
"conditions": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference types="@webgpu/types" /> | |
import { assert } from '../util/index.js'; | |
let impl = require(`/home/dcerisano/git/webgpu/generated/0.0.1/linux/build/Release/addon-linux.node`); | |
export function getGPU(): GPU { | |
if (impl) { |
OlderNewer