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

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 219 int texWidth = getTextureWidth();
222 Assert.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
228 if (bWidth == texWidth && bHeight == texHeight) {
244 line = getBorderLine(false, config, texWidth);
249 if (mBorder + bWidth < texWidth) {
256 Bitmap line = getBorderLine(false, config, texWidth);
GLES11Canvas.java 426 int texWidth = texture.getTextureWidth();
429 source.left /= texWidth;
430 source.right /= texWidth;
435 float xBound = (float) width / texWidth;
    [all...]
GLES20Canvas.java 646 int texWidth = texture.getTextureWidth();
649 source.left /= texWidth;
650 source.right /= texWidth;
655 float xBound = (float) width / texWidth;
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp 786 const int texWidth = 64;
790 texWidth, texHeight, HAL_PIXEL_FORMAT_YV12));
804 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
814 glViewport(0, 0, texWidth, texHeight);
832 const int texWidth = 64;
836 texWidth, texHeight, HAL_PIXEL_FORMAT_YV12));
850 fillYV12Buffer(img, texWidth, texHeight, buf->getStride());
860 glViewport(0, 0, texWidth, texHeight);
878 const int texWidth = 64;
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) {
94 mTexWidth = texWidth;

Completed in 151 milliseconds