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:
parent
93a791d5de
commit
fa510413c1
@ -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,
|
||||
|
@ -15,8 +15,8 @@
|
||||
|
||||
GrPathRendererChain::GrPathRendererChain(GrContext* context, UsageFlags flags)
|
||||
: fInit(false)
|
||||
, fOwner(context)
|
||||
, fFlags(flags)
|
||||
, fOwner(context)
|
||||
, fChain(fStorage.get(), kPreAllocCount) {
|
||||
fInit = false;
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ private:
|
||||
|
||||
class SampleView : public SkView {
|
||||
public:
|
||||
SampleView() : fBGColor(SK_ColorWHITE), fRepeatCount(1) {
|
||||
SampleView() : fRepeatCount(1), fBGColor(SK_ColorWHITE) {
|
||||
fUsePipe = false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user