aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/gm.h
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2014-06-09 23:59:03 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-06-09 23:59:03 -0700
commitf539318f0d3dba743ec1886d5d9df0fb1be628a1 (patch)
tree236202e9adfceaf521d1b98bde76c706f8f83960 /gm/gm.h
parent876633087ee3aa591e3d4c7039dfeb3e76bb6cb7 (diff)
Cleanup: Get rid of make_isize() function from gm.h.
This helper function is not necessary. The same thing can be achieved by using SkISize::Make() provided by SkTSize API. BUG=skia:2645 TEST=make dm && out/Debug/dm R=robertphillips@google.com, reed@google.com Author: tfarina@chromium.org Review URL: https://codereview.chromium.org/326523002
Diffstat (limited to 'gm/gm.h')
-rw-r--r--gm/gm.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/gm/gm.h b/gm/gm.h
index a48976b20e..90fe47bd41 100644
--- a/gm/gm.h
+++ b/gm/gm.h
@@ -25,12 +25,6 @@
namespace skiagm {
- static inline SkISize make_isize(int w, int h) {
- SkISize sz;
- sz.set(w, h);
- return sz;
- }
-
class GM {
public:
GM();