diff --git a/examples/06-bump/fs_bump.sc b/examples/06-bump/fs_bump.sc index 03038f93b..3b07e9d85 100644 --- a/examples/06-bump/fs_bump.sc +++ b/examples/06-bump/fs_bump.sc @@ -55,7 +55,7 @@ vec3 calcLight(int _idx, mat3 _tbn, vec3 _wpos, vec3 _normal, vec3 _view) mat3 mtx3FromCols(vec3 c0, vec3 c1, vec3 c2) { -#ifdef BGFX_SHADER_LANGUAGE_GLSL +#if BGFX_SHADER_LANGUAGE_GLSL return mat3(c0, c1, c2); #else return transpose(mat3(c0, c1, c2));