OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textureDescription
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
CubemapAttribute.java
34
public final TextureDescriptor<Cubemap>
textureDescription
;
39
textureDescription
= new TextureDescriptor<Cubemap>();
42
public <T extends Cubemap> CubemapAttribute (final long type, final TextureDescriptor<T>
textureDescription
) {
44
this.
textureDescription
.set(
textureDescription
);
49
textureDescription
.texture = texture;
53
this(copyFrom.type, copyFrom.
textureDescription
);
64
result = 967 * result +
textureDescription
.hashCode();
71
return
textureDescription
.compareTo(((CubemapAttribute)o).
textureDescription
);
[
all
...]
TextureAttribute.java
105
public final TextureDescriptor<Texture>
textureDescription
;
118
textureDescription
= new TextureDescriptor<Texture>();
121
public <T extends Texture> TextureAttribute (final long type, final TextureDescriptor<T>
textureDescription
) {
123
this.
textureDescription
.set(
textureDescription
);
126
public <T extends Texture> TextureAttribute (final long type, final TextureDescriptor<T>
textureDescription
, float offsetU,
128
this(type,
textureDescription
);
136
public <T extends Texture> TextureAttribute (final long type, final TextureDescriptor<T>
textureDescription
, float offsetU,
138
this(type,
textureDescription
, offsetU, offsetV, scaleU, scaleV, 0);
143
textureDescription
.texture = texture;
[
all
...]
Completed in 97 milliseconds