Skip to content

Commit

Permalink
app_server: fix gcc4 build
Browse files Browse the repository at this point in the history
  • Loading branch information
juafromspace committed Nov 18, 2015
1 parent 718f352 commit b0f4e51
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -267,7 +267,7 @@ struct BilinearDefault :

uint32 t[4];

if (fSource->height() > 1) {
if (this->fSource->height() > 1) {
ColorType::Interpolate(&t[0], s, this->fSourceBytesPerRow,
wLeft, wTop, wRight, wBottom);
} else {
Expand All @@ -276,7 +276,7 @@ struct BilinearDefault :
DrawMode::Blend(d, &t[0]);
}
// last column of pixels if necessary
if (xIndexMax < xIndexR && fSource->height() > 1) {
if (xIndexMax < xIndexR && this->fSource->height() > 1) {
const uint8* s = src + this->fWeightsX[xIndexR].index;
const uint8* sBottom = s + this->fSourceBytesPerRow;

Expand Down

0 comments on commit b0f4e51

Please sign in to comment.