Experimental revert of 2170 to see if the buildbot issues are somehow related.

git-svn-id: http://skia.googlecode.com/svn/trunk@2178 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
tomhudson@google.com 2011-08-26 13:19:39 +00:00
parent 93a791d5de
commit fa510413c1
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public:
int offset = 0;
int frameBound = 0;
size_t bytesRead;
while (static_cast<unsigned>(offset) < size) {
while (offset < size) {
SkGPipeReader::Status s = dumpReader->playback(data + offset,
size - offset,
&bytesRead,

View File

@ -15,8 +15,8 @@
GrPathRendererChain::GrPathRendererChain(GrContext* context, UsageFlags flags)
: fInit(false)
, fOwner(context)
, fFlags(flags)
, fOwner(context)
, fChain(fStorage.get(), kPreAllocCount) {
fInit = false;
}

View File

@ -61,7 +61,7 @@ private:
class SampleView : public SkView {
public:
SampleView() : fBGColor(SK_ColorWHITE), fRepeatCount(1) {
SampleView() : fRepeatCount(1), fBGColor(SK_ColorWHITE) {
fUsePipe = false;
}