Add GLSL syntax highlighting

This commit is contained in:
baldurk
2015-02-09 18:14:20 +00:00
parent 8ccf071865
commit 72cfee5c0f
10 changed files with 223 additions and 109 deletions
+8
View File
@@ -488,6 +488,14 @@ namespace renderdoc
{
public APIPipelineStateType pipelineType;
public bool degraded;
public string ShaderExtension
{
get
{
return pipelineType == APIPipelineStateType.D3D11 ? ".hlsl" : ".glsl";
}
}
};
[StructLayout(LayoutKind.Sequential)]