aboutsummaryrefslogtreecommitdiffhomepage
path: root/obsolete/SkGLDevice_FBO.h
diff options
context:
space:
mode:
authorGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-16 17:16:25 +0000
committerGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-16 17:16:25 +0000
commitf97ef2f98ec77da807483715d3c6dc36e12d9c80 (patch)
tree4491033a4386376ae5618f4f6387269000f2ea3a /obsolete/SkGLDevice_FBO.h
parent022a3e1f3e2bbe76bf2cda6bf63b9d73b6f34c7d (diff)
Delete 'obsolete' directory, most of whose contents have been there more than a year.
git-svn-id: http://skia.googlecode.com/svn/trunk@3416 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'obsolete/SkGLDevice_FBO.h')
-rw-r--r--obsolete/SkGLDevice_FBO.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/obsolete/SkGLDevice_FBO.h b/obsolete/SkGLDevice_FBO.h
deleted file mode 100644
index c4ac6397e4..0000000000
--- a/obsolete/SkGLDevice_FBO.h
+++ /dev/null
@@ -1,30 +0,0 @@
-
-/*
- * Copyright 2011 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-#ifndef SkGLDevice_FBO_DEFINED
-#define SkGLDevice_FBO_DEFINED
-
-#include "SkGLDevice.h"
-
-class SkGLDevice_FBO : public SkGLDevice {
-public:
- SkGLDevice_FBO(const SkBitmap& bitmap, bool offscreen);
- virtual ~SkGLDevice_FBO();
-
- // overrides from SkGLDevice
- virtual void gainFocus(SkCanvas*);
- virtual TexOrientation bindDeviceAsTexture();
-
-private:
- GLuint fFBO;
- GLuint fTextureID;
-
- typedef SkGLDevice INHERITED;
-};
-
-#endif
-