Skip to content

Commit

Permalink
move Sensor into hrtsystem
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpil committed Dec 8, 2024
1 parent ed410aa commit 2efb0f0
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/lib/core/core.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pub const VulkanContext = @import("./VulkanContext.zig");
pub const Encoder = @import("./Encoder.zig");
pub const DestructionQueue = @import("./DestructionQueue.zig");
pub const Image = @import("./Image.zig");
pub const Sensor = @import("./Sensor.zig");
pub const SyncCopier = @import("./SyncCopier.zig");

pub const mem = @import("./mem.zig");
Expand Down
2 changes: 1 addition & 1 deletion src/lib/hrtsystem/Camera.zig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const core = engine.core;
const VulkanContext = core.VulkanContext;
const Encoder = core.Encoder;

const Sensor = core.Sensor;
const Sensor = engine.hrtsystem.Sensor;

const Mat3x4 = engine.vector.Mat3x4(f32);

Expand Down
2 changes: 1 addition & 1 deletion src/lib/hrtsystem/ObjectPicker.zig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Encoder = core.Encoder;

const hrtsystem = engine.hrtsystem;
const Pipeline = hrtsystem.pipeline.ObjectPickPipeline;
const Sensor = core.Sensor;
const Sensor = hrtsystem.Sensor;
const Camera = hrtsystem.Camera;

const F32x2 = @import("../vector.zig").Vec2(f32);
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/lib/hrtsystem/hrtsystem.zig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pub const pipeline = @import("pipeline.zig");
pub const World = @import("World.zig");
pub const Scene = @import("Scene.zig");
pub const ConstantSpectra = @import("ConstantSpectra.zig");
pub const Sensor = @import("Sensor.zig");

const vk = @import("vulkan");

Expand Down

0 comments on commit 2efb0f0

Please sign in to comment.