HomeSort by relevance Sort by last modified time
    Searched defs:m_height (Results 26 - 50 of 66) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatBox.h 45 , m_height(0)
55 , m_height(height)
65 , m_height(box.height())
84 m_height = origin.y();
120 m_height = maxY - minY;
147 bool isEmpty() const { return (m_width <= 0 && m_height <= 0) || (m_width <= 0 && m_depth <= 0) || (m_height <= 0 && m_depth <= 0); }
150 float bottom() const { return m_y + m_height; }
156 float height() const { return m_height; }
163 float m_height; member in class:blink::FloatBox
    [all...]
FloatSize.h 49 FloatSize() : m_width(0), m_height(0) { }
50 FloatSize(float width, float height) : m_width(width), m_height(height) { }
51 FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
57 float height() const { return m_height; }
60 void setHeight(float height) { m_height = height; }
62 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
66 float aspectRatio() const { return m_width / m_height; }
71 m_height += height;
79 m_height *= scaleY;
85 m_height > other.m_height ? m_height : other.m_height)
125 float m_width, m_height; member in class:blink::FloatSize
    [all...]
LayoutSize.h 48 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
49 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
51 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
54 LayoutUnit height() const { return m_height; }
57 void setHeight(LayoutUnit height) { m_height = height; }
59 bool isEmpty() const { return m_width.rawValue() <= 0 || m_height.rawValue() <= 0; }
60 bool isZero() const { return !m_width && !m_height; }
62 float aspectRatio() const { return m_width.toFloat() / m_height.toFloat(); }
67 m_height += height;
73 m_height -= height
133 LayoutUnit m_width, m_height; member in class:blink::LayoutSize
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboDepthbufferTests.cpp 56 , 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...]
es3fReadPixelsTests.cpp 77 const int m_height; member in class:deqp::gles3::Functional::__anon24660::ReadPixelsTest
94 , m_height (13)
247 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32UI, m_width, m_height));
253 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32I, m_width, m_height));
339 pixelData.resize(rowPitch * (m_height + m_skipRows), 0);
341 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0])));
359 tcu::Texture2D reference(format, m_width, m_height);
374 GLU_CHECK_CALL(glViewport(0, 0, m_width, m_height));
391 if (tcu::bilinearCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[0])), tcu::RGBA(redThreshold, greenThreshold, blueThreshold, alphaThreshold), tcu::COMPARE_LOG_RESULT))
405 if (tcu::floatThresholdCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[pixelSize * m_skipPixels + m_skipRows * rowPitch])), tcu::Vec4(redThr (…)
    [all...]
es3fTextureSizeTests.cpp 69 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;
es3fTextureWrapTests.cpp 118 int m_height; member in class:deqp::gles3::Functional::TextureWrapCase
140 , m_height (height)
159 , m_height (0)
179 , m_height (height)
200 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE);
204 m_height = m_texture->getRefTexture().getHeight();
216 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
247 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
263 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
es3fFboColorbufferTests.cpp 106 , m_height (height)
130 glRenderbufferStorage(GL_RENDERBUFFER, m_format, m_width, m_height);
138 glViewport(0, 0, m_width, m_height);
166 int y = rnd.getInt(0, m_height - 1);
168 int h = rnd.getInt(1, m_height - y);
195 readPixels(dst, 0, 0, m_width, m_height, fboFormat, fmtInfo.lookupScale, fmtInfo.lookupBias);
201 const int m_height; member in class:deqp::gles3::Functional::FboColorClearCase
es3fTextureFormatTests.cpp 85 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 (height
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
887 int m_height; member in class:deqp::gles3::Functional::CompressedCubeFormatCase
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_base.h 71 int GetHeight() { return m_height; };
85 int m_height; // height of the image ( filled by ReadHeader ) member in class:GrFmtReader
  /external/chromium_org/third_party/WebKit/Source/core/svg/
PatternAttributes.h 36 , m_height(SVGLength::create(LengthModeHeight))
58 SVGLength* height() const { return m_height.get(); }
86 m_height = value;
142 RefPtr<SVGLength> m_height; member in struct:blink::PatternAttributes
  /external/deqp/framework/common/
tcuCompressedTexture.hpp 104 int getHeight (void) const { return m_height; }
116 int m_height; member in class:tcu::CompressedTexture
  /external/deqp/modules/gles2/functional/
es2fFboCompletenessTests.cpp 130 ES2Checker (void) : m_width(-1), m_height(-1) {}
135 GLsizei m_height; //< The common height of images member in class:deqp::gles2::Functional::ES2Checker
146 m_height = image->height;
150 require(image->width == m_width && image->height == m_height,
es2fTextureFormatTests.cpp 85 const int m_height; member in class:deqp::gles2::Functional::Texture2DFormatCase
97 , m_height (height)
117 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
121 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
140 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
225 const int m_height; member in class:deqp::gles2::Functional::TextureCubeFormatCase
241 , m_height (height)
266 log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_height
270 DE_ASSERT(m_width == m_height);
316 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName())+(deUint32)face)
    [all...]
es2fTextureSizeTests.cpp 69 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;
es2fTextureWrapTests.cpp 82 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);
es2fTextureFilteringTests.cpp 86 const int m_height; member in class:deqp::gles2::Functional::Texture2DFilteringCase
128 , m_height (height)
145 , m_height (0)
171 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height));
173 bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height);
174 int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
349 const int m_height; member in class:deqp::gles2::Functional::TextureCubeFilteringCase
391 , m_height (height)
408 , m_height (0)
431 DE_ASSERT(m_width == m_height);
    [all...]
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.h 61 int getHeight() const { return m_height; }
114 int m_height; member in class:FrameBuffer
  /external/pdfium/core/src/fxcodec/codec/
codec_int.h 19 int m_Width, m_Height;
239 FX_DWORD m_height; member in class:CCodec_Jbig2Context
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageConversion.cpp 1286 const unsigned m_width, m_height; member in class:blink::__anon15949::FormatConverter
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp 79 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...]
es2aTextureMipmapTests.cpp 109 int m_height; member in class:deqp::gles2::Accuracy::Texture2DMipmapCase
138 , m_height (height)
156 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
158 int numLevels = deLog2Floor32(de::max(m_width, m_height))+1;
  /external/deqp/modules/gles3/accuracy/
es3aTextureFilteringTests.cpp 74 int m_height; member in class:deqp::gles3::Accuracy::Texture2DFilteringCase
92 , m_height (height)
107 , m_height (0)
132 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_internalFormat, m_width, m_height));
134 const int numLevels = deLog2Floor32(de::max(m_width, m_height))+1;
329 int m_height; member in class:deqp::gles3::Accuracy::TextureCubeFilteringCase
348 , m_height (height)
364 , m_height (0)
387 DE_ASSERT(m_width == m_height);
391 const int numLevels = deLog2Floor32(de::max(m_width, m_height))+1
    [all...]
es3aTextureMipmapTests.cpp 106 int m_height; member in class:deqp::gles3::Accuracy::Texture2DMipmapCase
135 , m_height (height)
148 m_texture = new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
150 int numLevels = deLog2Floor32(de::max(m_width, m_height))+1;
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.h 189 , m_height(0)
220 m_height = height;
222 blink::IntRect frameRect() const { return blink::IntRect(m_xOffset, m_yOffset, m_width, m_height); }
226 unsigned height() const { return m_height; }
258 unsigned m_height; member in struct:GIFFrameContext

Completed in 846 milliseconds

12 3