| | Name | Description |
|---|
  | Create1x1RawImageData(Color3) |
Create a RawImageData with data array filled with a single pixel from the specified color.
|
  | Create1x1RawImageData(Color4) |
Create a RawImageData with data array filled with a single pixel from the specified color.
|
  | Create1x1Texture(VulkanDevice, Color3, String) |
Create a 1x1 texture filled with the specified color.
|
  | Create1x1Texture(VulkanDevice, Color4, String) |
Create a 1x1 texture filled with the specified color.
|
  | CreateGradientColors(Color3, Color3, Int32) |
Returns an array with arraySize colors that represent a color gradient between two specified colors.
|
  | CreateGradientColors(GradientStop, Int32, Boolean) |
Returns an array with arraySize colors that represent a color gradient that is defined by the specified gradientStops.
|
  | CreateGradientColors(Color4, Color4, Int32, Boolean) |
Returns an array with arraySize colors that represent a color gradient between two specified colors.
|
  | CreateGradientRawImageData(Color3, Color3, Int32, Boolean) |
Create a RawImageData with data array filled with color gradient between the two specified colors.
|
  | CreateGradientRawImageData(Color4, Color4, Int32, Boolean) |
Create a RawImageData with data array filled with color gradient between the two specified colors.
|
  | CreateGradientRawImageData(GradientStop, Int32, Boolean, Boolean) |
Create a RawImageData with data array filled with color gradient defined by the given array of gradient stops.
|
  | CreateGradientTexture(VulkanDevice, Color3, Color3, Int32, Boolean, String) |
Create a texture with color gradient between two specified colors.
|
  | CreateGradientTexture(VulkanDevice, Color4, Color4, Int32, Boolean, String) |
Create a texture with color gradient between the two specified colors.
|
  | CreateGradientTexture(VulkanDevice, GradientStop, Int32, Boolean, Boolean, String) |
Create a texture with color gradient defined by the given array of gradient stops.
|
  | CreateHeightRawImageData(Single, GradientStop, Boolean) |
Create a RawImageData with data array filled with colors from the height data and specified gradient stops.
|
  | CreateHeightRawImageData(Single, Single, Single, GradientStop, Boolean) |
Create a RawImageData with data array filled with colors from the height data and specified gradient stops.
|
  | CreateHeightTexture(VulkanDevice, Single, GradientStop, Boolean, String) |
Create a texture from the height data and specified gradient stops.
|
  | CreateHeightTexture(VulkanDevice, Single, Single, Single, GradientStop, Boolean, String) |
Create a texture from the height data and specified gradient stops.
|
  | GetGradientColor |
Compute the interpolated color for the specified value and the given list of gradient stops.
If the value is lower than the offset of
the first entry, the first color is returned. If the value is higher than the offset of the last entry,
the last color is returned. Otherwise, the interpolated color between two corresponding entries is returned.
|