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

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 220 int texHeight = getTextureHeight();
222 Assert.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
228 if (bWidth == texWidth && bHeight == texHeight) {
240 Bitmap line = getBorderLine(true, config, texHeight);
250 Bitmap line = getBorderLine(true, config, texHeight);
255 if (mBorder + bHeight < texHeight) {
GLES11Canvas.java 427 int texHeight = texture.getTextureHeight();
431 source.top /= texHeight;
432 source.bottom /= texHeight;
441 float yBound = (float) height / texHeight;
    [all...]
GLES20Canvas.java 647 int texHeight = texture.getTextureHeight();
651 source.top /= texHeight;
652 source.bottom /= texHeight;
660 float yBound = (float) height / texHeight;
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp 787 const int texHeight = 66;
790 texWidth, texHeight, HAL_PIXEL_FORMAT_YV12));
804 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
814 glViewport(0, 0, texWidth, texHeight);
833 const int texHeight = 64;
836 texWidth, texHeight, HAL_PIXEL_FORMAT_YV12));
850 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
860 glViewport(0, 0, texWidth, texHeight);
879 const int texHeight = 66;
882 texWidth, texHeight, HAL_PIXEL_FORMAT_YV12))
    [all...]
  /development/samples/HelloEffects/src/com/example/android/mediafx/
TextureRenderer.java 93 public void updateTextureSize(int texWidth, int texHeight) {
95 mTexHeight = texHeight;

Completed in 84 milliseconds