Update wgpu from 0.4 to 0.5 (currently it's not rendering)

This commit is contained in:
Keavon Chambers
2020-05-02 14:44:28 -07:00
parent b30ee294a6
commit 323a951362
12 changed files with 562 additions and 388 deletions
+32 -14
View File
@@ -5,23 +5,41 @@
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/graphite.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false
},
{
"name": "(LLDB) Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/target/debug/graphite.exe",
"name": "Debug executable 'graphite'",
"cargo": {
"args": [
"build",
"--bin=graphite",
"--package=graphite"
],
"filter": {
"name": "graphite",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'graphite'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=graphite",
"--package=graphite"
],
"filter": {
"name": "graphite",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}