public static enum GraphicsPipeline.ShaderModel extends Enum<GraphicsPipeline.ShaderModel>
Enum Constant and Description |
---|
SM3
The pipeline supports Shader Model 3 features, including Pixel Shader
3.0 and Vertex Shader 3.0 programs.
|
Modifier and Type | Method and Description |
---|---|
static GraphicsPipeline.ShaderModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphicsPipeline.ShaderModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphicsPipeline.ShaderModel SM3
public static GraphicsPipeline.ShaderModel[] values()
for (GraphicsPipeline.ShaderModel c : GraphicsPipeline.ShaderModel.values()) System.out.println(c);
public static GraphicsPipeline.ShaderModel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.