Searched defs:TextureAttribute (Results 1 - 1 of 1) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
H A DTextureAttribute.java27 public class TextureAttribute extends Attribute { class in inherits:Attribute
49 public static TextureAttribute createDiffuse (final Texture texture) {
50 return new TextureAttribute(Diffuse, texture);
53 public static TextureAttribute createDiffuse (final TextureRegion region) {
54 return new TextureAttribute(Diffuse, region);
57 public static TextureAttribute createSpecular (final Texture texture) {
58 return new TextureAttribute(Specular, texture);
61 public static TextureAttribute createSpecular (final TextureRegion region) {
62 return new TextureAttribute(Specular, region);
65 public static TextureAttribute createNorma
115 public TextureAttribute (final long type) { method in class:TextureAttribute
121 public <T extends Texture> TextureAttribute (final long type, final TextureDescriptor<T> textureDescription) { method in class:TextureAttribute
126 public <T extends Texture> TextureAttribute (final long type, final TextureDescriptor<T> textureDescription, float offsetU, method in class:TextureAttribute
136 public <T extends Texture> TextureAttribute (final long type, final TextureDescriptor<T> textureDescription, float offsetU, method in class:TextureAttribute
141 public TextureAttribute (final long type, final Texture texture) { method in class:TextureAttribute
146 public TextureAttribute (final long type, final TextureRegion region) { method in class:TextureAttribute
151 public TextureAttribute (final TextureAttribute copyFrom) { method in class:TextureAttribute
[all...]

Completed in 103 milliseconds