-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: render pipeline (scaffold) * refactor: minimize vertex buffer copies * feat: render pipeline end-to-end scaffold * feat: bind groups and vertex buffer layout * asset: icecream.ply * docs: credit dreamgaussian * fix: render device query & more correct bind groups * refactor: extracting comments and code shuffle * docs: flair * docs: clarity * chore: add bench/docs/linting * fix: proper uniform usage (buffer size errors remain) * refactor: separate gaussian uniforms and gaussian cloud buffer * fix: pipeline validation errors * tri vertex output * chore: launch config and ignore .DS_Store * chore: don't modify binary ply/splats * chore: fix bevy assets in vscode debug * feat: test gaussian cloud * feat: ellipsoid projection, triangle strip, simplify fragment shader * fix: gaussian struct padding & ellipse UV (needs camera fix) * fix: camera controls * feat: test cube * fix: cube
- Loading branch information
Showing
14 changed files
with
1,165 additions
and
201 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
* text=auto eol=lf | ||
*.{cmd,[cC][mM][dD]} text eol=crlf | ||
*.{bat,[bB][aA][tT]} text eol=crlf | ||
*.sh text eol=lf | ||
*.conf text eol=lf | ||
|
||
*.ply binary | ||
*.splat binary |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ Cargo.lock | |
|
||
|
||
*.ply | ||
|
||
.DS_Store |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
// 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": [ | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in library 'bevy_gaussian_splatting'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--lib", | ||
"--package=bevy_gaussian_splatting" | ||
], | ||
"filter": { | ||
"name": "bevy_gaussian_splatting", | ||
"kind": "lib" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"CARGO_MANIFEST_DIR": "${workspaceFolder}", | ||
} | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug executable 'bevy_gaussian_splatting'", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=bevy_gaussian_splatting", | ||
"--package=bevy_gaussian_splatting" | ||
], | ||
"filter": { | ||
"name": "bevy_gaussian_splatting", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"CARGO_MANIFEST_DIR": "${workspaceFolder}", | ||
} | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in executable 'bevy_gaussian_splatting'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--bin=bevy_gaussian_splatting", | ||
"--package=bevy_gaussian_splatting" | ||
], | ||
"filter": { | ||
"name": "bevy_gaussian_splatting", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"CARGO_MANIFEST_DIR": "${workspaceFolder}", | ||
} | ||
} | ||
] | ||
} |
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.