Merge "Fix some compiler warnings in libpixelflinger."
This commit is contained in:
commit
5643f80947
2 changed files with 5 additions and 5 deletions
|
@ -234,7 +234,7 @@ enum {
|
|||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class needs_filter_t;
|
||||
struct needs_filter_t;
|
||||
struct needs_t {
|
||||
inline int match(const needs_filter_t& filter);
|
||||
inline bool operator == (const needs_t& rhs) const {
|
||||
|
|
|
@ -563,10 +563,10 @@ void trianglex_small(void* con,
|
|||
|
||||
c->init_y(c, miny);
|
||||
for (int32_t y = miny; y < maxy; y++) {
|
||||
register int32_t ex0 = ey0;
|
||||
register int32_t ex1 = ey1;
|
||||
register int32_t ex2 = ey2;
|
||||
register int32_t xl, xr;
|
||||
int32_t ex0 = ey0;
|
||||
int32_t ex1 = ey1;
|
||||
int32_t ex2 = ey2;
|
||||
int32_t xl, xr;
|
||||
for (xl=minx ; xl<maxx ; xl++) {
|
||||
if (ex0>0 && ex1>0 && ex2>0)
|
||||
break; // all strictly positive
|
||||
|
|
Loading…
Reference in a new issue