Window with textured polygon

This commit is contained in:
Keavon Chambers
2020-04-26 00:28:13 -07:00
commit b30ee294a6
17 changed files with 2804 additions and 0 deletions

27
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"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",
"args": [],
"cwd": "${workspaceFolder}",
}
]
}