iris: add gen11 to genX_call

This commit is contained in:
Kenneth Graunke 2018-10-08 06:26:15 -07:00
parent 0fdcb20803
commit 65d1cda995
1 changed files with 3 additions and 0 deletions

View File

@ -137,6 +137,9 @@ iris_destroy_context(struct pipe_context *ctx)
#define genX_call(devinfo, func, ...) \
switch (devinfo->gen) { \
case 11: \
gen11_##func(__VA_ARGS__); \
break; \
case 10: \
gen10_##func(__VA_ARGS__); \
break; \