Skip to content

Commit 189d0c3

Browse files
committed
1.12 enablement
1 parent 015ba44 commit 189d0c3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GaussianSplatting"
22
uuid = "991e6b22-92f0-46ac-8b70-8a93e7beee5d"
3-
authors = ["Anton Smirnov <[email protected]>"]
43
version = "1.0.0"
4+
authors = ["Anton Smirnov <[email protected]>"]
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
@@ -49,7 +49,7 @@ GaussianSplattingAMDGPUExt = "AMDGPU"
4949
GaussianSplattingCUDAExt = ["CUDA", "cuDNN"]
5050

5151
[compat]
52-
AMDGPU = "1.2.2"
52+
AMDGPU = "1.3"
5353
Adapt = "4"
5454
BSON = "0.3"
5555
BenchmarkTools = "1"

src/gui/camera_path.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ end
6262
6363
- `t::Float32`: Time value in `[0, 1]` range. Goes through all keyframes.
6464
"""
65-
function eval(p::CameraPath)
65+
function current_pose(p::CameraPath)
6666
t = p.current_time
6767
t = t * (length(p) - 1)
6868
idx = floor(Int, t) + 1

src/gui/capture_mode.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function advance!(v::CaptureMode, gui)
1616
v.is_rendering = false
1717
v.writer nothing && close_video_out!(v.writer)
1818
else
19-
k = eval(v.camera_path)
19+
k = current_pose(v.camera_path)
2020
set_c2w!(gui.camera, NU.get_rotation(k), k.t)
2121
end
2222
advance!(v.camera_path, get_time_step(v.camera_path, v.steps_ref[]))

0 commit comments

Comments
 (0)