Searched refs:m_height (Results 1 - 25 of 51) sorted by relevance

123

/external/deqp/framework/common/
H A DtcuSurface.cpp30 , m_height (0)
36 , m_height (height)
55 m_height = height;
H A DtcuRenderTarget.cpp31 , m_height (0)
41 , m_height (height)
H A DtcuRenderTarget.hpp47 int getHeight (void) const { return m_height; }
53 int m_height; member in class:tcu::RenderTarget
H A DtcuSurface.hpp54 int getHeight (void) const { return m_height; }
66 int m_height; member in class:tcu::Surface
72 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
89 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
107 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : &m_pixels[0]);
113 return PixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : &m_pixels[0]);
H A DtcuCompressedTexture.hpp121 int getHeight (void) const { return m_height; }
133 int m_height; member in class:tcu::CompressedTexture
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_rendering_buffer.h52 m_height(0),
61 m_height(0),
71 m_height = height;
101 return m_height;
140 unsigned m_height; member in class:agg::rendering_buffer
/external/opencv/otherlibs/highgui/
H A Dgrfmt_bmp.cpp109 m_height = m_strm.GetDWord();
116 if( m_width > 0 && m_height > 0 &&
152 m_height = m_strm.GetWord();
156 if( m_width > 0 && m_height > 0 &&
180 m_width = m_height = -1;
204 data += (m_height - 1)*step;
227 for( y = 0; y < m_height; y++, data += step )
241 for( y = 0; y < m_height; y++, data += step )
296 int y_shift = m_height - y;
308 y, m_height, x_shift
[all...]
H A Dgrfmt_sunras.cpp104 m_height = m_strm.GetDWord();
113 if( m_width > 0 && m_height > 0 &&
166 m_width = m_height = -1;
209 for( y = 0; y < m_height; y++, data += step )
266 if( ++y >= m_height ) break;
278 for( y = 0; y < m_height; y++, data += step )
329 y, m_height, len,
333 y, m_height, len,
335 if( y >= m_height )
345 if( ++y >= m_height ) brea
[all...]
H A Dgrfmt_base.h71 int GetHeight() { return m_height; };
85 int m_height; // height of the image ( filled by ReadHeader ) member in class:GrFmtReader
H A Dgrfmt_imageio.cpp113 m_height = CGImageGetHeight( imageRef );
158 bitmap = (uchar*)malloc( bpp * m_height * m_width );
167 m_height, /* height */
181 CGRect rect = {{0,0},{m_width,m_height}};
199 for (int y = 0; y < m_height; y++)
219 for (int y = 0; y < m_height; y++)
H A Dgrfmt_tiff.cpp151 m_height = height;
172 if( m_tif && m_width && m_height )
189 tile_height0 = m_height;
193 for( y = 0; y < m_height; y += tile_height0, data += step*tile_height0 )
197 if( y + tile_height > m_height )
198 tile_height = m_height - y;
370 m_height = -1;
415 m_height = value;
499 m_rows_per_strip = m_height;
501 if( m_width > 0 && m_height >
[all...]
H A Dgrfmt_pxm.cpp167 m_height = ReadNumber( m_strm, INT_MAX );
177 if( m_width > 0 && m_height > 0 && m_maxval > 0 && m_maxval < (1 << 16))
189 m_width = m_height = -1;
240 for( y = 0; y < m_height; y++, data += step )
253 for( y = 0; y < m_height; y++, data += step )
269 for( y = 0; y < m_height; y++, data += step )
H A Dgrfmt_png.cpp165 m_height = (int)height;
189 if( m_png_ptr && m_info_ptr && m_end_info && m_width && m_height )
229 buffer = new uchar*[m_height];
231 for( y = 0; y < m_height; y++ )
H A Dgrfmt_base.cpp52 m_width = m_height = 0;
68 m_width = m_height = 0;
/external/deqp/modules/gles3/functional/
H A Des3fFboDepthbufferTests.cpp56 , m_height (height)
89 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
92 glRenderbufferStorage(GL_RENDERBUFFER, m_format, m_width, m_height);
100 glViewport(0, 0, m_width, m_height);
132 readPixels(dst, 0, 0, m_width, m_height, glu::mapGLInternalFormat(colorFormat), Vec4(1.0f), Vec4(0.0f));
138 int m_height; member in class:deqp::gles3::Functional::BasicFboDepthCase
148 , m_height (height)
179 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
182 glTexImage2D(GL_TEXTURE_2D, 0, m_format, m_width, m_height, 0, transferFmt.format, transferFmt.dataType, DE_NULL);
192 glViewport(0, 0, m_width, m_height);
224 const int m_height; member in class:deqp::gles3::Functional::DepthWriteClampCase
304 const int m_height; member in class:deqp::gles3::Functional::DepthTestClampCase
[all...]
H A Des3fTextureSizeTests.cpp69 int m_height; member in class:deqp::gles3::Functional::Texture2DSizeCase
82 , m_height (height)
97 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
99 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
186 int m_height; member in class:deqp::gles3::Functional::TextureCubeSizeCase
202 , m_height (height)
219 DE_ASSERT(m_width == m_height);
232 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
H A Des3fTextureWrapTests.cpp119 int m_height; member in class:deqp::gles3::Functional::TextureWrapCase
141 , m_height (height)
160 , m_height (0)
180 , m_height (height)
201 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE);
205 m_height = m_texture->getRefTexture().getHeight();
217 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
248 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
265 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
H A Des3fTextureFormatTests.cpp85 int m_height; member in class:deqp::gles3::Functional::Texture2DFormatCase
97 , m_height (height)
109 , m_height (height)
132 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
137 ? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal format.
138 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format.
157 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
243 int m_height; member in class:deqp::gles3::Functional::TextureCubeFormatCase
258 , m_height (height)
272 , m_height (heigh
438 int m_height; member in class:deqp::gles3::Functional::Texture2DArrayFormatCase
590 int m_height; member in class:deqp::gles3::Functional::Texture3DFormatCase
750 int m_height; member in class:deqp::gles3::Functional::Compressed2DFormatCase
888 int m_height; member in class:deqp::gles3::Functional::CompressedCubeFormatCase
[all...]
H A Des3fReadPixelsTests.cpp86 const int m_height; member in class:deqp::gles3::Functional::__anon3339::ReadPixelsTest
104 , m_height (13)
233 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32UI, m_width, m_height));
239 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32I, m_width, m_height));
316 pixelData.resize(rowPitch * (m_height + m_skipRows), 0);
318 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0])));
335 tcu::Texture2D reference(format, m_width, m_height);
350 GLU_CHECK_CALL(glViewport(0, 0, m_width, m_height));
357 const tcu::ConstPixelBufferAccess resultAccess = tcu::ConstPixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[pixelSize * m_skipPixels + m_skipRows * rowPitch]));
369 tcu::Texture2D referenceRGBA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_width, m_height); local
370 tcu::Texture2D resultRGBA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_width, m_height); local
[all...]
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp53 Length m_height; member in struct:rdar11293995::LengthSize
/external/deqp/modules/gles2/functional/
H A Des2fTextureSpecificationTests.cpp368 const int m_height; member in class:deqp::gles2::Functional::TextureSpecCase
398 , m_height (height)
418 DE_ASSERT(m_width <= 256 && m_height <= 256);
419 if (renderTarget.getWidth() < m_width || renderTarget.getHeight() < m_height)
482 int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 : 1;
489 int levelH = de::max(1, m_height >> levelNdx);
520 int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 : 1;
527 int levelH = de::max(1, m_height >> levelNdx);
627 int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 : 1;
639 int levelH = de::max(1, m_height >> nd
[all...]
H A Des2fTextureSizeTests.cpp69 int m_height; member in class:deqp::gles2::Functional::Texture2DSizeCase
82 , m_height (height)
97 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
99 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
186 int m_height; member in class:deqp::gles2::Functional::TextureCubeSizeCase
202 , m_height (height)
219 DE_ASSERT(m_width == m_height);
232 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
H A Des2fFboCompletenessTests.cpp202 GLsizei m_height; //< The common height of images member in class:deqp::gles2::Functional::ES2Checker
208 , m_height (-1)
220 m_height = image->height;
222 else if (image->width != m_width || image->height != m_height)
H A Des2fTextureWrapTests.cpp82 int m_height; member in class:deqp::gles2::Functional::TextureWrapCase
100 , m_height (height)
117 , m_height (0)
133 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE);
137 m_height = m_texture->getRefTexture().getHeight();
141 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureFilteringTests.cpp79 int m_height; member in class:deqp::gles2::Accuracy::Texture2DFilteringCase
99 , m_height (height)
115 , m_height (0)
140 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height));
142 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height);
143 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
340 int m_height; member in class:deqp::gles2::Accuracy::TextureCubeFilteringCase
360 , m_height (height)
376 , m_height (0)
399 DE_ASSERT(m_width == m_height);
[all...]

Completed in 1993 milliseconds

123