diff --git a/vulkano/src/buffer/slice.rs b/vulkano/src/buffer/slice.rs index 7e4f5592..ec9aedb7 100644 --- a/vulkano/src/buffer/slice.rs +++ b/vulkano/src/buffer/slice.rs @@ -28,7 +28,7 @@ use device::Queue; /// /// Creating a slice: /// -/// ```no_run +/// ```ignore // FIXME: unignore /// use vulkano::buffer::BufferSlice; /// # let buffer: std::sync::Arc> = /// unsafe { std::mem::uninitialized() }; @@ -37,7 +37,7 @@ use device::Queue; /// /// Selecting a slice of a buffer that contains `[T]`: /// -/// ```no_run +/// ```ignore // FIXME: unignore /// use vulkano::buffer::BufferSlice; /// # let buffer: std::sync::Arc> = /// unsafe { std::mem::uninitialized() }; diff --git a/vulkano/src/framebuffer/framebuffer.rs b/vulkano/src/framebuffer/framebuffer.rs index 570ebcbb..05303de7 100644 --- a/vulkano/src/framebuffer/framebuffer.rs +++ b/vulkano/src/framebuffer/framebuffer.rs @@ -56,7 +56,7 @@ use vk; /// The framebuffer constructor will perform various checks to make sure that the number of images /// is correct and that each image can be used with this render pass. /// -/// ``` +/// ```ignore // FIXME: unignore /// # use std::sync::Arc; /// # use vulkano::framebuffer::RenderPassAbstract; /// use vulkano::framebuffer::Framebuffer; @@ -87,7 +87,7 @@ use vk; /// whose name is the name of the second attachment, and so on. See the documentation of the macros /// for more details. TODO: put link here /// -/// ``` +/// ```ignore // FIXME: unignore /// # #[macro_use] extern crate vulkano; /// # fn main() { /// # let device: std::sync::Arc = return;