I'm learning glsl shading and I've come across different file formats. I've seen people giving their vertex and fragment shaders .vert and .frag extensions. But I've also seen .vsh and .fsh extensions, and even both shaders together in a single .glsl file. So I'm wondering if there is a standard file format, or which way is the 'correct' one?
|
There is no standard file extension for GLSL shaders. The most common ones are probably |
|||
|
|
|
Identifying file type by extension is a thing specific to Windows. All other operating systems use different approaches: MacOS X stores the file type in a special metadata structure in the file system entries. Most *nixes identify files by testing their internal structure against a database of known "magic bytes"; however text editors use the extension. Anyway, GLSL sources are just like any other program source file: plain text, and that's their file type. The extension you may choose as you wish. I use the following naming:
but that's my choice and technically my programs don't even enforce any naming or extension scheme. The naming is for humans to read and know what's in it; having a common major extension requires me to have an syntax highlighing rule for only one file extension set. |
|||||
|
.glslvand.glslfwhen choosing syntax highlighting. That's the only place I've seen where it matters. – Banthar Jun 21 '11 at 22:44