Merge pull request #7811 from reaperrr/new-blendmodes1

Added two new BlendModes
This commit is contained in:
Paul Chote
2015-04-03 10:57:12 +01:00
5 changed files with 56 additions and 32 deletions

View File

@@ -34,7 +34,18 @@ namespace OpenRA
public interface IHardwareCursor : IDisposable { }
public enum BlendMode : byte { None, Alpha, Additive, Subtractive, Multiply }
public enum BlendMode : byte
{
None,
Alpha,
Additive,
Subtractive,
Multiply,
SoftAdditive,
Translucency25,
Translucency50,
Translucency75
}
public interface IGraphicsDevice : IDisposable
{