Searched defs:texWidth (Results 1 - 16 of 16) sorted by relevance

/external/skia/samplecode/
H A DPerlinPatch.cpp136 SkScalar texWidth = fTexScale * TexWidth; variable
139 { fTexX - texWidth, fTexY - texHeight},
140 { fTexX + texWidth, fTexY - texHeight},
141 { fTexX + texWidth, fTexY + texHeight},
142 { fTexX - texWidth, fTexY + texHeight}}
H A DSampleVertices.cpp160 void make_fan(Rec* rec, int texWidth, int texHeight) { argument
161 const SkScalar tx = SkIntToScalar(texWidth);
190 void make_strip(Rec* rec, int texWidth, int texHeight) { argument
191 const SkScalar tx = SkIntToScalar(texWidth);
H A DSampleSlides.cpp361 static void make_fan(Rec* rec, int texWidth, int texHeight) { argument
362 const SkScalar tx = SkIntToScalar(texWidth);
391 static void make_strip(Rec* rec, int texWidth, int texHeight) { argument
392 const SkScalar tx = SkIntToScalar(texWidth);
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp256 int texWidth = refTexture.getWidth(); local
258 int defViewportWidth = texWidth*4;
361 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
362 const int worstScoreDiff = texWidth*texHeight;
529 int texWidth = m_texture->getRefTexture().getSize(); local
532 int defViewportWidth = texWidth*2;
628 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
629 const int worstScoreDiff = texWidth*texHeight;
/external/deqp/modules/gles2/functional/
H A Des2fTextureMipmapTests.cpp255 const int texWidth = refTexture.getWidth(); local
257 const int defViewportWidth = texWidth*4;
584 const int texWidth = m_texture->getRefTexture().getSize(); local
586 const int defViewportWidth = texWidth*2;
H A Des2fFboRenderTest.cpp1113 int texWidth = 64; local
1119 createQuadsTex2D(ctx, quadsTex, GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight);
1120 createMetaballsTex2D(ctx, metaballsTex, GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight);
H A Des2fTextureUnitTests.cpp642 const int texWidth = is2d ? TEXTURE_WIDTH_2D : TEXTURE_WIDTH_CUBE; local
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);
680 m_texturesCube.push_back(new tcu::TextureCube(glu::mapGLTransferFormat(params.format, params.dataType), texWidth));
H A Des2fVertexTextureTests.cpp478 const int texWidth = 1 << deLog2Ceil32(MAX_2D_RENDER_WIDTH / 2); local
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;
781 const int texWidth = 1 << deLog2Ceil32(MAX_CUBE_RENDER_WIDTH / 3 / 2); local
784 DE_ASSERT(texWidth == texHeight);
790 m_textures[i] = new glu::TextureCube(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth);
793 const bool mipmaps = deIsPowerOfTwo32(texWidth) != DE_FALSE;
794 const int numLevels = mipmaps ? deLog2Floor32(texWidth)+1 : 1;
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp248 int texWidth = refTexture.getWidth(); local
250 int defViewportWidth = texWidth*4;
354 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
355 const int worstScoreDiff = texWidth*texHeight;
517 int texWidth = m_texture->getRefTexture().getSize(); local
520 int defViewportWidth = texWidth*2;
617 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
618 const int worstScoreDiff = texWidth*texHeight;
/external/mesa3d/src/mesa/swrast/
H A Ds_aaline.c68 GLfloat texWidth[FRAG_ATTRIB_MAX]; member in struct:LineInfo
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp299 const int texWidth = refTexture.getWidth(); local
301 const int defViewportWidth = texWidth*4;
623 const int texWidth = m_texture->getRefTexture().getSize(); local
625 const int defViewportWidth = texWidth*2;
1248 const int texWidth = refTexture.getWidth(); local
1253 const RandomViewport viewport (renderTarget, texWidth*4, texHeight*4, deStringHash(getName()));
1498 const int texWidth = refTexture.getWidth(); local
1502 const RandomViewport viewport (renderTarget, texWidth*4, texHeight*4, deStringHash(getName()));
1809 const int texWidth = m_texture->getRefTexture().getSize(); local
1812 const int defViewportWidth = texWidth*
2125 const int texWidth = refTexture.getWidth(); local
[all...]
H A Des3fTextureUnitTests.cpp820 const int texWidth = is2dTex ? TEXTURE_WIDTH_2D : isCubeTex ? TEXTURE_WIDTH_CUBE : is2dArrayTex ? TEXTURE_WIDTH_2D_ARRAY : TEXTURE_WIDTH_3D; local
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);
864 m_texturesCube.push_back(new tcu::TextureCube(texFormat, texWidth));
869 m_textures2dArray.push_back(new tcu::Texture2DArray(texFormat, texWidth, texHeight, texLayers));
874 m_textures3d.push_back(new tcu::Texture3D(texFormat, texWidth, texHeight, texDepth));
H A Des3fVertexTextureTests.cpp579 const int texWidth = 1 << deLog2Ceil32(MAX_2D_RENDER_WIDTH / 2); local
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;
885 const int texWidth = 1 << deLog2Ceil32(MAX_CUBE_RENDER_WIDTH / 3 / 2); local
888 DE_ASSERT(texWidth == texHeight);
894 m_textures[i] = new glu::TextureCube(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth);
897 const bool mipmaps = deIsPowerOfTwo32(texWidth) != DE_FALSE;
898 const int numLevels = mipmaps ? deLog2Floor32(texWidth)+1 : 1;
1225 const int texWidth local
1289 const int texWidth = refTexture.getWidth(); local
1565 const int texWidth = WIDTH_3D; local
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 359 milliseconds