diff options
author | Jason Ekstrand <[email protected]> | 2015-09-14 15:09:00 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-09-15 11:07:54 -0700 |
commit | f55836f5671de5381a609c8d45601e2a92c803ce (patch) | |
tree | 734adf5c605e09ad75e4dbb9a0468acfce6d9416 /src/mesa/drivers | |
parent | 82007936491d5fb99cdc5ea18c076e8a896a4a1e (diff) |
i965/fs: Set output_components for lowered clip distance outputs
Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index 5cb794b5fd1..cea16e0b325 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -840,7 +840,9 @@ void fs_visitor::compute_clip_distance(gl_clip_plane *clip_planes) const fs_builder abld = bld.annotate("user clip distances"); this->outputs[VARYING_SLOT_CLIP_DIST0] = vgrf(glsl_type::vec4_type); + this->output_components[VARYING_SLOT_CLIP_DIST0] = 4; this->outputs[VARYING_SLOT_CLIP_DIST1] = vgrf(glsl_type::vec4_type); + this->output_components[VARYING_SLOT_CLIP_DIST1] = 4; for (int i = 0; i < key->nr_userclip_plane_consts; i++) { fs_reg u = userplane[i]; |