public SubpassSampleLocationsEXT
 (
     uint subpassIndex = default,
     SampleLocationsInfoEXT sampleLocationsInfo = default
 )
 {
     SubpassIndex        = subpassIndex;
     SampleLocationsInfo = sampleLocationsInfo;
 }
Exemplo n.º 2
0
 public AttachmentSampleLocationsEXT
 (
     uint attachmentIndex = default,
     SampleLocationsInfoEXT sampleLocationsInfo = default
 )
 {
     AttachmentIndex     = attachmentIndex;
     SampleLocationsInfo = sampleLocationsInfo;
 }
Exemplo n.º 3
0
 public PipelineSampleLocationsStateCreateInfoEXT
 (
     StructureType sType          = StructureType.PipelineSampleLocationsStateCreateInfoExt,
     void *pNext                  = default,
     Bool32 sampleLocationsEnable = default,
     SampleLocationsInfoEXT sampleLocationsInfo = default
 )
 {
     SType = sType;
     PNext = pNext;
     SampleLocationsEnable = sampleLocationsEnable;
     SampleLocationsInfo   = sampleLocationsInfo;
 }