2011-12-05 19:31:19 +00:00
|
|
|
using System;
|
|
|
|
using ANX.Framework.NonXNA;
|
|
|
|
|
2012-08-09 09:45:04 +00:00
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
2011-12-05 19:31:19 +00:00
|
|
|
|
2012-08-12 20:00:19 +00:00
|
|
|
namespace ANX.RenderSystem.Windows.Metro
|
2011-12-05 19:31:19 +00:00
|
|
|
{
|
2012-08-12 20:00:19 +00:00
|
|
|
public class EffectPass_Metro : INativeEffectPass
|
|
|
|
{
|
|
|
|
//private EffectPass nativePass;
|
2011-12-05 19:31:19 +00:00
|
|
|
|
2012-08-12 20:00:19 +00:00
|
|
|
//public EffectPass NativePass
|
|
|
|
//{
|
|
|
|
// get
|
|
|
|
// {
|
|
|
|
// return this.nativePass;
|
|
|
|
// }
|
|
|
|
// internal set
|
|
|
|
// {
|
|
|
|
// this.nativePass = value;
|
|
|
|
// }
|
|
|
|
//}
|
2011-12-05 19:31:19 +00:00
|
|
|
|
2012-08-12 20:00:19 +00:00
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
//return nativePass.Description.Name;
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-12-05 19:31:19 +00:00
|
|
|
}
|