summaryrefslogtreecommitdiff
path: root/tests/spec/arb_shading_language_include/compile/path_not_in_directive.frag
blob: 3c8798e0942cfcb0ca379cfd9ab29c4bf402c9c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// [config]
// expect_result: fail
// glsl_version: 1.10
// require_extensions: GL_ARB_shading_language_include
// [end config]
//
// GLSL doesn't have string literals, GL_ARB_shading_language_include
// does add notion of path but it only has meaning with #line and #include

#extension GL_ARB_shading_language_include: enable

void main() {
	int i = "1";
}