@@ -239,38 +239,38 @@ void IAssetManager::insertBuiltinAssets()
239
239
};
240
240
auto fileSystem = getSystem ();
241
241
242
- buildInGLSLShader (fileSystem->loadBuiltinData <typename NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/specialized_shader/fullscreentriangle.vert" )>(),
242
+ buildInGLSLShader (fileSystem->loadBuiltinData <NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/specialized_shader/fullscreentriangle.vert" )>(),
243
243
asset::IShader::ESS_VERTEX,
244
244
{
245
245
" nbl/builtin/specialized_shader/fullscreentriangle.vert"
246
246
});
247
- buildInGLSLShader (fileSystem->loadBuiltinData <typename NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/lambertian/singletexture/specialized_shader.vert" )>(),
247
+ buildInGLSLShader (fileSystem->loadBuiltinData <NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/lambertian/singletexture/specialized_shader.vert" )>(),
248
248
asset::IShader::ESS_VERTEX,
249
249
{
250
250
" nbl/builtin/material/lambertian/singletexture/specialized_shader.vert" ,
251
251
" nbl/builtin/material/debug/vertex_uv/specialized_shader.vert"
252
252
});
253
- buildInGLSLShader (fileSystem->loadBuiltinData <typename NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/lambertian/singletexture/specialized_shader.frag" )>(), // it somehow adds an extra "tt" raw string to the end of the returned value, beware
253
+ buildInGLSLShader (fileSystem->loadBuiltinData <NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/lambertian/singletexture/specialized_shader.frag" )>(), // it somehow adds an extra "tt" raw string to the end of the returned value, beware
254
254
asset::IShader::ESS_FRAGMENT,
255
255
{
256
256
" nbl/builtin/material/lambertian/singletexture/specialized_shader.frag"
257
257
});
258
258
259
- buildInGLSLShader (fileSystem->loadBuiltinData <typename NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_normal/specialized_shader.vert" )>(),
259
+ buildInGLSLShader (fileSystem->loadBuiltinData <NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_normal/specialized_shader.vert" )>(),
260
260
asset::IShader::ESS_VERTEX,
261
261
{
262
262
" nbl/builtin/material/debug/vertex_normal/specialized_shader.vert" });
263
- buildInGLSLShader (fileSystem->loadBuiltinData <typename NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_color/specialized_shader.vert" )>(),
263
+ buildInGLSLShader (fileSystem->loadBuiltinData <NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_color/specialized_shader.vert" )>(),
264
264
asset::IShader::ESS_VERTEX,
265
265
{
266
266
" nbl/builtin/material/debug/vertex_color/specialized_shader.vert"
267
267
});
268
- buildInGLSLShader (fileSystem->loadBuiltinData <typename NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_uv/specialized_shader.frag" )>(),
268
+ buildInGLSLShader (fileSystem->loadBuiltinData <NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_uv/specialized_shader.frag" )>(),
269
269
asset::IShader::ESS_FRAGMENT,
270
270
{
271
271
" nbl/builtin/material/debug/vertex_uv/specialized_shader.frag"
272
272
});
273
- buildInGLSLShader (fileSystem->loadBuiltinData <typename NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_normal/specialized_shader.frag" )>(),
273
+ buildInGLSLShader (fileSystem->loadBuiltinData <NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" nbl/builtin/material/debug/vertex_normal/specialized_shader.frag" )>(),
274
274
asset::IShader::ESS_FRAGMENT,
275
275
{
276
276
" nbl/builtin/material/debug/vertex_normal/specialized_shader.frag" ,
0 commit comments