/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
GLUtils.h | 43 static GLuint genTexture(int texWidth, int texHeight, int fill);
|
GLUtils.cpp | 210 GLuint GLUtils::genTexture(int texWidth, int texHeight, int fill) { 213 int h = roundUpToSmallestPowerOf2(texHeight);
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Config.h | 28 Config(rx::ConfigDesc desc, EGLint minSwapInterval, EGLint maxSwapInterval, EGLint texWidth, EGLint texHeight); 98 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) 117 mMaxPBufferHeight = texHeight; 118 mMaxPBufferPixels = texWidth*texHeight; 246 void ConfigSet::add(rx::ConfigDesc desc, EGLint minSwapInterval, EGLint maxSwapInterval, EGLint texWidth, EGLint texHeight) 248 Config config(desc, minSwapInterval, maxSwapInterval, texWidth, texHeight);
|
/external/chromium_org/third_party/skia/samplecode/ |
SampleVertices.cpp | 160 void make_fan(Rec* rec, int texWidth, int texHeight) { 162 const SkScalar ty = SkIntToScalar(texHeight); 190 void make_strip(Rec* rec, int texWidth, int texHeight) { 192 const SkScalar ty = SkIntToScalar(texHeight);
|
SampleSlides.cpp | 361 static void make_fan(Rec* rec, int texWidth, int texHeight) { 363 const SkScalar ty = SkIntToScalar(texHeight); 391 static void make_strip(Rec* rec, int texWidth, int texHeight) { 393 const SkScalar ty = SkIntToScalar(texHeight);
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/ |
ResourceModifier.java | 57 int texHeight = bitmap.getHeight(); 68 matrix.setTranslate(texWidth / 2.0f, texHeight / 2.0f);
|
/developers/build/prebuilts/gradle/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/ |
TextureRenderer.java | 93 public void updateTextureSize(int texWidth, int texHeight) { 95 mTexHeight = texHeight;
|
/developers/samples/android/media/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/ |
TextureRenderer.java | 93 public void updateTextureSize(int texWidth, int texHeight) { 95 mTexHeight = texHeight;
|
/development/samples/HelloEffects/src/com/example/android/mediafx/ |
TextureRenderer.java | 93 public void updateTextureSize(int texWidth, int texHeight) { 95 mTexHeight = texHeight;
|
/development/samples/browseable/MediaEffects/src/com.example.android.mediaeffects/ |
TextureRenderer.java | 93 public void updateTextureSize(int texWidth, int texHeight) { 95 mTexHeight = texHeight;
|
/external/deqp/modules/gles2/accuracy/ |
es2aTextureMipmapTests.cpp | 257 int texHeight = refTexture.getHeight(); 259 int defViewportHeight = texHeight*4; 361 const int bestScoreDiff = (texWidth/16)*(texHeight/16); 362 const int worstScoreDiff = texWidth*texHeight; 530 int texHeight = m_texture->getRefTexture().getSize(); 533 int defViewportHeight = texHeight*2; 628 const int bestScoreDiff = (texWidth/16)*(texHeight/16); 629 const int worstScoreDiff = texWidth*texHeight;
|
/external/deqp/modules/gles3/accuracy/ |
es3aTextureMipmapTests.cpp | 249 int texHeight = refTexture.getHeight(); 251 int defViewportHeight = texHeight*4; 354 const int bestScoreDiff = (texWidth/16)*(texHeight/16); 355 const int worstScoreDiff = texWidth*texHeight; 518 int texHeight = m_texture->getRefTexture().getSize(); 521 int defViewportHeight = texHeight*2; 617 const int bestScoreDiff = (texWidth/16)*(texHeight/16); 618 const int worstScoreDiff = texWidth*texHeight;
|
/external/deqp/modules/gles3/functional/ |
es3fVertexTextureTests.cpp | 580 const int texHeight = 1 << deLog2Ceil32(MAX_2D_RENDER_HEIGHT / 2); 585 m_textures[i] = new glu::Texture2D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight); 588 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); 589 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1; 886 const int texHeight = 1 << deLog2Ceil32(MAX_CUBE_RENDER_HEIGHT / 2 / 2); 888 DE_ASSERT(texWidth == texHeight); 889 DE_UNREF(texHeight); [all...] |
es3fTextureUnitTests.cpp | 821 const int texHeight = is2dTex ? TEXTURE_HEIGHT_2D : isCubeTex ? TEXTURE_HEIGHT_CUBE : is2dArrayTex ? TEXTURE_HEIGHT_2D_ARRAY : TEXTURE_HEIGHT_3D; 826 bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight) && deIsPowerOfTwo32(texDepth)); 827 int numLevels = mipmaps ? deLog2Floor32(de::max(de::max(texWidth, texHeight), texDepth))+1 : 1; 858 m_textures2d.push_back(new tcu::Texture2D(texFormat, texWidth, texHeight)); 863 DE_ASSERT(texWidth == texHeight); 869 m_textures2dArray.push_back(new tcu::Texture2DArray(texFormat, texWidth, texHeight, texLayers)); 874 m_textures3d.push_back(new tcu::Texture3D(texFormat, texWidth, texHeight, texDepth)); [all...] |
es3fTextureMipmapTests.cpp | 300 const int texHeight = refTexture.getHeight(); 302 const int defViewportHeight = texHeight*4; 624 const int texHeight = m_texture->getRefTexture().getSize(); 626 const int defViewportHeight = texHeight*2; [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_aalinetemp.h | 81 line->texWidth[attr], line->texHeight[attr]); 184 line.texHeight[attr] = (GLfloat) texImage->Height;
|
s_aaline.c | 69 GLfloat texHeight[FRAG_ATTRIB_MAX];
|
/external/mesa3d/src/mesa/swrast/ |
s_aalinetemp.h | 81 line->texWidth[attr], line->texHeight[attr]); 184 line.texHeight[attr] = (GLfloat) texImage->Height;
|
s_aaline.c | 69 GLfloat texHeight[FRAG_ATTRIB_MAX];
|
/external/deqp/modules/gles2/functional/ |
es2fVertexTextureTests.cpp | 479 const int texHeight = 1 << deLog2Ceil32(MAX_2D_RENDER_HEIGHT / 2); 484 m_textures[i] = new glu::Texture2D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight); 487 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); 488 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1; 782 const int texHeight = 1 << deLog2Ceil32(MAX_CUBE_RENDER_HEIGHT / 2 / 2); 784 DE_ASSERT(texWidth == texHeight); 785 DE_UNREF(texHeight); [all...] |
es2fTextureUnitTests.cpp | 643 const int texHeight = is2d ? TEXTURE_HEIGHT_2D : TEXTURE_HEIGHT_CUBE; 644 bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); 645 int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1; 674 m_textures2d.push_back(new tcu::Texture2D(glu::mapGLTransferFormat(params.format, params.dataType), texWidth, texHeight)); 679 DE_ASSERT(texWidth == texHeight); [all...] |
es2fTextureMipmapTests.cpp | 256 const int texHeight = refTexture.getHeight(); 258 const int defViewportHeight = texHeight*4; 585 const int texHeight = m_texture->getRefTexture().getSize(); 587 const int defViewportHeight = texHeight*2; [all...] |
es2fFboRenderTest.cpp | [all...] |
/external/deqp/framework/opengl/simplereference/ |
sglrReferenceContext.cpp | [all...] |