Make SkGraphics::Term a no-op, stop calling it.
I'd remove it entirely but Android is calling it explicitly. BUG=skia:4259 Review URL: https://codereview.chromium.org/1329853005
This commit is contained in:
parent
87a5c9fa0f
commit
925979f733
@ -67,6 +67,5 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
w.show();
|
||||
int result = a.exec();
|
||||
SkGraphics::Term();
|
||||
return result;
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ void application_init() {
|
||||
|
||||
void application_term() {
|
||||
SkEvent::Term();
|
||||
SkGraphics::Term();
|
||||
}
|
||||
|
||||
HelloWorldWindow::HelloWorldWindow(void* hwnd)
|
||||
|
@ -69,7 +69,7 @@ protected:
|
||||
// SkRect r = {50, 50, 80, 80};
|
||||
p.setColor(0xAA11EEAA);
|
||||
// canvas->drawRect(r, p);
|
||||
|
||||
|
||||
SkRect result;
|
||||
SkPath path;
|
||||
path.moveTo(0, 0);
|
||||
@ -77,7 +77,7 @@ protected:
|
||||
path.lineTo(1, 8);
|
||||
path.lineTo(0, 9);
|
||||
SkASSERT(path.hasRectangularInterior(&result));
|
||||
|
||||
|
||||
path.reset();
|
||||
path.addRect(10, 10, 100, 100, SkPath::kCW_Direction);
|
||||
path.addRect(20, 20, 50, 50, SkPath::kCW_Direction);
|
||||
@ -94,7 +94,7 @@ protected:
|
||||
|
||||
}
|
||||
private:
|
||||
typedef SkView INHERITED;
|
||||
typedef SkView INHERITED;
|
||||
};
|
||||
|
||||
void application_init();
|
||||
@ -194,12 +194,12 @@ class PathCanvas : public SkCanvas {
|
||||
path.hasRectangularInterior(©);
|
||||
SkDebugf("</div>\n\n");
|
||||
}
|
||||
|
||||
|
||||
virtual void drawPosTextH(const void* text, size_t byteLength,
|
||||
const SkScalar xpos[], SkScalar constY,
|
||||
const SkPaint& paint) {
|
||||
}
|
||||
|
||||
|
||||
public:
|
||||
void divName(const SkString& str, bool only) {
|
||||
filename = str;
|
||||
@ -211,14 +211,14 @@ public:
|
||||
count = 0;
|
||||
nameonly = only;
|
||||
}
|
||||
|
||||
|
||||
void init() {
|
||||
pointsMin = verbsMin = SK_MaxS32;
|
||||
pointsMax = verbsMax = SK_MinS32;
|
||||
rectPointsMin = rectVerbsMin = SK_MaxS32;
|
||||
rectPointsMax = rectVerbsMax = SK_MinS32;
|
||||
}
|
||||
|
||||
|
||||
SkString filename;
|
||||
int count;
|
||||
bool nameonly;
|
||||
@ -279,7 +279,6 @@ void application_init() {
|
||||
}
|
||||
|
||||
void application_term() {
|
||||
SkGraphics::Term();
|
||||
SkEvent::Term();
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,10 @@
|
||||
/*
|
||||
* Copyright 2015 Google Inc.
|
||||
*
|
||||
* Use of this source code is governed by a BSD-style license that can be
|
||||
* found in the LICENSE file.
|
||||
*/
|
||||
|
||||
#include "SkApplication.h"
|
||||
#import "SkCanvas.h"
|
||||
#import "SkPaint.h"
|
||||
@ -26,7 +33,7 @@ protected:
|
||||
canvas->drawRect(r, p);
|
||||
}
|
||||
private:
|
||||
typedef SkView INHERITED;
|
||||
typedef SkView INHERITED;
|
||||
};
|
||||
|
||||
void application_init() {
|
||||
@ -35,7 +42,6 @@ void application_init() {
|
||||
}
|
||||
|
||||
void application_term() {
|
||||
SkGraphics::Term();
|
||||
SkEvent::Term();
|
||||
}
|
||||
|
||||
|
@ -40,7 +40,6 @@ void application_init() {
|
||||
|
||||
void application_term() {
|
||||
SkEvent::Term();
|
||||
SkGraphics::Term();
|
||||
}
|
||||
|
||||
SkV8ExampleWindow::SkV8ExampleWindow(void* hwnd, JsContext* context)
|
||||
|
@ -23,10 +23,8 @@ public:
|
||||
*/
|
||||
static void Init();
|
||||
|
||||
/**
|
||||
* Call this to release any memory held privately, such as the font cache.
|
||||
*/
|
||||
static void Term();
|
||||
SK_ATTR_DEPRECATED("SkGraphics::Term() is a no-op. We're in the middle of cleaning it up.")
|
||||
static void Term() {}
|
||||
|
||||
/**
|
||||
* Return the version numbers for the library. If the parameter is not
|
||||
@ -169,9 +167,6 @@ public:
|
||||
SkAutoGraphics() {
|
||||
SkGraphics::Init();
|
||||
}
|
||||
~SkAutoGraphics() {
|
||||
SkGraphics::Term();
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -289,7 +289,7 @@ public:
|
||||
SkFilterQuality getFilterQuality() const {
|
||||
return (SkFilterQuality)fBitfields.fFilterQuality;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set the filter quality. This affects the quality (and performance) of
|
||||
* drawing scaled images.
|
||||
@ -1046,8 +1046,6 @@ private:
|
||||
*/
|
||||
SkColor computeLuminanceColor() const;
|
||||
|
||||
static void Term();
|
||||
|
||||
enum {
|
||||
/* This is the size we use when we ask for a glyph's path. We then
|
||||
* post-transform it as we draw to match the request.
|
||||
@ -1090,7 +1088,6 @@ private:
|
||||
friend class SkAutoGlyphCacheNoGamma;
|
||||
friend class SkCanvas;
|
||||
friend class SkDraw;
|
||||
friend class SkGraphics; // So Term() can be called.
|
||||
friend class SkPDFDevice;
|
||||
friend class GrBitmapTextContext;
|
||||
friend class GrAtlasTextContext;
|
||||
|
@ -223,7 +223,7 @@ public:
|
||||
*/
|
||||
static void Init();
|
||||
/** Global cleanup function for the SkEvent system. Should be called exactly once after
|
||||
all event methods have been called, and should be called before calling SkGraphics::Term().
|
||||
all event methods have been called.
|
||||
*/
|
||||
static void Term();
|
||||
|
||||
|
@ -2397,5 +2397,4 @@ void application_init() {
|
||||
|
||||
void application_term() {
|
||||
SkEvent::Term();
|
||||
SkGraphics::Term();
|
||||
}
|
||||
|
@ -58,12 +58,6 @@ void SkGraphics::Init() {
|
||||
#endif
|
||||
}
|
||||
|
||||
void SkGraphics::Term() {
|
||||
PurgeFontCache();
|
||||
PurgeResourceCache();
|
||||
SkPaint::Term();
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void SkGraphics::DumpMemoryStatistics(SkTraceMemoryDump* dump) {
|
||||
|
@ -1525,18 +1525,6 @@ static const SkMaskGamma& cachedMaskGamma(SkScalar contrast, SkScalar paintGamma
|
||||
return *gMaskGamma;
|
||||
}
|
||||
|
||||
/*static*/ void SkPaint::Term() {
|
||||
SkAutoMutexAcquire ama(gMaskGammaCacheMutex);
|
||||
|
||||
SkSafeUnref(gLinearMaskGamma);
|
||||
gLinearMaskGamma = nullptr;
|
||||
SkSafeUnref(gMaskGamma);
|
||||
gMaskGamma = nullptr;
|
||||
SkDEBUGCODE(gContrast = SK_ScalarMin;)
|
||||
SkDEBUGCODE(gPaintGamma = SK_ScalarMin;)
|
||||
SkDEBUGCODE(gDeviceGamma = SK_ScalarMin;)
|
||||
}
|
||||
|
||||
/**
|
||||
* We ensure that the rec is self-consistent and efficient (where possible)
|
||||
*/
|
||||
|
@ -1102,7 +1102,6 @@ int tool_main(int argc, char** argv) {
|
||||
test->run();
|
||||
}
|
||||
}
|
||||
SkGraphics::Term();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -114,7 +114,6 @@ void application_init() {
|
||||
|
||||
void application_term() {
|
||||
SkEvent::Term();
|
||||
SkGraphics::Term();
|
||||
}
|
||||
|
||||
SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) {
|
||||
|
@ -794,7 +794,6 @@ int tool_main(int argc, char** argv) {
|
||||
SkDebugf("opt %d: %d\n", opt, gOptTable[opt].fNumTimesApplied);
|
||||
}
|
||||
|
||||
SkGraphics::Term();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -96,5 +96,4 @@ void application_init() {
|
||||
void application_term();
|
||||
void application_term() {
|
||||
SkEvent::Term();
|
||||
SkGraphics::Term();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user