Searched defs:m_width (Results 26 - 50 of 77) sorted by relevance

1234

/external/deqp/external/openglcts/modules/glesext/texture_border_clamp/
H A DesextcTextureBorderClampSamplingTexture.hpp92 return m_width;
137 glw::GLuint m_width; member in class:glcts::TestConfiguration
/external/deqp/framework/common/
H A DtcuCompressedTexture.hpp120 int getWidth (void) const { return m_width; }
132 int m_width; member in class:tcu::CompressedTexture
/external/deqp/modules/gles2/functional/
H A Des2fFboCompletenessTests.cpp201 GLsizei m_width; //< The common width of images member in class:deqp::gles2::Functional::ES2Checker
207 , m_width (-1)
217 if (m_width == -1)
219 m_width = image->width;
222 else if (image->width != m_width || image->height != m_height)
H A Des2fTextureSizeTests.cpp69 int m_width; member in class:deqp::gles2::Functional::Texture2DSizeCase
82 , m_width (width)
98 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
100 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
191 int m_width; member in class:deqp::gles2::Functional::TextureCubeSizeCase
207 , m_width (width)
225 DE_ASSERT(m_width == m_height);
226 m_texture = new TextureCube(m_renderCtx, m_format, m_dataType, m_width);
238 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
H A Des2fTextureWrapTests.cpp82 int m_width; member in class:deqp::gles2::Functional::TextureWrapCase
100 , m_width (width)
117 , m_width (0)
134 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE);
137 m_width = m_texture->getRefTexture().getWidth();
142 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
H A Des2fTextureFormatTests.cpp86 const int m_width; member in class:deqp::gles2::Functional::Texture2DFormatCase
98 , m_width (width)
119 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
123 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
142 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
226 const int m_width; member in class:deqp::gles2::Functional::TextureCubeFormatCase
242 , m_width (width)
268 log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_height
272 DE_ASSERT(m_width == m_height);
274 ? new TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implici
[all...]
H A Des2fTextureFilteringTests.cpp86 const int m_width; member in class:deqp::gles2::Functional::Texture2DFilteringCase
128 , m_width (width)
145 , m_width (0)
172 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height));
174 bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height);
175 int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
349 const int m_width; member in class:deqp::gles2::Functional::TextureCubeFilteringCase
391 , m_width (width)
408 , m_width (0)
432 DE_ASSERT(m_width
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fFboDepthbufferTests.cpp55 , m_width (width)
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));
137 int m_width; member in class:deqp::gles3::Functional::BasicFboDepthCase
147 , m_width (width)
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_heigh
223 const int m_width; member in class:deqp::gles3::Functional::DepthWriteClampCase
303 const int m_width; member in class:deqp::gles3::Functional::DepthTestClampCase
[all...]
H A Des3fMultiviewTests.cpp86 const int m_width; member in class:deqp::gles3::Functional::MultiviewCase
98 , m_width(512)
116 gl.texStorage3D(GL_TEXTURE_2D_ARRAY, 1 /* num mipmaps */, GL_RGBA8, m_width / 2, m_height, 2 /* num levels */);
277 gl.viewport(0, 0, m_width / 2, m_height);
H A Des3fReadPixelsTests.cpp85 const int m_width; member in class:deqp::gles3::Functional::__anon5109::ReadPixelsTest
103 , m_width (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));
313 const int rowWidth = (m_rowLength == 0 ? m_width : m_rowLength) + m_skipPixels;
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));
355 const int rowWidth = (m_rowLength == 0 ? m_width : m_rowLength);
357 const tcu::ConstPixelBufferAccess resultAccess = tcu::ConstPixelBufferAccess(format, m_width, m_heigh
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...]
H A Des3fTextureSizeTests.cpp70 int m_width; member in class:deqp::gles3::Functional::Texture2DSizeCase
83 , m_width (width)
99 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
101 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
192 int m_width; member in class:deqp::gles3::Functional::TextureCubeSizeCase
208 , m_width (width)
226 DE_ASSERT(m_width == m_height);
227 m_texture = new TextureCube(m_renderCtx, m_format, m_dataType, m_width);
239 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
H A Des3fTextureFormatTests.cpp102 int m_width; member in class:deqp::gles3::Functional::Texture2DFormatCase
115 , m_width (width)
128 , m_width (width)
154 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
159 ? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal format.
160 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format.
179 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
265 int m_width; member in class:deqp::gles3::Functional::TextureCubeFormatCase
281 , m_width (width)
296 , m_width (widt
465 int m_width; member in class:deqp::gles3::Functional::Texture2DArrayFormatCase
622 int m_width; member in class:deqp::gles3::Functional::Texture3DFormatCase
786 int m_width; member in class:deqp::gles3::Functional::Compressed2DFormatCase
924 int m_width; member in class:deqp::gles3::Functional::CompressedCubeFormatCase
[all...]
H A Des3fTextureWrapTests.cpp119 int m_width; member in class:deqp::gles3::Functional::TextureWrapCase
141 , m_width (width)
160 , m_width (0)
180 , m_width (width)
202 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE);
205 m_width = m_texture->getRefTexture().getWidth();
218 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
249 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
266 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
/external/pdfium/third_party/agg23/
H A Dagg_vcgen_stroke.h66 m_width = w / 2;
83 return m_width * 2;
106 float m_width; member in class:agg::vcgen_stroke
/external/deqp/external/openglcts/modules/gl/
H A Dgl3cGPUShader5Tests.cpp325 const glw::GLsizei GPUShader5ImplicitConversionsTest::m_width = 8; member in class:gl3cts::GPUShader5ImplicitConversionsTest
460 gl.texStorage2D(GL_TEXTURE_2D, 1 /* levels */, GL_RGBA8, m_width, m_height);
474 gl.viewport(0 /* x */, 0 /* y */, m_width, m_height);
496 glw::GLuint result_image[m_width * m_height];
505 for (size_t i = 0; i < m_width * m_height; ++i)
517 for (size_t i = 0; i < m_width * m_height; ++i)
H A Dgl4cCopyImageTests.hpp108 glw::GLuint m_width; member in struct:gl4cts::CopyImage::FunctionalTest::targetDesc
124 glw::GLuint m_width; member in struct:gl4cts::CopyImage::FunctionalTest::testCase
245 static const glw::GLuint m_width; member in class:gl4cts::CopyImage::SmokeTest
642 glw::GLuint m_width; member in struct:gl4cts::CopyImage::InvalidAlignmentTest::testCase
H A Dgl4cTextureBarrierTests.cpp121 , m_width(0)
152 m_width = renderTarget.getWidth();
156 m_width = m_width >= 16383 ? 16382 : m_width;
167 gl.texStorage2D(GL_TEXTURE_2D, 1, GL_R32UI, m_width, m_height);
170 m_reference[i] = new GLuint[m_width * m_height];
172 m_actual = new GLuint[m_width * m_height];
344 if ((static_cast<GLint>(x) < 0) || (x >= m_width) || (static_cast<GLint>(y) < 0) || (y >= m_height))
350 return image[x + y * m_width];
495 GLuint m_width, m_height; member in class:gl4cts::TextureBarrierBasicOutline
[all...]
H A Dgl4cStencilTexturingTests.cpp587 const GLuint FunctionalTest::m_width = 8; member in class:gl4cts::StencilTexturing::FunctionalTest
701 gl.dispatchCompute(m_width, m_height, 1);
745 gl.viewport(0 /* x */, 0 /* y */, m_width, m_height);
815 static const GLuint n_pixels = m_width * m_height;
849 Utils::createAndFill2DTexture(m_context, m_width, m_height, internal_format, format, type, &texture_data[0]);
967 texture_id = Utils::createAndFill2DTexture(m_context, m_width, m_height, internal_format, GL_DEPTH_STENCIL, type,
1008 static const GLfloat depth_step_h = -0.5f / ((GLfloat)(m_width - 1));
1012 static const GLuint n_pixels = m_width * m_height;
1031 line_size = pixel_size * m_width;
1044 for (GLuint x = 0; x < m_width;
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fTextureFormatTests.cpp284 int m_width; member in class:deqp::gles31::Functional::TextureBufferFormatCase
295 , m_width (width)
328 log << TestLog::Message << "Buffer texture, " << glu::getTextureFormatStr(m_format) << ", " << m_width
332 m_texture = new glu::TextureBuffer(m_renderCtx, m_format, m_width * fmt.getPixelSize());
350 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, 1, deStringHash(getName()));
/external/boringssl/src/crypto/fipsmodule/bn/
H A Dbn_test.cc560 size_t m_width = static_cast<size_t>(bn_minimal_width(m.get())); local
561 if (m_width <= BN_SMALL_MAX_WORDS) {
562 std::unique_ptr<BN_ULONG[]> a_words(new BN_ULONG[m_width]),
563 b_words(new BN_ULONG[m_width]), r_words(new BN_ULONG[m_width]);
564 ASSERT_TRUE(bn_copy_words(a_words.get(), m_width, a.get()));
565 ASSERT_TRUE(bn_copy_words(b_words.get(), m_width, b.get()));
566 ASSERT_TRUE(bn_to_montgomery_small(a_words.get(), m_width, a_words.get(),
567 m_width, mont.get()));
568 ASSERT_TRUE(bn_to_montgomery_small(b_words.get(), m_width, b_word
628 size_t m_width = static_cast<size_t>(bn_minimal_width(m.get())); local
688 size_t m_width = static_cast<size_t>(bn_minimal_width(m.get())); local
[all...]
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureFilteringTests.cpp80 int m_width; member in class:deqp::gles2::Accuracy::Texture2DFilteringCase
100 , m_width (width)
116 , m_width (0)
142 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height));
144 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height);
145 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
341 int m_width; member in class:deqp::gles2::Accuracy::TextureCubeFilteringCase
361 , m_width (width)
377 , m_width (0)
401 DE_ASSERT(m_width
[all...]
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureFilteringTests.cpp74 int m_width; member in class:deqp::gles3::Accuracy::Texture2DFilteringCase
92 , m_width (width)
107 , m_width (0)
133 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_internalFormat, m_width, m_height));
135 const int numLevels = deLog2Floor32(de::max(m_width, m_height))+1;
329 int m_width; member in class:deqp::gles3::Accuracy::TextureCubeFilteringCase
348 , m_width (width)
364 , m_width (0)
388 DE_ASSERT(m_width == m_height);
390 m_textures.push_back(new glu::TextureCube(m_renderCtx, m_internalFormat, m_width));
[all...]
/external/vulkan-validation-layers/tests/
H A Dvktestframework.cpp147 int VkTestFramework::m_width = 0; member in class:VkTestFramework
/external/deqp/external/openglcts/modules/common/
H A DglcViewportArrayTests.hpp197 glw::GLuint m_width; member in struct:glcts::ViewportArray::Utils::texture
629 static const glw::GLuint m_width; member in class:glcts::ViewportArray::DrawTestBase
/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryLayeredRenderingTests.cpp410 return tcu::getSubregion(m_wholeImage, 0, (m_1dModifier * layer), ((~m_1dModifier & 1) * layer), m_width, m_height, 1);
421 : m_width (static_cast<int>(width))
425 , m_wholeImage (tcu::ConstPixelBufferAccess(mapVkFormat(format), m_width, m_layers, 1, pData))
430 : m_width (static_cast<int>(size.width))
434 , m_wholeImage (tcu::ConstPixelBufferAccess(mapVkFormat(format), m_width, m_height, m_layers, pData))
438 const int m_width; member in class:vkt::geometry::__anon4338::LayeredImageAccess

Completed in 563 milliseconds

1234