HomeSort by relevance Sort by last modified time
    Searched refs:textureData (Results 1 - 8 of 8) 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;
  /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;
  /external/skia/gm/
bitmaprect.cpp 96 const SkColor textureData[xSize][ySize] = {
108 paint.setColor(textureData[x][y]);
  /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]));
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexImageTransform.java 59 * @param textureData texture data passed in by the call. Could be null.
66 public TexImageTransform(IGLPropertyAccessor accessor, File textureData, GLEnum format,
69 mTextureDataFile = textureData;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java 122 String textureData = getMetric(metricsCopy,
137 serializeOpenGLCompressedTextureFormatsInfo(serializer, textureData);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Texture.java 85 TextureData data;
100 this(TextureData.Factory.loadFromFile(file, format, useMipMaps));
119 public Texture (TextureData data) {
123 protected Texture (int glTarget, int glHandle, TextureData data) {
129 public void load (TextureData data) {
144 /** Used internally to reload after context loss. Creates a new GL handle then calls {@link #load(TextureData)}. Use this only
182 public TextureData getTextureData () {
249 params.textureData = texture.getTextureData();

Completed in 1185 milliseconds