Example #1
0
 public VkClearValue(VkClearDepthStencilValue depthStencil)
 {
     raw          = default(VkBlob16);
     DepthStencil = depthStencil;
 }
Example #2
0
 public VkClearValue(VkClearColorValue color)
 {
     raw   = default(VkBlob16);
     Color = color;
 }
Example #3
0
 public VkClearColorValue(VkUintColor4 uint32Color)
 {
     raw    = default(VkBlob16);
     Uint32 = uint32Color;
 }
Example #4
0
 public VkClearColorValue(VkIntColor4 int32Color)
 {
     raw   = default(VkBlob16);
     Int32 = int32Color;
 }
Example #5
0
 public VkClearColorValue(VkColor4 float32Color)
 {
     raw     = default(VkBlob16);
     Float32 = float32Color;
 }
Example #6
0
 public unsafe VkUuid(byte *rawArray)
 {
     Raw = *(VkBlob16 *)rawArray;
 }