#[repr(C)]
pub enum TargetEnv {
Show 24 variants Universal_1_0 = 0, Vulkan_1_0 = 1, Universal_1_1 = 2, OpenCL_2_1 = 3, OpenCL_2_2 = 4, OpenGL_4_0 = 5, OpenGL_4_1 = 6, OpenGL_4_2 = 7, OpenGL_4_3 = 8, OpenGL_4_5 = 9, Universal_1_2 = 10, OpenCL_1_2 = 11, OpenCLEmbedded_1_2 = 12, OpenCL_2_0 = 13, OpenCLEmbedded_2_0 = 14, OpenCLEmbedded_2_1 = 15, OpenCLEmbedded_2_2 = 16, Universal_1_3 = 17, Vulkan_1_1 = 18, WebGPU_0 = 19, Universal_1_4 = 20, Vulkan_1_1_Spirv_1_4 = 21, Universal_1_5 = 22, Vulkan_1_2 = 23,
}
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 = 0

SPIR-V 1.0 latest revision, no other restrictions.

§

Vulkan_1_0 = 1

Vulkan 1.0 latest revision.

§

Universal_1_1 = 2

SPIR-V 1.1 latest revision, no other restrictions.

§

OpenCL_2_1 = 3

OpenCL Full Profile 2.1 latest revision.

§

OpenCL_2_2 = 4

OpenCL Full Profile 2.2 latest revision.

§

OpenGL_4_0 = 5

OpenGL 4.0 plus GL_ARB_gl_spirv, latest revisions.

§

OpenGL_4_1 = 6

OpenGL 4.1 plus GL_ARB_gl_spirv, latest revisions.

§

OpenGL_4_2 = 7

OpenGL 4.2 plus GL_ARB_gl_spirv, latest revisions.

§

OpenGL_4_3 = 8

OpenGL 4.3 plus GL_ARB_gl_spirv, latest revisions.

§

OpenGL_4_5 = 9

OpenGL 4.5 plus GL_ARB_gl_spirv, latest revisions.

§

Universal_1_2 = 10

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

§

OpenCL_1_2 = 11

OpenCL Full Profile 1.2 plus cl_khr_il_program, latest revision.

§

OpenCLEmbedded_1_2 = 12

OpenCL Embedded Profile 1.2 plus cl_khr_il_program, latest revision.

§

OpenCL_2_0 = 13

OpenCL Full Profile 2.0 plus cl_khr_il_program, latest revision.

§

OpenCLEmbedded_2_0 = 14

OpenCL Embedded Profile 2.0 plus cl_khr_il_program, latest revision.

§

OpenCLEmbedded_2_1 = 15

OpenCL Embedded Profile 2.1 latest revision.

§

OpenCLEmbedded_2_2 = 16

OpenCL Embedded Profile 2.2 latest revision.

§

Universal_1_3 = 17

SPIR-V 1.3 latest revision, no other restrictions.

§

Vulkan_1_1 = 18

Vulkan 1.1 latest revision.

§

WebGPU_0 = 19

Work in progress WebGPU 1.0.

§

Universal_1_4 = 20

SPIR-V 1.4 latest revision, no other restrictions.

§

Vulkan_1_1_Spirv_1_4 = 21

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

§

Universal_1_5 = 22

SPIR-V 1.5 latest revision, no other restrictions.

§

Vulkan_1_2 = 23

Vulkan 1.2 latest revision.

Trait Implementations§

source§

impl Clone for TargetEnv

source§

fn clone(&self) -> TargetEnv

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TargetEnv

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for TargetEnv

source§

fn default() -> TargetEnv

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

impl Display for TargetEnv

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl FromStr for TargetEnv

§

type Err = SpirvResult

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<TargetEnv, <TargetEnv as FromStr>::Err>

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

impl PartialEq for TargetEnv

source§

fn eq(&self, other: &TargetEnv) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for TargetEnv

source§

impl StructuralPartialEq for TargetEnv

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.