Upstream version 11.39.266.0
[platform/framework/web/crosswalk.git] / src / ui / gl / gl_image.cc
index ea41f79..8907c6d 100644 (file)
@@ -4,33 +4,18 @@
 
 #include "ui/gl/gl_image.h"
 
-#include "base/logging.h"
-
 namespace gfx {
 
-GLImage::GLImage() {}
-
-bool GLImage::BindTexImage(unsigned target) {
-  NOTIMPLEMENTED();
-  return false;
-}
-
-void GLImage::ReleaseTexImage(unsigned target) {
-  NOTIMPLEMENTED();
+GLImage::GLImage() {
 }
 
-void GLImage::WillUseTexImage() {
-  NOTIMPLEMENTED();
+GLImage::~GLImage() {
 }
 
-void GLImage::DidUseTexImage() {
-  NOTIMPLEMENTED();
-}
+bool GLImage::CopyTexImage(unsigned target) { return false; }
 
 void GLImage::SetReleaseAfterUse() {
   // Default no-op implementation for workaround.
 }
 
-GLImage::~GLImage() {}
-
 }  // namespace gfx