Skip to content

Commit

Permalink
Merge pull request #317 from GrimSqueaker/fix/gamerender_bug_investig…
Browse files Browse the repository at this point in the history
…ation

Renderer improvements while bug investigation
  • Loading branch information
thobbsinteractive authored Jan 16, 2025
2 parents d32bbf2 + 9093381 commit 2bbf58c
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 349 deletions.
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@
"request": "launch",
"program": "${workspaceFolder}/build_vscode/inst/bin/remc2",
"args": [
"--set_level", "0",
"--test_renderers"
"--set_level", "3",
"--test_renderers",
"--config_file_path", "./renderer-config.ini"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build_vscode/inst/bin",
Expand Down
7 changes: 5 additions & 2 deletions remc2-regression-test/test_renderer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ function Test-Level {
}
}

for ($i = 0; $i -le 1; $i++) {
Test-Level -level $i
for ($i = 0; $i -le 3; $i++) {
if($i -ne 2)
{
Test-Level -level $i
}
}
Loading

0 comments on commit 2bbf58c

Please sign in to comment.