Skip to content

Commit

Permalink
Remove outdated todos
Browse files Browse the repository at this point in the history
  • Loading branch information
marc0246 committed Jan 15, 2024
1 parent 4f18b7e commit b255176
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions examples/deferred/frame/ambient_lighting_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ impl AmbientLightingSystem {
command_buffer_allocator: Arc<StandardCommandBufferAllocator>,
descriptor_set_allocator: Arc<StandardDescriptorSetAllocator>,
) -> AmbientLightingSystem {
// TODO: vulkano doesn't allow us to draw without a vertex buffer, otherwise we could
// hard-code these values in the shader
let vertices = [
LightingVertex {
position: [-1.0, -1.0],
Expand Down
2 changes: 0 additions & 2 deletions examples/deferred/frame/directional_lighting_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ impl DirectionalLightingSystem {
command_buffer_allocator: Arc<StandardCommandBufferAllocator>,
descriptor_set_allocator: Arc<StandardDescriptorSetAllocator>,
) -> DirectionalLightingSystem {
// TODO: vulkano doesn't allow us to draw without a vertex buffer, otherwise we could
// hard-code these values in the shader
let vertices = [
LightingVertex {
position: [-1.0, -1.0],
Expand Down
2 changes: 0 additions & 2 deletions examples/deferred/frame/point_lighting_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ impl PointLightingSystem {
command_buffer_allocator: Arc<StandardCommandBufferAllocator>,
descriptor_set_allocator: Arc<StandardDescriptorSetAllocator>,
) -> PointLightingSystem {
// TODO: vulkano doesn't allow us to draw without a vertex buffer, otherwise we could
// hard-code these values in the shader
let vertices = [
LightingVertex {
position: [-1.0, -1.0],
Expand Down

0 comments on commit b255176

Please sign in to comment.