GL Shader Validator
适用于Sublime Text 2和3的GLSL和ESSL验证器
详细资料
安装次数
- 总数 6K
- Win 4K
- Mac 2K
- Linux 822
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Mac | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
GL Shader Validator
这是一个通过ANGLE的预处理程序/编译器将GLSL / ESSL传递给Sublime Text 2 / 3的插件。ANGLE发现的任何错误都会返回到Sublime,并在着色器中突出显示令牌,以便您方便地调试。要查看错误详情,请检查Sublime视图左下角的状态消息。
安装
您可以通过Package Control安装GL Shader Validator
如果您希望手动安装,请将此仓库克隆到您的软件包文件夹中(通常在 ~/Library/Application Support/Sublime Text 2/Packages)。
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone git://github.com/WebGLTools/GL-Shader-Validator.git "GL Shader Validator"
如果您在使用Windows 7,并且已经安装了Git,路径看起来将类似这样
cd c:\users\YOUR_ACCOUNT\AppData\Roaming\Sublime Text 2\Packages
git clone git://github.com/WebGLTools/GL-Shader-Validator.git "GL Shader Validator"
如果您使用Sublime Text 3,则只需将上面的路径中的 2
更改为 3
,并应设置完成。
用法
假设您已将GLSL / ESSL语法高亮器安装在Sublime中,您只需安装此插件即可,您的着色器代码将被按预期进行验证。
值得一提的是,ANGLE期望顶点着色器文件的扩展名为 .vert
,而片段着色器的扩展名为 .frag
。如果您的文件没有使用该扩展名,那么ANGLE(以及该插件)将无法验证您的着色器。后果将令人遗憾。
您可以在设置中设置默认规格:“首选项 > 软件包设置 > GL Shader Validator > 设置 - 默认
This can be overridden in a specific shader by adding comments:
`/* spec: webgl */` for WebGL,
`/* spec: es2 */` for OpenGL ES 2.0 or
`/* spec: css */ ` for Custom Filters / CSS Shaders
## Permissions
This plugin requires use of a command line utility called essl_to_glsl, which is bundled with the plugin. By default,
however, the utility will not have execute permissions. The plugin will attempt to enable those permissions automatically when it loads, but
should that fail you will receive the following error message:
> GLShaderValidator: permission denied to use essl_to_glsl command
In such instances you should enable execute permissions yourself:
cd ~/Library/Application Support/Sublime Text 2/Packages/GL\ Shader\ Validator chmod +x essl_to_glsl
## Settings
You can modify the settings file (`GLShaderValidator.sublime-settings`) inside
the plugin folder. You will find the documentation for the settings in
that file. There aren't many of those right now, but if you want more let us
know via the repo's Issues.
## Credits
* [Paul Lewis](http://aerotwist.com)
* [Brendan Kenny](http://extremelysatisfactorytotalitarianism.com/)