diff options
author | Eduardo Lima Mitev <[email protected]> | 2015-07-01 16:10:49 +0200 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-08-03 09:40:47 -0700 |
commit | f7152525374015594e037fa11bb64e1c7174829b (patch) | |
tree | 12b8e00c93d33956f9f5461a8b62b89e39b3fe68 /src/mesa/drivers/dri/i965/brw_nir.c | |
parent | a5a3287f7392356386aa305c791d94b6d5dde6cc (diff) |
i965/nir/vec4: Implement load_const intrinsic
Similar to fs_nir backend, a nir_local_values map will be filled with
newly allocated registers as the load_const instrinsic instructions are
processed. Later, get_nir_src() will fetch the registers from this map
for sources that are ssa.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_nir.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c index d81d82323bb..a4b65d24e27 100644 --- a/src/mesa/drivers/dri/i965/brw_nir.c +++ b/src/mesa/drivers/dri/i965/brw_nir.c @@ -165,7 +165,7 @@ brw_create_nir(struct brw_context *brw, nir_print_shader(nir, stderr); } - nir_convert_from_ssa(nir, true); + nir_convert_from_ssa(nir, is_scalar); nir_validate_shader(nir); /* This is the last pass we run before we start emitting stuff. It |