aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrPoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gpu/GrPoint.h')
-rw-r--r--include/gpu/GrPoint.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/include/gpu/GrPoint.h b/include/gpu/GrPoint.h
deleted file mode 100644
index 16738f5243..0000000000
--- a/include/gpu/GrPoint.h
+++ /dev/null
@@ -1,36 +0,0 @@
-
-/*
- * Copyright 2010 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-
-
-#ifndef GrPoint_DEFINED
-#define GrPoint_DEFINED
-
-#include "GrTypes.h"
-#include "SkScalar.h"
-#include "SkPoint.h"
-
-struct GrIPoint16 {
- int16_t fX, fY;
-
- static GrIPoint16 Make(intptr_t x, intptr_t y) {
- GrIPoint16 pt;
- pt.set(x, y);
- return pt;
- }
-
- int16_t x() const { return fX; }
- int16_t y() const { return fY; }
-
- void set(intptr_t x, intptr_t y) {
- fX = SkToS16(x);
- fY = SkToS16(y);
- }
-};
-
-#endif