Skip to content

Commit

Permalink
Fixing Module comments that were accidentally changed (#1891)
Browse files Browse the repository at this point in the history
ryco117 authored May 6, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent ba7f0b2 commit 5c6bbe0
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions vulkano/src/buffer/device_local.rs
Original file line number Diff line number Diff line change
@@ -7,12 +7,13 @@
// notice may not be copied, modified, or distributed except
// according to those terms.

/// Buffer whose content is read-written by the GPU only.
///
/// Each access from the CPU or from the GPU locks the whole buffer for either reading or writing.
/// You can read the buffer multiple times simultaneously from multiple queues. Trying to read and
/// write simultaneously, or write and write simultaneously will block with a semaphore.
///
//! Buffer whose content is read-written by the GPU only.
//!
//! Each access from the CPU or from the GPU locks the whole buffer for either reading or writing.
//! You can read the buffer multiple times simultaneously from multiple queues. Trying to read and
//! write simultaneously, or write and write simultaneously will block with a semaphore.
//!
use super::{
sys::{UnsafeBuffer, UnsafeBufferCreateInfo},
BufferAccess, BufferAccessObject, BufferContents, BufferCreationError, BufferInner,

0 comments on commit 5c6bbe0

Please sign in to comment.