Add warning if some required extensions are missing

This commit is contained in:
baldurk
2018-12-19 15:57:12 +00:00
parent 96b881dbd7
commit 11237585f2
+2
View File
@@ -793,6 +793,8 @@ void GLReplay::InitDebugData()
if(!HasExt[ARB_shader_image_load_store] || !HasExt[ARB_compute_shader])
{
RDCWARN(
"Don't have shader image load/store or compute shaders, functionality will be degraded.");
m_Degraded = true;
}
}