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

/external/skia/samplecode/
H A DSampleVertices.cpp151 void make_fan(Rec* rec, int texWidth, int texHeight) { argument
153 const SkScalar ty = SkIntToScalar(texHeight);
181 void make_strip(Rec* rec, int texWidth, int texHeight) { argument
183 const SkScalar ty = SkIntToScalar(texHeight);
H A DPerlinPatch.cpp143 SkScalar texHeight = fTexScale * TexHeight; variable
145 { fTexX - texWidth, fTexY - texHeight},
146 { fTexX + texWidth, fTexY - texHeight},
147 { fTexX + texWidth, fTexY + texHeight},
148 { fTexX - texWidth, fTexY + texHeight}}
H A DSampleSlides.cpp356 static void make_fan(Rec* rec, int texWidth, int texHeight) { argument
358 const SkScalar ty = SkIntToScalar(texHeight);
386 static void make_strip(Rec* rec, int texWidth, int texHeight) { argument
388 const SkScalar ty = SkIntToScalar(texHeight);
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp259 int texHeight = refTexture.getHeight(); local
261 int defViewportHeight = texHeight*4;
363 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
364 const int worstScoreDiff = texWidth*texHeight;
532 int texHeight = m_texture->getRefTexture().getSize(); local
535 int defViewportHeight = texHeight*2;
630 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
631 const int worstScoreDiff = texWidth*texHeight;
/external/deqp/modules/gles2/functional/
H A Des2fTextureMipmapTests.cpp257 const int texHeight = refTexture.getHeight(); local
259 const int defViewportHeight = texHeight*4;
586 const int texHeight = m_texture->getRefTexture().getSize(); local
588 const int defViewportHeight = texHeight*2;
H A Des2fFboRenderTest.cpp1114 int texHeight = 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.cpp644 const int texHeight = is2d ? TEXTURE_HEIGHT_2D : TEXTURE_HEIGHT_CUBE; local
645 bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight));
646 int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
675 m_textures2d.push_back(new tcu::Texture2D(glu::mapGLTransferFormat(params.format, params.dataType), texWidth, texHeight));
680 DE_ASSERT(texWidth == texHeight);
H A Des2fVertexTextureTests.cpp482 const int texHeight = 1 << deLog2Ceil32(MAX_2D_RENDER_HEIGHT / 2); local
487 m_textures[i] = new glu::Texture2D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight);
490 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight));
491 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
785 const int texHeight = 1 << deLog2Ceil32(MAX_CUBE_RENDER_HEIGHT / 2 / 2); local
787 DE_ASSERT(texWidth == texHeight);
788 DE_UNREF(texHeight);
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp250 int texHeight = refTexture.getHeight(); local
252 int defViewportHeight = texHeight*4;
355 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
356 const int worstScoreDiff = texWidth*texHeight;
519 int texHeight = m_texture->getRefTexture().getSize(); local
522 int defViewportHeight = texHeight*2;
618 const int bestScoreDiff = (texWidth/16)*(texHeight/16);
619 const int worstScoreDiff = texWidth*texHeight;
/external/mesa3d/src/mesa/swrast/
H A Ds_aaline.c69 GLfloat texHeight[FRAG_ATTRIB_MAX]; member in struct:LineInfo
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp301 const int texHeight = refTexture.getHeight(); local
303 const int defViewportHeight = texHeight*4;
625 const int texHeight = m_texture->getRefTexture().getSize(); local
627 const int defViewportHeight = texHeight*2;
1250 const int texHeight = refTexture.getHeight(); local
1254 const RandomViewport viewport (renderTarget, texWidth*4, texHeight*4, deStringHash(getName()));
1500 const int texHeight = refTexture.getHeight(); local
1503 const RandomViewport viewport (renderTarget, texWidth*4, texHeight*4, deStringHash(getName()));
1811 const int texHeight = m_texture->getRefTexture().getSize(); local
1814 const int defViewportHeight = texHeight*
2127 const int texHeight = refTexture.getHeight(); local
[all...]
H A Des3fTextureUnitTests.cpp822 const int texHeight = is2dTex ? TEXTURE_HEIGHT_2D : isCubeTex ? TEXTURE_HEIGHT_CUBE : is2dArrayTex ? TEXTURE_HEIGHT_2D_ARRAY : TEXTURE_HEIGHT_3D; local
827 bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight) && deIsPowerOfTwo32(texDepth));
828 int numLevels = mipmaps ? deLog2Floor32(de::max(de::max(texWidth, texHeight), texDepth))+1 : 1;
859 m_textures2d.push_back(new tcu::Texture2D(texFormat, texWidth, texHeight));
864 DE_ASSERT(texWidth == texHeight);
870 m_textures2dArray.push_back(new tcu::Texture2DArray(texFormat, texWidth, texHeight, texLayers));
875 m_textures3d.push_back(new tcu::Texture3D(texFormat, texWidth, texHeight, texDepth));
H A Des3fVertexTextureTests.cpp582 const int texHeight = 1 << deLog2Ceil32(MAX_2D_RENDER_HEIGHT / 2); local
587 m_textures[i] = new glu::Texture2D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight);
590 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight));
591 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
888 const int texHeight = 1 << deLog2Ceil32(MAX_CUBE_RENDER_HEIGHT / 2 / 2); local
890 DE_ASSERT(texWidth == texHeight);
891 DE_UNREF(texHeight);
1228 const int texHeight = HEIGHT_2D_ARRAY; local
1234 m_textures[i] = new glu::Texture2DArray(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidth, texHeight, texLayers);
1237 const int numLevels = deLog2Floor32(de::max(texWidth, texHeight))
1292 const int texHeight = refTexture.getHeight(); local
1568 const int texHeight = HEIGHT_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 441 milliseconds