Add support for 16 bit floating point textures.

This commit is contained in:
Paul Chote
2021-04-23 22:38:11 +01:00
committed by reaperrr
parent 95f5d162ef
commit bb15bd20c0
4 changed files with 45 additions and 0 deletions

View File

@@ -125,6 +125,7 @@ namespace OpenRA
{
void SetData(uint[,] colors);
void SetData(byte[] colors, int width, int height);
void SetFloatData(float[] data, int width, int height);
byte[] GetData();
Size Size { get; }
TextureScaleFilter ScaleFilter { get; set; }