From 3d1ac996d0c8da67a68bd3e43eef390247163318 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Mon, 3 May 2021 15:34:41 -0500 Subject: [PATCH] intel/vec4: Add some asserts to move_push_to_pull Reviewed-by: Kenneth Graunke Part-of: --- src/intel/compiler/brw_vec4.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/intel/compiler/brw_vec4.cpp b/src/intel/compiler/brw_vec4.cpp index 0ce9aef4c2a..8cf74f526fa 100644 --- a/src/intel/compiler/brw_vec4.cpp +++ b/src/intel/compiler/brw_vec4.cpp @@ -929,6 +929,9 @@ vec4_visitor::move_push_constants_to_pull_constants() if (this->uniforms * 4 <= max_uniform_components) return; + assert(compiler->supports_pull_constants); + assert(compiler->compact_params); + /* Make some sort of choice as to which uniforms get sent to pull * constants. We could potentially do something clever here like * look for the most infrequently used uniform vec4s, but leave