Home
last modified time | relevance | path

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

/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()
Des3fTextureSpecificationTests.cpp1128 int imageHeight, in TexImage3DParamsCase() argument
1136 , m_imageHeight (imageHeight) in TexImage3DParamsCase()
1152 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_height; in createTexture() local
1153 int slicePitch = imageHeight*rowPitch; in createTexture()
1777 int imageHeight, in TexSubImage3DParamsCase() argument
1791 , m_imageHeight (imageHeight) in TexSubImage3DParamsCase()
1828 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_subH; in createTexture() local
1829 int slicePitch = imageHeight*rowPitch; in createTexture()
2448 int imageHeight, in TexImage2DArrayBufferCase() argument
2457 , m_imageHeight (imageHeight) in TexImage2DArrayBufferCase()
[all …]
Des3fASTCDecompressionCases.cpp1802 const int imageHeight = numYBlocksPerImage * blockSize.y(); in iterate() local
1808 tcu::CompressedTexture compressed (m_format, imageWidth, imageHeight); in iterate()
1813 << imageWidth << "x" << imageHeight in iterate()
1827 Surface renderedFrame (imageWidth, imageHeight); in iterate()
1828 Surface referenceFrame (imageWidth, imageHeight); in iterate()
1941 const int imageHeight = (MAX_NUM_BLOCKS_Y-1)*blockSize.y() + curRemainderY; in iterate() local
1943 const int numBlocksY = divRoundUp(imageHeight, blockSize.y()); in iterate()
1947 tcu::CompressedTexture compressed (m_format, imageWidth, imageHeight); in iterate()
1954 Surface renderedFrame (imageWidth, imageHeight); in iterate()
1955 Surface referenceFrame (imageWidth, imageHeight); in iterate()
[all …]
/external/opencv/cv/src/
Dcvoptflowhs.cpp108 int imageHeight = imgSize.height; in icvCalcOpticalFlowHS_8u32fR() local
177 BufferSize = imageHeight * imageWidth; in icvCalcOpticalFlowHS_8u32fR()
215 for( i = 1; i < imageHeight - 1; i++ ) in icvCalcOpticalFlowHS_8u32fR()
226 MemX[0][imageHeight - 1] = in icvCalcOpticalFlowHS_8u32fR()
227 MemX[1][imageHeight - 1] = CONV( imgA[pixNumber - imgStep], in icvCalcOpticalFlowHS_8u32fR()
238 LastLine = imgStep * (imageHeight - 1); in icvCalcOpticalFlowHS_8u32fR()
239 while( ConvLine < imageHeight ) in icvCalcOpticalFlowHS_8u32fR()
326 for( i = 0; i < imageHeight; i++ ) in icvCalcOpticalFlowHS_8u32fR()
340 LastLine = velStep * (imageHeight - 1); in icvCalcOpticalFlowHS_8u32fR()
351 for( i = 0; i < imageHeight; i++ ) in icvCalcOpticalFlowHS_8u32fR()
[all …]
Dcvoptflowlk.cpp111 int imageHeight = imgSize.height; in icvCalcOpticalFlowLK_8u32fR() local
156 if( imageHeight < winHeight ) in icvCalcOpticalFlowLK_8u32fR()
252 for( i = 1; i < imageHeight - 1; i++ ) in icvCalcOpticalFlowLK_8u32fR()
263 MemX[0][imageHeight - 1] = in icvCalcOpticalFlowLK_8u32fR()
264 MemX[1][imageHeight - 1] = CONV( imgA[pixNumber - imgStep], in icvCalcOpticalFlowLK_8u32fR()
276 while( PixelLine < imageHeight ) in icvCalcOpticalFlowLK_8u32fR()
278 if( ConvLine < imageHeight ) in icvCalcOpticalFlowLK_8u32fR()
292 if( L3 >= imageHeight ) in icvCalcOpticalFlowLK_8u32fR()
293 L3 = imageHeight - 1; in icvCalcOpticalFlowLK_8u32fR()
464 if( PixelLine >= imageHeight - VerRadius ) in icvCalcOpticalFlowLK_8u32fR()
[all …]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
DImageBasedHeightMap.java96 int imageHeight = colorImage.getHeight(); in load() local
98 if (imageWidth != imageHeight) in load()
100 + " != imageHeight: " + imageHeight); in load()
106 heightData = new float[(imageWidth * imageHeight)]; in load()
112 for (int h = 0; h < imageHeight; ++h) { in load()
126 for (int h = imageHeight - 1; h >= 0; --h) { in load()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DDrawUtils.java102 int imageHeight = image.getBounds().height; in drawScaledImage() local
106 if (imageWidth <= targetRectangle.width && imageHeight <= targetRectangle.height) { in drawScaledImage()
108 newImageHeight = imageHeight; in drawScaledImage()
114 double k_h = targetRectangle.height / (double) imageHeight; in drawScaledImage()
119 newImageHeight = (int) (imageHeight * k); in drawScaledImage()
124 gc.drawImage(image, 0, 0, imageWidth, imageHeight, destX, destY, newImageWidth, newImageHeight); in drawScaledImage()
232 int imageHeight = imageBounds.height; in getThubmnail() local
233 if (imageWidth < minWidth && imageHeight < minHeight) { in getThubmnail()
250 } else if (imageWidth <= maxWidth && imageHeight <= maxHeight) { in getThubmnail()
254 double kY = (double) maxHeight / imageHeight; in getThubmnail()
[all …]
/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.c93 state->storePack.imageHeight = a; in __indirect_glPixelStoref()
154 state->storeUnpack.imageHeight = a; in __indirect_glPixelStoref()
240 state->storePack.imageHeight = param; in __indirect_glPixelStorei()
295 state->storeUnpack.imageHeight = param; in __indirect_glPixelStorei()
Dsingle2.c254 *data = (GLintptr) state->storePack.imageHeight; in get_client_data()
278 *data = (GLintptr) state->storeUnpack.imageHeight; in get_client_data()
Dglxclient.h173 GLuint imageHeight; member
/external/deqp/modules/gles31/functional/
Des31fTextureSpecificationTests.cpp405 int imageHeight, in TexImageCubeArrayBufferCase() argument
414 , m_imageHeight (imageHeight) in TexImageCubeArrayBufferCase()
431 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_size; in createTexture() local
432 int slicePitch = imageHeight*rowPitch; in createTexture()
492 int imageHeight, in TexSubImageCubeArrayBufferCase() argument
507 , m_imageHeight (imageHeight) in TexSubImageCubeArrayBufferCase()
546 int imageHeight = m_imageHeight > 0 ? m_imageHeight : m_subH; in createTexture() local
547 int slicePitch = imageHeight*rowPitch; in createTexture()
725 int imageHeight = m_size; in createTexture() local
726 int slicePitch = imageHeight*rowPitch; in createTexture()
[all …]
Des31fSynchronizationTests.cpp1656 const int imageHeight = m_invocationGridSize * m_perInvocationSize; in genStorage() local
1661 << "Creating image #" << friendlyName << ", size " << imageWidth << "x" << imageHeight in genStorage()
1663 << ", size = " << (imageWidth*imageHeight*sizeof(deUint32)) << " bytes." in genStorage()
1670 gl.texStorage2D(GL_TEXTURE_2D, 1, GL_R32I, imageWidth, imageHeight); in genStorage()
1672 gl.texStorage2D(GL_TEXTURE_2D, 1, GL_R32F, imageWidth, imageHeight); in genStorage()
1685 const std::vector<deInt32> zeroBuffer(imageWidth * imageHeight, 0); in genStorage()
1686 …gl.texSubImage2D(GL_TEXTURE_2D, 0, 0, 0, imageWidth, imageHeight, GL_RED_INTEGER, GL_INT, &zeroBuf… in genStorage()
1690 const std::vector<float> zeroBuffer(imageWidth * imageHeight, 0.0f); in genStorage()
1691 …gl.texSubImage2D(GL_TEXTURE_2D, 0, 0, 0, imageWidth, imageHeight, GL_RED, GL_FLOAT, &zeroBuffer[0]… in genStorage()
Des31fTessellationTests.cpp1071 const int imageHeight = 256; in drawTessCoordVisualization() local
1072 dst.setSize(imageWidth, imageHeight); in drawTessCoordVisualization()
/external/mesa3d/src/mesa/main/
Dtexobj.c1449 int imageHeight; in _mesa_InvalidateTexSubImage() local
1466 imageHeight = 1; in _mesa_InvalidateTexSubImage()
1474 imageHeight = 1; in _mesa_InvalidateTexSubImage()
1482 imageHeight = image->Height; in _mesa_InvalidateTexSubImage()
1493 imageHeight = image->Height; in _mesa_InvalidateTexSubImage()
1502 imageHeight = image->Height; in _mesa_InvalidateTexSubImage()
1510 imageHeight = image->Height; in _mesa_InvalidateTexSubImage()
1519 imageHeight = 0; in _mesa_InvalidateTexSubImage()
1540 if (yoffset + height > imageHeight + yBorder) { in _mesa_InvalidateTexSubImage()
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
DRenderDeviceJme.java268 float imageHeight = jmeImage.getHeight(); in renderImage() local
272 float startY = srcY / imageHeight; in renderImage()
274 float endY = startY + (srcH / imageHeight); in renderImage()
/external/skia/src/core/
DSkDistanceFieldGen.cpp68 int imageWidth, int imageHeight, in init_glyph_data() argument
74 for (int j = 0; j < imageHeight; ++j) { in init_glyph_data()
91 if (j == imageHeight-1) { in init_glyph_data()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DFingerPrintGraph.java86 int imageHeight; field in FingerPrintGraph
555 this.imageHeight = this.graphHeight + GAP + 16 + MARGIN;
556 this.image = new Image(DEFAULT_DISPLAY, this.imageWidth, this.imageHeight);
561 this.gc.fillRectangle(0, 0, this.imageWidth, this.imageHeight);
/external/v8/benchmarks/
Draytrace.js881 var imageHeight = 100; // $F('imageHeight');
892 canvasHeight: imageHeight,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images ...
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp943 int imageHeight = m_pixelUnpackImageHeight > 0 ? m_pixelUnpackImageHeight : height; in getUnpack3DAccess() local
945 int slicePitch = imageHeight*rowPitch; in getUnpack3DAccess()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...