Lines Matching refs:extent
158 { DEFAULT_IMAGE_SIZE.width, DEFAULT_IMAGE_SIZE.height }, // VkExtent2D extent;
174 DEFAULT_IMAGE_SIZE, // VkExtent3D extent;
4175 static deUint32 calcNumPixels (const VkExtent3D& extent)
4177 DE_ASSERT(extent.depth == 1u);
4178 return (extent.width * extent.height);
4180 static deUint32 calcNumVertices (const VkExtent3D& extent)
4183 return (calcNumPixels(extent) * 3u);
4186 static VkDeviceSize calcVertexBufferSize (const VkExtent3D& extent)
4188 return calcNumVertices(extent) * sizeof(ManyDrawsVertex);
4218 imageExtent, // VkExtent3D extent;
4238 imageExtent, // VkExtent3D extent;