/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
GLUtils.h | 43 static GLuint genTexture(int texWidth, int texHeight, int fill);
|
GLUtils.cpp | 209 GLuint GLUtils::genTexture(int texWidth, int texHeight, int fill) { 211 int w = roundUpToSmallestPowerOf2(texWidth);
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Config.h | 29 Config(rx::ConfigDesc desc, EGLint minSwapInterval, EGLint maxSwapInterval, EGLint texWidth, EGLint texHeight); 99 void add(rx::ConfigDesc desc, EGLint minSwapInterval, EGLint maxSwapInterval, EGLint texWidth, EGLint texHeight);
|
Config.cpp | 25 Config::Config(rx::ConfigDesc desc, EGLint minInterval, EGLint maxInterval, EGLint texWidth, EGLint texHeight) 109 mMaxPBufferWidth = texWidth; 111 mMaxPBufferPixels = texWidth*texHeight; 233 void ConfigSet::add(rx::ConfigDesc desc, EGLint minSwapInterval, EGLint maxSwapInterval, EGLint texWidth, EGLint texHeight) 235 Config config(desc, minSwapInterval, maxSwapInterval, texWidth, texHeight);
|
/frameworks/base/packages/WallpaperCropper/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);
|
GLES20Canvas.java | 646 int texWidth = texture.getTextureWidth(); 649 source.left /= texWidth; 650 source.right /= texWidth; 655 float xBound = (float) width / texWidth; [all...] |
/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...] |
/packages/apps/Launcher3/WallpaperPicker/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);
|
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 | 790 const int texWidth = 64; 794 texWidth, texHeight, HAL_PIXEL_FORMAT_YV12)); 808 fillYV12Buffer(img, texWidth, texHeight, buf->getStride()); 818 glViewport(0, 0, texWidth, texHeight); 836 const int texWidth = 64; 840 texWidth, texHeight, HAL_PIXEL_FORMAT_YV12)); 854 fillYV12Buffer(img, texWidth, texHeight, buf->getStride()); 864 glViewport(0, 0, texWidth, texHeight); 882 const int texWidth = 64; 886 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;
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_aalinetemp.h | 81 line->texWidth[attr], line->texHeight[attr]); 183 line.texWidth[attr] = (GLfloat) texImage->Width;
|
s_aaline.c | 68 GLfloat texWidth[FRAG_ATTRIB_MAX];
|
/external/mesa3d/src/mesa/swrast/ |
s_aalinetemp.h | 81 line->texWidth[attr], line->texHeight[attr]); 183 line.texWidth[attr] = (GLfloat) texImage->Width;
|
s_aaline.c | 68 GLfloat texWidth[FRAG_ATTRIB_MAX];
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
CameraStreamer.java | 609 int texWidth = mCameraWidth / 4; 613 clientTex.allocateWithPixels(pixels, texWidth, texHeight); [all...] |