HomeSort by relevance Sort by last modified time
    Searched defs:textureHeight (Results 1 - 6 of 6) sorted by null

  /external/skia/src/gpu/
GrAtlas.cpp 159 int textureHeight = fBackingTextureSize.height();
162 int plotHeight = textureHeight / fNumPlotsY;
165 SkASSERT(plotHeight * fNumPlotsY == textureHeight);
  /frameworks/base/services/core/java/com/android/server/policy/
IconUtilities.java 143 int textureHeight = mIconTextureHeight;
145 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
151 final int top = (textureHeight-height) / 2;
  /external/deqp/modules/glshared/
glsStateChangePerfTestCases.cpp 336 const int textureHeight = 64;
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]));
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 72 int textureHeight = sIconTextureHeight;
75 if (sourceWidth > textureWidth && sourceHeight > textureHeight) {
79 (sourceHeight - textureHeight) / 2,
80 textureWidth, textureHeight);
81 } else if (sourceWidth == textureWidth && sourceHeight == textureHeight) {
136 int textureHeight = sIconTextureHeight;
138 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
144 final int top = (textureHeight-height) / 2;
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 95 int textureHeight;
263 for (int y = 0; y < config.textureHeight; y++)
1026 log << TestLog::Message << "Texture size: " << config.textureWidth << "x" << config.textureHeight << TestLog::EndMessage;
1115 basicConfig.textureHeight = 128;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 212 int textureHeight = iconBitmapSize;
214 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
220 final int top = (textureHeight-height) / 2;

Completed in 183 milliseconds