Enum spirv_tools_sys::shared::TargetEnv[][src]

#[repr(C)]
pub enum TargetEnv {
Show variants Universal_1_0, Vulkan_1_0, Universal_1_1, OpenCL_2_1, OpenCL_2_2, OpenGL_4_0, OpenGL_4_1, OpenGL_4_2, OpenGL_4_3, OpenGL_4_5, Universal_1_2, OpenCL_1_2, OpenCLEmbedded_1_2, OpenCL_2_0, OpenCLEmbedded_2_0, OpenCLEmbedded_2_1, OpenCLEmbedded_2_2, Universal_1_3, Vulkan_1_1, WebGPU_0, Universal_1_4, Vulkan_1_1_Spirv_1_4, Universal_1_5, Vulkan_1_2,
}

Certain target environments impose additional restrictions on SPIR-V, so it’s often necessary to specify which one applies. Universal_* implies an environment-agnostic SPIR-V.

When an API method needs to derive a SPIR-V version from a target environment the method will choose the highest version of SPIR-V supported by the target environment. Examples: SPV_ENV_VULKAN_1_0 -> SPIR-V 1.0 SPV_ENV_VULKAN_1_1 -> SPIR-V 1.3 SPV_ENV_VULKAN_1_1_SPIRV_1_4 -> SPIR-V 1.4 SPV_ENV_VULKAN_1_2 -> SPIR-V 1.5

Consult the description of API entry points for specific rules.

Variants

Universal_1_0

SPIR-V 1.0 latest revision, no other restrictions.

Vulkan_1_0

Vulkan 1.0 latest revision.

Universal_1_1

SPIR-V 1.1 latest revision, no other restrictions.

OpenCL_2_1

OpenCL Full Profile 2.1 latest revision.

OpenCL_2_2

OpenCL Full Profile 2.2 latest revision.

OpenGL_4_0

OpenGL 4.0 plus GL_ARB_gl_spirv, latest revisions.

OpenGL_4_1

OpenGL 4.1 plus GL_ARB_gl_spirv, latest revisions.

OpenGL_4_2

OpenGL 4.2 plus GL_ARB_gl_spirv, latest revisions.

OpenGL_4_3

OpenGL 4.3 plus GL_ARB_gl_spirv, latest revisions.

OpenGL_4_5

OpenGL 4.5 plus GL_ARB_gl_spirv, latest revisions.

Universal_1_2

SPIR-V 1.2, latest revision, no other restrictions.

OpenCL_1_2

OpenCL Full Profile 1.2 plus cl_khr_il_program, latest revision.

OpenCLEmbedded_1_2

OpenCL Embedded Profile 1.2 plus cl_khr_il_program, latest revision.

OpenCL_2_0

OpenCL Full Profile 2.0 plus cl_khr_il_program, latest revision.

OpenCLEmbedded_2_0

OpenCL Embedded Profile 2.0 plus cl_khr_il_program, latest revision.

OpenCLEmbedded_2_1

OpenCL Embedded Profile 2.1 latest revision.

OpenCLEmbedded_2_2

OpenCL Embedded Profile 2.2 latest revision.

Universal_1_3

SPIR-V 1.3 latest revision, no other restrictions.

Vulkan_1_1

Vulkan 1.1 latest revision.

WebGPU_0

Work in progress WebGPU 1.0.

Universal_1_4

SPIR-V 1.4 latest revision, no other restrictions.

Vulkan_1_1_Spirv_1_4

Vulkan 1.1 with VK_KHR_spirv_1_4, i.e. SPIR-V 1.4 binary.

Universal_1_5

SPIR-V 1.5 latest revision, no other restrictions.

Vulkan_1_2

Vulkan 1.2 latest revision.

Trait Implementations

impl Clone for TargetEnv[src]

impl Copy for TargetEnv[src]

impl Debug for TargetEnv[src]

impl Default for TargetEnv[src]

impl Display for TargetEnv[src]

impl FromStr for TargetEnv[src]

type Err = SpirvResult

The associated error which can be returned from parsing.

impl PartialEq<TargetEnv> for TargetEnv[src]

impl StructuralPartialEq for TargetEnv[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.