Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: skia/gl/SkGLDevice_FBO.h

Issue 113827: Remove the remainder of the skia source code from the Chromium repo.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/gl/SkGLDevice.cpp ('k') | skia/gl/SkGLDevice_FBO.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef SkGLDevice_FBO_DEFINED
2 #define SkGLDevice_FBO_DEFINED
3
4 #include "SkGLDevice.h"
5
6 class SkGLDevice_FBO : public SkGLDevice {
7 public:
8 SkGLDevice_FBO(const SkBitmap& bitmap, bool offscreen);
9 virtual ~SkGLDevice_FBO();
10
11 // overrides from SkGLDevice
12 virtual void gainFocus(SkCanvas*);
13 virtual TexOrientation bindDeviceAsTexture();
14
15 private:
16 GLuint fFBO;
17 GLuint fTextureID;
18
19 typedef SkGLDevice INHERITED;
20 };
21
22 #endif
23
OLDNEW
« no previous file with comments | « skia/gl/SkGLDevice.cpp ('k') | skia/gl/SkGLDevice_FBO.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698