Lines Matching defs:height
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)
167 , m_pixelHeight (2.0f / static_cast<float>(height))
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)
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));
1039 for (deUint32 y = 0u; y < imageExtent.height; ++y)
1243 const auto iHeight = static_cast<int>(imageExtent.height);