Checkpoint some work on useLogicalIO mode for converter, and going through a BIL
conversion in the compile method. That'll change soon to consume BIL directly
instead of converting it from glsl.
This is disabled for the moment pending figuring out the varying output count
problem.
Conflicts:
icd/intel/CMakeLists.txt
icd/intel/compiler/shader/compiler_interface.cpp
diff --git a/icd/intel/cmd_pipeline.c b/icd/intel/cmd_pipeline.c
index ccf2387..9e66cae 100644
--- a/icd/intel/cmd_pipeline.c
+++ b/icd/intel/cmd_pipeline.c
@@ -456,6 +456,7 @@
assert(vs->out_count >= 2);
attr_skip = 2;
attr_count = vs->out_count - attr_skip;
+ printf("%d %d\n", fs->in_count, attr_count);
assert(fs->in_count == attr_count);
assert(fs->in_count <= 32);