OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textureData
(Results
1 - 6
of
6
) sorted by null
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/assets/loaders/
TextureLoader.java
28
import com.badlogic.gdx.graphics.
TextureData
;
33
TextureData
data;
42
if (parameter == null || (parameter != null && parameter.
textureData
== null)) {
58
data = parameter.
textureData
;
89
/** The texture to put the {@link
TextureData
} in, optional. **/
91
/**
TextureData
for textures created on the fly, optional. When set, all format and genMipMaps are ignored */
92
public
TextureData
textureData
= null;
/external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
TextureLoader.java
30
import com.badlogic.gdx.graphics.
TextureData
;
44
TextureData
data;
57
if (parameter == null || parameter.
textureData
== null) {
69
info.data =
TextureData
.Factory.loadFromFile(file, format, genMipMaps);
71
info.data = parameter.
textureData
;
103
/** The texture to put the {@link
TextureData
} in, optional. **/
105
/**
TextureData
for textures created on the fly, optional. When set, all format and genMipMaps are ignored */
106
public
TextureData
textureData
= null;
/external/skia/gm/
bitmaprect.cpp
96
const SkColor
textureData
[xSize][ySize] = {
108
paint.setColor(
textureData
[x][y]);
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java
122
String
textureData
= getMetric(metricsCopy,
137
serializeOpenGLCompressedTextureFormatsInfo(serializer,
textureData
);
/external/deqp/modules/glshared/
glsStateChangePerfTestCases.cpp
343
vector<deUint8>
textureData
;
344
genTextureData(
textureData
, textureWidth, textureHeight);
346
DE_ASSERT(
textureData
.size() == textureWidth * textureHeight * 4);
358
gl.texImage2D(GL_TEXTURE_2D, 0, GL_RGBA, textureWidth, textureHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, &(
textureData
[0]));
/frameworks/native/libs/gui/tests/
SRGB_test.cpp
119
uint8_t*
textureData
= new uint8_t[DISPLAY_SIZE];
133
textureData
[offset + c] = intValue;
135
textureData
[offset + 3] = ALPHA_VALUE;
141
textureData
);
144
delete[]
textureData
;
Completed in 232 milliseconds