Home
last modified time | relevance | path

Searched refs:sampleLocations (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/gpu/vk/
DGrVkPipeline.cpp300 VkPipelineSampleLocationsStateCreateInfoEXT* sampleLocations) { in setup_all_sample_locations_at_pixel_center() argument
304 memset(sampleLocations, 0, sizeof(VkPipelineSampleLocationsStateCreateInfoEXT)); in setup_all_sample_locations_at_pixel_center()
305 sampleLocations->sType = VK_STRUCTURE_TYPE_PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT; in setup_all_sample_locations_at_pixel_center()
306 sampleLocations->pNext = nullptr; in setup_all_sample_locations_at_pixel_center()
307 sampleLocations->sampleLocationsEnable = VK_TRUE; in setup_all_sample_locations_at_pixel_center()
308 sampleLocations->sampleLocationsInfo.sType = VK_STRUCTURE_TYPE_SAMPLE_LOCATIONS_INFO_EXT; in setup_all_sample_locations_at_pixel_center()
309 sampleLocations->sampleLocationsInfo.pNext = nullptr; in setup_all_sample_locations_at_pixel_center()
312 &sampleLocations->sampleLocationsInfo.sampleLocationsPerPixel)); in setup_all_sample_locations_at_pixel_center()
313 sampleLocations->sampleLocationsInfo.sampleLocationGridSize.width = 1; in setup_all_sample_locations_at_pixel_center()
314 sampleLocations->sampleLocationsInfo.sampleLocationGridSize.height = 1; in setup_all_sample_locations_at_pixel_center()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSampleLocationsUtil.hpp68 …const vk::VkSampleLocationEXT* sampleLocations (void) const { return dataOrNullPtr(m_sampleLocati… in sampleLocations() function in vkt::pipeline::MultisamplePixelGrid
69 vk::VkSampleLocationEXT* sampleLocations (void) { return dataOrNullPtr(m_sampleLocations); } in sampleLocations() function in vkt::pipeline::MultisamplePixelGrid
95 pixelGrid.sampleLocations(), // const VkSampleLocationEXT* pSampleLocations; in makeSampleLocationsInfo()
DvktPipelineMultisampleMixedAttachmentSamplesTests.cpp571 const std::vector<Vec2>& sampleLocations) in generateSubpixelTriangles() argument
585 DE_ASSERT(compareData.size() == sampleLocations.size()); in generateSubpixelTriangles()
587 for (std::size_t globalSampleNdx = 0; globalSampleNdx < sampleLocations.size(); ++globalSampleNdx) in generateSubpixelTriangles()
589 const Vec2& loc = sampleLocations[globalSampleNdx]; in generateSubpixelTriangles()
/external/deqp/external/vulkancts/modules/vulkan/fragment_shading_rate/
DvktFragmentShadingRateBasic.cpp95 bool sampleLocations; member
202 …if (m_data.sampleLocations && !m_context.getFragmentShadingRateProperties().fragmentShadingRateWit… in Force1x1()
287 if (m_data.sampleLocations) in checkSupport()
1649 std::vector<VkSampleLocationEXT> sampleLocations(m_data.samples, { 0.5f, 0.5f }); in iterate() local
1657 &sampleLocations[0], // const VkSampleLocationEXT* pSampleLocations; in iterate()
1671 m_data.sampleLocations ? &pipelineSampleLocationsCreateInfo : DE_NULL, // const void* pNext in iterate()
2300 …(m_data.sampleLocations && m_context.getFragmentShadingRateProperties().fragmentShadingRateWithCus… in iterate()
2478 bool sampleLocations = groupNdx == 13; in createBasicTests() local
2537 sampleLocations, // bool sampleLocations; in createBasicTests()
/external/vulkan-validation-layers/tests/
Dvklayertests_pipeline_shader.cpp1394 auto sampleLocations = chain_util::Init<VkPipelineSampleLocationsStateCreateInfoEXT>(); in TEST_F() local
1395 sampleLocations.sampleLocationsInfo.sType = VK_STRUCTURE_TYPE_SAMPLE_LOCATIONS_INFO_EXT; in TEST_F()
1400 chain.Add(VK_EXT_SAMPLE_LOCATIONS_EXTENSION_NAME, sampleLocations); in TEST_F()