HomeSort by relevance Sort by last modified time
    Searched refs:textureWidth (Results 1 - 12 of 12) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
MipMapGenerator.java 42 public static void generateMipMap (Pixmap pixmap, int textureWidth, int textureHeight) {
43 generateMipMap(GL20.GL_TEXTURE_2D, pixmap, textureWidth, textureHeight);
48 public static void generateMipMap (int target, Pixmap pixmap, int textureWidth, int textureHeight) {
50 generateMipMapCPU(target, pixmap, textureWidth, textureHeight);
58 generateMipMapDesktop(target, pixmap, textureWidth, textureHeight);
68 private static void generateMipMapDesktop (int target, Pixmap pixmap, int textureWidth, int textureHeight) {
75 generateMipMapCPU(target, pixmap, textureWidth, textureHeight);
79 private static void generateMipMapCPU (int target, Pixmap pixmap, int textureWidth, int textureHeight) {
82 if ((Gdx.gl20 == null) && textureWidth != textureHeight)
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 71 int textureWidth = sIconTextureWidth;
75 if (sourceWidth > textureWidth && sourceHeight > textureHeight) {
78 (sourceWidth - textureWidth) / 2,
80 textureWidth, textureHeight);
81 } else if (sourceWidth == textureWidth && sourceHeight == textureHeight) {
135 int textureWidth = sIconTextureWidth;
138 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
143 final int left = (textureWidth-width) / 2;
  /external/skia/src/gpu/
GrLayerAtlas.cpp 83 int textureWidth = fBackingTextureSize.width();
86 int plotWidth = textureWidth / numPlotsX;
89 SkASSERT(plotWidth * numPlotsX == textureWidth);
  /frameworks/base/services/core/java/com/android/server/policy/
IconUtilities.java 142 int textureWidth = mIconTextureWidth;
145 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
150 final int left = (textureWidth-width) / 2;
  /external/deqp/modules/glshared/
glsStateChangePerfTestCases.cpp 335 const int textureWidth = 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/Launcher3/src/com/android/launcher3/
Utilities.java 330 int textureWidth = iconBitmapSize;
333 final Bitmap bitmap = Bitmap.createBitmap(textureWidth, textureHeight,
338 final int left = (textureWidth-width) / 2;
355 canvas.scale(scale, scale, textureWidth / 2, textureHeight / 2);
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 94 int textureWidth;
261 for (int x = 0; x < config.textureWidth; x++)
292 gl.texImage2D(GL_TEXTURE_2D, 0, GL_RGBA, config.textureWidth, config.textureWidth, 0, GL_RGBA, GL_UNSIGNED_BYTE, &(data[0]));
1026 log << TestLog::Message << "Texture size: " << config.textureWidth << "x" << config.textureHeight << TestLog::EndMessage;
1114 basicConfig.textureWidth = 128;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fASTCDecompressionCases.cpp 331 const int textureWidth = texture.getRefTexture().getWidth();
333 const RandomViewport viewport (renderCtx.getRenderTarget(), textureWidth, textureHeight, m_rnd.getUint32());
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_direct3d9.cc 608 DWORD textureWidth, textureHeight;
626 textureWidth = channelObj->GetTextureWidth();
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 429 milliseconds