Home
last modified time | relevance | path

Searched refs:imageHeight (Results 1 – 25 of 50) sorted by relevance

12

/external/deqp/modules/gles2/functional/
Des2fPrerequisiteTests.cpp183 int imageHeight = 0; in iterate() local
195 imageHeight = targetHeight; in iterate()
202 imageHeight = targetHeight / 2; in iterate()
209 imageHeight = targetHeight - y; in iterate()
215 imageHeight = 1 + (deRandom_getUint32(&rnd) % (targetHeight - y - 1)); in iterate()
219 Surface resImage(imageWidth, imageHeight); in iterate()
220 Surface refImage(imageWidth, imageHeight); in iterate()
221 Surface diffImage(imageWidth, imageHeight); in iterate()
239 for (int j = 0; j < imageHeight; j++) in iterate()
/external/deqp/modules/gles3/functional/
Des3fPrerequisiteTests.cpp183 int imageHeight = 0; in iterate() local
195 imageHeight = targetHeight; in iterate()
202 imageHeight = targetHeight / 2; in iterate()
209 imageHeight = targetHeight - y; in iterate()
215 imageHeight = 1 + (deRandom_getUint32(&rnd) % (targetHeight - y - 1)); in iterate()
219 Surface resImage(imageWidth, imageHeight); in iterate()
220 Surface refImage(imageWidth, imageHeight); in iterate()
221 Surface diffImage(imageWidth, imageHeight); in iterate()
239 for (int j = 0; j < imageHeight; j++) in iterate()
Des3fASTCDecompressionCases.cpp424 const int imageHeight = numYBlocksPerImage * blockSize.y(); in iterate() local
430 tcu::CompressedTexture compressed (m_format, imageWidth, imageHeight); in iterate()
435 << imageWidth << "x" << imageHeight in iterate()
452 Surface renderedFrame (imageWidth, imageHeight); in iterate()
453 Surface referenceFrame (imageWidth, imageHeight); in iterate()
558 const int imageHeight = (MAX_NUM_BLOCKS_Y-1)*blockSize.y() + curRemainderY; in iterate() local
560 const int numBlocksY = deDivRoundUp32(imageHeight, blockSize.y()); in iterate()
564 tcu::CompressedTexture compressed (m_format, imageWidth, imageHeight); in iterate()
574 Surface renderedFrame (imageWidth, imageHeight); in iterate()
575 Surface referenceFrame (imageWidth, imageHeight); in iterate()
[all …]
Des3fTextureSpecificationTests.cpp1127 int imageHeight, in TexImage3DParamsCase() argument
1135 , m_imageHeight (imageHeight) in TexImage3DParamsCase()
1151 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_height; in createTexture() local
1152 int slicePitch = imageHeight*rowPitch; in createTexture()
1776 int imageHeight, in TexSubImage3DParamsCase() argument
1790 , m_imageHeight (imageHeight) in TexSubImage3DParamsCase()
1827 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_subH; in createTexture() local
1828 int slicePitch = imageHeight*rowPitch; in createTexture()
2447 int imageHeight, in TexImage2DArrayBufferCase() argument
2456 , m_imageHeight (imageHeight) in TexImage2DArrayBufferCase()
[all …]
/external/skia/tests/
DSVGDeviceTest.cpp187 void SetImageShader(SkPaint* paint, int imageWidth, int imageHeight, SkShader::TileMode xTile, in SetImageShader() argument
189 auto surface = SkSurface::MakeRasterN32Premul(imageWidth, imageHeight); in SetImageShader()
236 void ImageShaderTestSetup(SkDOM* dom, SkPaint* paint, int imageWidth, int imageHeight, in ImageShaderTestSetup() argument
239 SetImageShader(paint, imageWidth, imageHeight, xTile, yTile); in ImageShaderTestSetup()
250 int imageWidth = 3, imageHeight = 3; in DEF_TEST() local
252 ImageShaderTestSetup(&dom, &paint, imageWidth, imageHeight, rectWidth, rectHeight, in DEF_TEST()
264 REPORTER_ASSERT(reporter, atoi(dom.findAttr(imageNode, "height")) == imageHeight); in DEF_TEST()
275 int imageWidth = 3, imageHeight = 3; in DEF_TEST() local
277 ImageShaderTestSetup(&dom, &paint, imageWidth, imageHeight, rectWidth, rectHeight, in DEF_TEST()
294 REPORTER_ASSERT(reporter, atoi(dom.findAttr(imageNode, "height")) == imageHeight); in DEF_TEST()
[all …]
/external/skqp/tests/
DSVGDeviceTest.cpp181 void SetImageShader(SkPaint* paint, int imageWidth, int imageHeight, SkShader::TileMode xTile, in SetImageShader() argument
183 auto surface = SkSurface::MakeRasterN32Premul(imageWidth, imageHeight); in SetImageShader()
230 void ImageShaderTestSetup(SkDOM* dom, SkPaint* paint, int imageWidth, int imageHeight, in ImageShaderTestSetup() argument
233 SetImageShader(paint, imageWidth, imageHeight, xTile, yTile); in ImageShaderTestSetup()
245 int imageWidth = 3, imageHeight = 3; in DEF_TEST() local
247 ImageShaderTestSetup(&dom, &paint, imageWidth, imageHeight, rectWidth, rectHeight, in DEF_TEST()
259 REPORTER_ASSERT(reporter, atoi(dom.findAttr(imageNode, "height")) == imageHeight); in DEF_TEST()
270 int imageWidth = 3, imageHeight = 3; in DEF_TEST() local
272 ImageShaderTestSetup(&dom, &paint, imageWidth, imageHeight, rectWidth, rectHeight, in DEF_TEST()
289 REPORTER_ASSERT(reporter, atoi(dom.findAttr(imageNode, "height")) == imageHeight); in DEF_TEST()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemWorkgroupStorageTests.cpp61 deUint32 imageHeight; member
68 imageHeight = 1; in Params()
70 while (imageWidth * imageHeight < sharedMemorySize) in Params()
75 imageHeight *= 2; in Params()
141 …ing(m_params.imageWidth) + ", local_size_y = " + de::toString(m_params.imageHeight) + ", local_siz… in initPrograms()
178 …tcu::Texture2D> texture2D (new tcu::Texture2D(texFmt, m_params.imageWidth, m_params.imageHeight)); in createTestTexture2D()
221 if (properties.limits.maxComputeWorkGroupInvocations < m_params.imageWidth * m_params.imageHeight) in iterate()
232 m_params.imageWidth, m_params.imageHeight, in iterate()
237 m_params.imageWidth, m_params.imageHeight, in iterate()
245 m_params.imageWidth, m_params.imageHeight, in iterate()
[all …]
/external/skia/src/core/
DSkLatticeIter.h24 static bool Valid(int imageWidth, int imageHeight, const SkCanvas::Lattice& lattice);
28 static bool Valid(int imageWidth, int imageHeight, const SkIRect& center);
30 SkLatticeIter(int imageWidth, int imageHeight, const SkIRect& center, const SkRect& dst);
DSkDeferredDisplayListRecorder.cpp47 int imageHeight, in makeYUVAPromiseTexture() argument
262 int imageHeight, in makeYUVAPromiseTexture() argument
279 imageHeight, in makeYUVAPromiseTexture()
/external/skqp/src/core/
DSkLatticeIter.h24 static bool Valid(int imageWidth, int imageHeight, const SkCanvas::Lattice& lattice);
28 static bool Valid(int imageWidth, int imageHeight, const SkIRect& center);
30 SkLatticeIter(int imageWidth, int imageHeight, const SkIRect& center, const SkRect& dst);
DSkDeferredDisplayListRecorder.cpp48 int imageHeight, in makeYUVAPromiseTexture() argument
253 int imageHeight, in makeYUVAPromiseTexture() argument
271 imageHeight, in makeYUVAPromiseTexture()
/external/mesa3d/src/glx/
Dpixel.c170 GLint imageHeight = state->storeUnpack.imageHeight; in __glFillImage() local
192 if (imageHeight > 0) { in __glFillImage()
193 rowsPerImage = imageHeight; in __glFillImage()
397 GLint imageHeight = state->storePack.imageHeight; in __glEmptyImage() local
418 if (imageHeight > 0) { in __glEmptyImage()
419 rowsPerImage = imageHeight; in __glEmptyImage()
Dpixelstore.c94 state->storePack.imageHeight = a; in __indirect_glPixelStoref()
155 state->storeUnpack.imageHeight = a; in __indirect_glPixelStoref()
241 state->storePack.imageHeight = param; in __indirect_glPixelStorei()
296 state->storeUnpack.imageHeight = param; in __indirect_glPixelStorei()
/external/deqp/modules/gles31/functional/
Des31fTextureSpecificationTests.cpp407 int imageHeight, in TexImageCubeArrayBufferCase() argument
416 , m_imageHeight (imageHeight) in TexImageCubeArrayBufferCase()
433 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_size; in createTexture() local
434 int slicePitch = imageHeight*rowPitch; in createTexture()
494 int imageHeight, in TexSubImageCubeArrayBufferCase() argument
509 , m_imageHeight (imageHeight) in TexSubImageCubeArrayBufferCase()
548 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_subH; in createTexture() local
549 int slicePitch = imageHeight*rowPitch; in createTexture()
727 int imageHeight = m_size; in createTexture() local
728 int slicePitch = imageHeight*rowPitch; in createTexture()
[all …]
/external/skqp/include/core/
DSkDeferredDisplayListRecorder.h170 int imageHeight,
185 int imageHeight, in makeYUVAPromiseTexture() argument
193 yuvColorSpace, yuvaFormats, yuvaSizes, yuvaIndices, imageWidth, imageHeight, in makeYUVAPromiseTexture()
/external/skia/gm/
Dencode-srgb.cpp23 static const int imageHeight = 128; variable
104 return SkISize::Make(imageWidth * 2, imageHeight * 15); in onISize()
129 canvas->translate(0.0f, (float) imageHeight); in onDraw()
/external/skqp/gm/
Dencode-srgb.cpp23 static const int imageHeight = 128; variable
104 return SkISize::Make(imageWidth * 2, imageHeight * 15); in onISize()
129 canvas->translate(0.0f, (float) imageHeight); in onDraw()
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiIncrementalPresentTests.cpp271 deUint32 imageHeight) in getRenderFrameRect() argument
278 : de::min(((deUint32)frameNdx) % imageHeight, imageHeight - 1u); in getRenderFrameRect()
283 ? imageHeight in getRenderFrameRect()
284 … : 1 + de::min((deUint32)(frameNdx) % de::min<deUint32>(100, imageHeight / 3), imageHeight - y); in getRenderFrameRect()
326 deUint32 imageHeight) in cmdRenderFrame() argument
332 const vk::VkRect2D scissor = vk::makeRect2D(imageWidth, imageHeight); in cmdRenderFrame()
351 const vk::VkRect2D scissor = getRenderFrameRect(frameNdx, imageWidth, imageHeight); in cmdRenderFrame()
372 deUint32 imageHeight) in createCommandBuffer() argument
412 …d, *commandBuffer, renderPass, framebuffer, vk::makeRect2D(imageWidth, imageHeight), tcu::Vec4(0.2… in createCommandBuffer()
415 cmdRenderFrame(vkd, *commandBuffer, pipelineLayout, pipeline, frameNdx, imageWidth, imageHeight); in createCommandBuffer()
[all …]
DvktWsiSharedPresentableImageTests.cpp304 deUint32 imageHeight) in createCommandBuffer() argument
319 …mmandBuffer, renderPass, framebuffer, vk::makeRect2D(0, 0, imageWidth, imageHeight), tcu::Vec4(0.2… in createCommandBuffer()
644 const deUint32 imageHeight = scaling == SCALING_NONE in generateSwapchainConfigs() local
651 const vk::VkExtent2D imageSize = { imageWidth, imageHeight }; in generateSwapchainConfigs()
790 const deUint32 imageHeight = m_swapchainConfigs[m_swapchainConfigNdx].imageExtent.height; in initSwapchainResources() local
797 …rPass, *m_pipelineLayout, *m_vertexShaderModule, *m_fragmentShaderModule, imageWidth, imageHeight); in initSwapchainResources()
800 …createFramebuffer(m_vkd, *m_device, *m_renderPass, *m_swapchainImageView, imageWidth, imageHeight); in initSwapchainResources()
/external/ImageMagick/MagickCore/
Daccelerate-kernels-private.h1256 const unsigned int imageWidth, const unsigned int imageHeight,
1296 imagePixelIndex.y = ClampToCanvas(imagePixelIndex.y, imageHeight);
1314 || imageIndex.y >= imageHeight) {
1379 const uint imageWidth, const uint imageHeight,
1392 || imageIndex.y >= imageHeight)
1406 inputPixelIndex.y = ClampToCanvas(inputPixelIndex.y, imageHeight);
1430 inputPixelIndex.y = ClampToCanvas(inputPixelIndex.y, imageHeight);
1480 , const unsigned int imageWidth, const unsigned int imageHeight
1494 clampedNeighbor.y = ClampToCanvas(neighbor.y, imageHeight);
1543 , const unsigned int imageWidth, const unsigned int imageHeight
[all …]
/external/skia/src/image/
DSkImage_GpuYUVA.cpp279 int imageHeight, in MakePromiseYUVATexture() argument
310 if (imageWidth <= 0 || imageHeight <= 0) { in MakePromiseYUVATexture()
316 SkImageInfo info = SkImageInfo::Make(imageWidth, imageHeight, kRGBA_8888_SkColorType, in MakePromiseYUVATexture()
352 return sk_make_sp<SkImage_GpuYUVA>(sk_ref_sp(context), imageWidth, imageHeight, in MakePromiseYUVATexture()
/external/dng_sdk/source/
Ddng_lossless_jpeg.cpp315 int32 imageHeight; member
413 uint32 &imageHeight,
724 info.imageHeight = Get2bytes (); in GetSof()
732 if ((info.imageHeight <= 0) || in GetSof()
1183 ((info.imageHeight & 1) == 0); in DecoderStructInit()
1858 int32 numROW = info.imageHeight; in DecodeImage()
2543 uint32 &imageHeight, in StartRead() argument
2553 imageHeight = info.imageHeight; in StartRead()
2581 uint32 imageHeight; in DecodeLosslessJPEG() local
2585 imageHeight, in DecodeLosslessJPEG()
[all …]
/external/autotest/client/deps/glbench/src/
Dyuv2rgb_2.glslv32 uniform float imageHeight;
43 lineCounter = vec2(c.y * imageHeight / 4.0, 0.0);
/external/skqp/src/image/
DSkImage_GpuYUVA.cpp257 int imageHeight, in MakePromiseYUVATexture() argument
295 SkImageInfo info = SkImageInfo::Make(imageWidth, imageHeight, kRGBA_8888_SkColorType, in MakePromiseYUVATexture()
331 return sk_make_sp<SkImage_GpuYUVA>(sk_ref_sp(context), imageWidth, imageHeight, in MakePromiseYUVATexture()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp1050 vk::VkBufferImageCopy makeBufferImageCopy (const deUint32 imageWidth, const deUint32 imageHeight, c… in makeBufferImageCopy() argument
1056 imageHeight, // bufferImageHeight in makeBufferImageCopy()
1066 imageHeight, in makeBufferImageCopy()
1074 vk::VkBufferImageCopy makeBufferImageCopy (const deUint32 imageWidth, const deUint32 imageHeight, c… in makeBufferImageCopy() argument
1090 imageHeight, in makeBufferImageCopy()

12