Ignore failing doctests

This commit is contained in:
Pierre Krieger 2017-04-10 10:06:31 +02:00
parent f8bcfdbe94
commit f0b0abf087
2 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ use device::Queue;
///
/// Creating a slice:
///
/// ```no_run
/// ```ignore // FIXME: unignore
/// use vulkano::buffer::BufferSlice;
/// # let buffer: std::sync::Arc<vulkano::buffer::DeviceLocalBuffer<[u8]>> =
/// 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<vulkano::buffer::DeviceLocalBuffer<[u8]>> =
/// unsafe { std::mem::uninitialized() };

View File

@ -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<vulkano::device::Device> = return;