Struct vulkano::instance::Instance [] [src]

pub struct Instance { /* fields omitted */ }

An instance of a Vulkan context. This is the main object that should be created by an application before everything else.

See the documentation of the instance module for an introduction about Vulkan instances.

Extensions and application infos

Please check the documentation of the instance module.

Layers

When creating an Instance, you have the possibility to pass a list of layers that will be activated on the newly-created instance. The list of available layers can be retrieved by calling the layers_list function.

A layer is a component that will hook and potentially modify the Vulkan function calls. For example, activating a layer could add a frames-per-second counter on the screen, or it could send informations to a debugger that will debug your application.

Note: From an application's point of view, layers "just exist". In practice, on Windows and Linux layers can be installed by third party installers or by package managers and can also be activated by setting the value of the VK_INSTANCE_LAYERS environment variable before starting the program. See the documentation of the official Vulkan loader for these platforms.

Note: In practice, the most common use of layers right now is for debugging purposes. To do so, you are encouraged to set the VK_INSTANCE_LAYERS environment variable on Windows or Linux instead of modifying the source code of your program. For example: export VK_INSTANCE_LAYERS=VK_LAYER_LUNARG_api_dump on Linux if you installed the Vulkan SDK will print the list of raw Vulkan function calls.

Example

// FIXME: this example doesn't run because of ownership problems ; Instance::new() needs a tweak
use vulkano::instance;
use vulkano::instance::Instance;
use vulkano::instance::InstanceExtensions;

// For the sake of the example, we activate all the layers that contain the word "foo" in their
// description.
let layers = instance::layers_list().unwrap()
    .filter(|l| l.description().contains("foo"))
    .map(|l| l.name());

let instance = Instance::new(None, &InstanceExtensions::none(), layers).unwrap();

Methods

impl Instance
[src]

[src]

Initializes a new instance of Vulkan.

See the documentation of Instance or of the instance module for more details.

Example

use vulkano::instance::Instance;
use vulkano::instance::InstanceExtensions;

let instance = match Instance::new(None, &InstanceExtensions::none(), None) {
    Ok(i) => i,
    Err(err) => panic!("Couldn't build instance: {:?}", err)
};

Panic

  • Panics if the version numbers passed in ApplicationInfo are too large can't be converted into a Vulkan version number.
  • Panics if the application name or engine name contain a null character.

[src]

Same as new, but allows specifying a loader where to load Vulkan from.

[src]

Returns the list of extensions that have been loaded.

This list is equal to what was passed to Instance::new().

Example

use vulkano::instance::Instance;
use vulkano::instance::InstanceExtensions;

let extensions = InstanceExtensions::supported_by_core().unwrap();
let instance = Instance::new(None, &extensions, None).unwrap();
assert_eq!(instance.loaded_extensions(), &extensions);

Trait Implementations

impl UnwindSafe for Instance
[src]

impl RefUnwindSafe for Instance
[src]

impl Debug for Instance
[src]

[src]

Formats the value using the given formatter.

impl VulkanObject for Instance
[src]

The type of the object.

[src]

Returns a reference to the object.

impl Drop for Instance
[src]

[src]

Executes the destructor for this type. Read more