Lines Matching defs:width
157 // Normalized width and height taking into account the framebuffer's width and height are two units (from -1 to 1).
165 TriangleMosaicGenerator (deUint32 width, deUint32 height)
166 : m_pixelWidth (2.0f / static_cast<float>(width))
194 // This generator will generate width*height full-screen triangles with decreasing depth from 0.75 to 0.25.
198 // Normalized width and height taking into account the framebuffer's width and height are two units (from -1 to 1).
208 TriangleOverlapGenerator (deUint32 width, deUint32 height)
209 : m_width (width)
210 , m_totalPixels (width * height)
815 const auto pixelCount = imageExtent.width * imageExtent.height;
924 framebuffer = makeFramebuffer(vkd, device, renderPass.get(), static_cast<deUint32>(attachments.size()), de::dataOrNull(attachments), imageExtent.width, imageExtent.height, 1u);
1029 triangleGen = TriangleGeneratorPtr(new TriangleMosaicGenerator(imageExtent.width, imageExtent.height));
1031 triangleGen = TriangleGeneratorPtr(new TriangleOverlapGenerator(imageExtent.width, imageExtent.height));
1040 for (deUint32 x = 0u; x < imageExtent.width; ++x)
1045 const auto pixelIndex = y * imageExtent.width + x;
1242 const auto iWidth = static_cast<int>(imageExtent.width);