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-11-15 05:46:08 +00:00
|
|
|
|
2011-11-15 12:11:24 +00:00
|
|
|
namespace StockShaderCodeGenerator
|
2011-11-15 05:46:08 +00:00
|
|
|
{
|
2012-08-16 14:03:31 +00:00
|
|
|
public struct Shader
|
|
|
|
{
|
|
|
|
public string Type;
|
|
|
|
public string Source;
|
|
|
|
public string RenderSystem;
|
|
|
|
public bool ShaderCompiled;
|
|
|
|
public byte[] ByteCode;
|
|
|
|
}
|
2011-11-15 05:46:08 +00:00
|
|
|
}
|