Home
last modified time | relevance | path

Searched refs:targetHeight (Results 1 – 15 of 15) sorted by relevance

/third_party/vk-gl-cts/modules/gles2/functional/
Des2fColorClearTest.cpp107 const int targetHeight = renderTarget.getHeight(); in iterate() local
108 const int numPixels = targetWidth * targetHeight; in iterate()
112 Surface refImage (targetWidth, targetHeight); in iterate()
113 Surface resImage (targetWidth, targetHeight); in iterate()
114 Surface diffImage (targetWidth, targetHeight); in iterate()
133 clearHeight = targetHeight; in iterate()
138 clearY = (rnd.getUint32() % (2*targetHeight)) - targetHeight; in iterate()
140 clearHeight = (rnd.getUint32() % targetHeight); in iterate()
170 for (int y = 0; y < targetHeight; y++) in iterate()
250 for (int y = 0; y < targetHeight; y++) in iterate()
Des2fPrerequisiteTests.cpp179 int targetHeight = renderTarget.getHeight(); in iterate() local
195 imageHeight = targetHeight; in iterate()
202 imageHeight = targetHeight / 2; in iterate()
207 y = targetHeight / 2; in iterate()
209 imageHeight = targetHeight - y; in iterate()
213 y = deRandom_getUint32(&rnd) % (targetHeight - 1); in iterate()
215 imageHeight = 1 + (deRandom_getUint32(&rnd) % (targetHeight - y - 1)); in iterate()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fColorClearTest.cpp107 const int targetHeight = renderTarget.getHeight(); in iterate() local
108 const int numPixels = targetWidth * targetHeight; in iterate()
112 Surface refImage (targetWidth, targetHeight); in iterate()
113 Surface resImage (targetWidth, targetHeight); in iterate()
114 Surface diffImage (targetWidth, targetHeight); in iterate()
133 clearHeight = targetHeight; in iterate()
138 clearY = (rnd.getUint32() % (2*targetHeight)) - targetHeight; in iterate()
140 clearHeight = (rnd.getUint32() % targetHeight); in iterate()
170 for (int y = 0; y < targetHeight; y++) in iterate()
250 for (int y = 0; y < targetHeight; y++) in iterate()
Des3fPrerequisiteTests.cpp179 int targetHeight = renderTarget.getHeight(); in iterate() local
195 imageHeight = targetHeight; in iterate()
202 imageHeight = targetHeight / 2; in iterate()
207 y = targetHeight / 2; in iterate()
209 imageHeight = targetHeight - y; in iterate()
213 y = deRandom_getUint32(&rnd) % (targetHeight - 1); in iterate()
215 imageHeight = 1 + (deRandom_getUint32(&rnd) % (targetHeight - y - 1)); in iterate()
/third_party/vk-gl-cts/modules/glshared/
DglsInteractionTestUtil.cpp54 …tate (de::Random& rnd, RenderState& state, glu::ApiType apiType, int targetWidth, int targetHeight) in computeRandomRenderState() argument
158 int minScissorH = deCeilFloatToInt32(minScissorSize * (float)targetHeight); in computeRandomRenderState()
160 int maxScissorH = targetHeight + 2*maxScissorOutOfBounds; in computeRandomRenderState()
165 int scissorY = rnd.getInt(-maxScissorOutOfBounds, targetHeight+maxScissorOutOfBounds-scissorH); in computeRandomRenderState()
220 …omQuad (de::Random& rnd, gls::FragmentOpUtil::IntegerQuad& quad, int targetWidth, int targetHeight) in computeRandomQuad() argument
231 int minH = deCeilFloatToInt32(minSize * (float)targetHeight); in computeRandomQuad()
233 int maxH = targetHeight + 2*maxOutOfBounds; in computeRandomQuad()
238 int y = rnd.getInt(-maxOutOfBounds, targetHeight+maxOutOfBounds-height); in computeRandomQuad()
DglsInteractionTestUtil.hpp121 …te (de::Random& rnd, RenderState& state, glu::ApiType apiType, int targetWidth, int targetHeight);
122 …ad (de::Random& rnd, gls::FragmentOpUtil::IntegerQuad& quad, int targetWidth, int targetHeight);
/third_party/flutter/engine/flutter/testing/dart/
Dimage_resize_test.dart26 final Codec codec = await instantiateImageCodec(bytes, targetHeight: 1);
57 await instantiateImageCodec(bytes, targetWidth: 10, targetHeight: 1);
74 final Image resized = await blackSquare.resize(targetHeight: 1);
96 await blackSquare.resize(targetHeight: 1, targetWidth: 10);
111 Future<Image> resize({int targetWidth, int targetHeight}) async {
115 targetHeight: targetHeight, targetWidth: targetWidth);
/third_party/vk-gl-cts/modules/egl/
DteglNativeCoordMappingTests.cpp229 void render (const glw::Functions& gl, deUint32 program, int targetWidth, int targetHeight, int x, … in render() argument
233 toGLCoord(targetWidth, targetHeight, x, y), in render()
234 toGLCoord(targetWidth, targetHeight, x+width, y), in render()
235 toGLCoord(targetWidth, targetHeight, x+width, y+height), in render()
237 toGLCoord(targetWidth, targetHeight, x+width, y+height), in render()
238 toGLCoord(targetWidth, targetHeight, x, y+height), in render()
239 toGLCoord(targetWidth, targetHeight, x, y) in render()
250 gl.viewport(0, 0, targetWidth, targetHeight); in render()
/third_party/flutter/engine/flutter/lib/ui/painting/
Dcodec.cc193 const int targetHeight = in InstantiateImageCodec() local
218 if (targetHeight != kDoNotResizeDimension) { in InstantiateImageCodec()
219 descriptor.target_height = targetHeight; in InstantiateImageCodec()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcCompressedFormatTests.cpp1243 const auto targetHeight = image[0].height / compressedInfo->blockSize[1]; in __anon220211703e02() local
1248 … << getTextureFormatStr(uncompressedFormat).toString() << " " << targetWidth << "x" << targetHeight in __anon220211703e02()
1252 …gl.texImage2D(GL_TEXTURE_2D, 0, uncompressedFormat, targetWidth, targetHeight, 0, unsizedInfo.form… in __anon220211703e02()
/third_party/flutter/engine/flutter/lib/ui/
Dpainting.dart1656 /// The [targetWidth] and [targetHeight] arguments specify the size of the output
1667 int targetHeight,
1670 …ageCodec(list, callback, null, targetWidth ?? _kDoNotResizeDimension, targetHeight ?? _kDoNotResiz…
1676 /// The [targetWidth] and [targetHeight] arguments specify the size of the output
1678 /// If [targetWidth] and [targetHeight] are not equal to the intrinsic dimensions of the
1685 …Uint8List list, _Callback<Codec> callback, _ImageInfo imageInfo, int targetWidth, int targetHeight)
1711 /// The [targetWidth] and [targetHeight] arguments specify the size of the output
1723 {int rowBytes, int targetWidth, int targetHeight}
1727 …c(pixels, callback, imageInfo, targetWidth ?? _kDoNotResizeDimension, targetHeight ?? _kDoNotResiz…
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
DvktMemoryPipelineBarrierTests.cpp4170 deInt32 targetHeight) in PrepareRenderPassContext() argument
4175 , m_targetHeight (targetHeight) in PrepareRenderPassContext()
4209 deInt32 targetHeight) in VerifyRenderPassContext() argument
4211 …ceTarget (TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), targetWidth, targetHeight) in VerifyRenderPassContext()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
DvktMemoryPipelineBarrierTests.cpp4170 deInt32 targetHeight) in PrepareRenderPassContext() argument
4175 , m_targetHeight (targetHeight) in PrepareRenderPassContext()
4209 deInt32 targetHeight) in VerifyRenderPassContext() argument
4211 …ceTarget (TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), targetWidth, targetHeight) in VerifyRenderPassContext()
/third_party/libjpeg-turbo/doc/html/
Djquery.js8targetHeight:f,elemWidth:l,elemHeight:c,collisionPosition:s,collisionWidth:k,collisionHeight:C,off… property
/third_party/libevdev/doc/html/
Djquery.js8targetHeight:f,elemWidth:l,elemHeight:c,collisionPosition:s,collisionWidth:k,collisionHeight:C,off… property