radeonsi: don't fail in si_shader_io_get_unique_index

Trivial. Picked from my tessellation branch.
This commit is contained in:
Marek Olšák
2015-06-25 14:58:37 +02:00
parent c97105ee12
commit 101a73846b
+6 -2
View File
@@ -133,8 +133,12 @@ unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index)
return 4 + index;
default:
assert(0);
return 63;
/* Don't fail here. The result of this function is only used
* for LS, TCS, TES, and GS, where legacy GL semantics can't
* occur, but this function is called for all vertex shaders
* before it's known whether LS will be compiled or not.
*/
return 0;
}
}