Files
Xune/UIX.RenderApi.Skia/Microsoft/Iris/Render/DestinationElement.cs
T

83 lines
3.2 KiB
C#
Raw Normal View History

2021-07-11 22:59:29 -05:00
// Decompiled with JetBrains decompiler
// Type: Microsoft.Iris.Render.DestinationElement
// Assembly: UIX.RenderApi, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
// MVID: D47658B8-A8EA-43D6-8837-ECE823BFFFC1
// Assembly location: C:\Program Files\Zune\UIX.RenderApi.dll
using Microsoft.Iris.Render.Common;
using Microsoft.Iris.Render.Graphics;
using System;
namespace Microsoft.Iris.Render
{
2021-07-11 23:04:40 -05:00
public class DestinationElement : EffectInput
2021-07-11 22:59:29 -05:00
{
2021-07-11 23:04:40 -05:00
internal const string DownsamplePropertyName = "Downsample";
private const string DestinationPropertyName = "Destination";
internal const string UVOffsetPropertyName = "UVOffset";
private float m_flDownsample;
private byte m_nDownsampleID;
private byte m_nDestinationID;
private Vector2 m_UVOffset;
private byte m_nUVOffsetID;
public DestinationElement()
: this(1f)
{
}
public DestinationElement(float flDownsample)
{
2021-07-11 23:07:04 -05:00
Debug2.Validate(flDownsample >= 0.0 && flDownsample <= 1.0, typeof(ArgumentOutOfRangeException), "Valid range for downsample is [0,1]");
2021-07-11 23:04:40 -05:00
this.m_stName = "Destination";
this.m_typeInput = EffectInputType.Destination;
this.m_flDownsample = flDownsample;
}
public float Downsample
{
get => this.m_flDownsample;
set => this.m_flDownsample = value;
}
internal byte DownsampleID => this.m_nDownsampleID;
internal byte DestinationID => this.m_nDestinationID;
public Vector2 UVOffset
{
get => this.m_UVOffset;
set => this.m_UVOffset = value;
}
internal byte UVOffsetID => this.m_nUVOffsetID;
internal override int PreProcessProperties(
Map<string, EffectProperty> dictionary,
ref byte nNextUniqueID)
{
int num = base.PreProcessProperties(dictionary, ref nNextUniqueID);
this.AddEffectProperty(dictionary, "Destination");
this.m_nDestinationID = nNextUniqueID++;
this.AddEffectProperty(dictionary, "Downsample");
this.m_nDownsampleID = nNextUniqueID++;
2021-07-11 23:07:04 -05:00
return num + this.PreProcessProperty(dictionary, "UVOffset", 12, ref this.m_nUVOffsetID, ref nNextUniqueID);
2021-07-11 23:04:40 -05:00
}
internal override bool Process(Map<string, EffectProperty> dictProperties)
{
2021-07-11 23:07:04 -05:00
if (!this.GenerateProperty("Destination", EffectPropertyType.Image, null, this.m_nDestinationID, dictProperties))
2021-07-11 23:04:40 -05:00
return false;
dictProperties[this.GeneratePropertyPath("Destination")].IsDynamic = true;
2021-07-11 23:07:04 -05:00
return this.GenerateProperty("Downsample", EffectPropertyType.Float, m_flDownsample, this.m_nDownsampleID, dictProperties) && this.GenerateProperty("UVOffset", EffectPropertyType.Vector2, m_UVOffset, this.m_nUVOffsetID, dictProperties);
2021-07-11 23:04:40 -05:00
}
internal override void AddCacheKey(ByteBuilder cacheKey)
{
base.AddCacheKey(cacheKey);
this.GeneratePropertyCacheKey("Downsample", this.DownsampleID, this.Downsample, cacheKey);
this.GeneratePropertyCacheKey("UVOffset", this.UVOffsetID, this.UVOffset, cacheKey);
}
2021-07-11 22:59:29 -05:00
}
}