Enum spirv_tools::TargetEnv[][src]

#[repr(C)]
pub enum TargetEnv {
Show 24 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,
}
Expand description

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.