Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mesa
mesa
Commits
35600279
Commit
35600279
authored
Oct 15, 2011
by
Brian Paul
Browse files
i965: silence signed/unsigned comparison warning
Reviewed-by:
Paul Berry
<
stereotype441@gmail.com
>
parent
d89c6689
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
View file @
35600279
...
...
@@ -1549,7 +1549,8 @@ vec4_visitor::try_rewrite_rhs_to_dst(ir_assignment *ir,
* potentially reswizzle the operands of many instructions so that
* we could handle out of order channels, but don't yet.
*/
for
(
int
i
=
0
;
i
<
4
;
i
++
)
{
for
(
unsigned
i
=
0
;
i
<
4
;
i
++
)
{
if
(
dst
.
writemask
&
(
1
<<
i
))
{
if
(
!
(
last_rhs_inst
->
dst
.
writemask
&
(
1
<<
i
)))
return
false
;
...
...
Bugzilla Migration User
@bugzilla-migration
mentioned in issue
#401
·
Sep 18, 2019
mentioned in issue
#401
mentioned in issue #401
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment