2d58e13c57
[SVN r60818]
9 lines
285 B
Plaintext
9 lines
285 B
Plaintext
// This example recognizes two additional preprocessor directives (as defined
|
|
// in GLSL - OpenGL Shader Language).
|
|
|
|
#version 150 core
|
|
#extension all : require // trailing comment
|
|
|
|
// the following directive is not supported, so it will trigger an exception
|
|
#not_supported_directive
|