aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/gl/GrGLTypes.h
diff options
context:
space:
mode:
authorGravatar Brian Osman <brianosman@google.com>2017-03-02 15:09:20 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-02 20:47:36 +0000
commitfe3b51636d4216c4ea6cb74ed0964c1d315ca487 (patch)
treee85907dad1a167ecceace5de1e6157a787fe0bac /include/gpu/gl/GrGLTypes.h
parente836b7817e8b28f0bd69578b8dfd83b8ef00248c (diff)
Use GrSemaphore rather than GrFence for external texture data
BUG=skia: Change-Id: I0d23eb9dcf5c01c71d3571ef97690af68b900807 Reviewed-on: https://skia-review.googlesource.com/9141 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'include/gpu/gl/GrGLTypes.h')
-rw-r--r--include/gpu/gl/GrGLTypes.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/gpu/gl/GrGLTypes.h b/include/gpu/gl/GrGLTypes.h
index d03363c75e..baf87a4b61 100644
--- a/include/gpu/gl/GrGLTypes.h
+++ b/include/gpu/gl/GrGLTypes.h
@@ -11,6 +11,7 @@
#include "GrExternalTextureData.h"
#include "GrGLConfig.h"
+#include "SkRefCnt.h"
/**
* Classifies GL contexts by which standard they implement (currently as OpenGL vs. OpenGL ES).
@@ -113,19 +114,21 @@ struct GrGLTextureInfo {
GrGLuint fID;
};
+class GrSemaphore;
+
class GrGLExternalTextureData : public GrExternalTextureData {
public:
- GrGLExternalTextureData(const GrGLTextureInfo& info, GrFence fence)
- : INHERITED(fence)
- , fInfo(info) {}
+ GrGLExternalTextureData(const GrGLTextureInfo& info, sk_sp<GrSemaphore> semaphore);
GrBackend getBackend() const override { return kOpenGL_GrBackend; }
protected:
GrBackendObject getBackendObject() const override {
return reinterpret_cast<GrBackendObject>(&fInfo);
}
+ void attachToContext(GrContext*) override;
GrGLTextureInfo fInfo;
+ sk_sp<GrSemaphore> fSemaphore;
typedef GrExternalTextureData INHERITED;
};