summaryrefslogtreecommitdiff
path: root/chromium/ui/gl/gl_image_stub.cc
blob: d09ba7d0d30c99a03688d7496388d60873fa2ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gl/gl_image_stub.h"

#include <GL/gl.h>

#include "base/notreached.h"
#include "ui/gfx/gpu_fence.h"

namespace gl {

GLImageStub::GLImageStub() {}

GLImageStub::~GLImageStub() {}

gfx::Size GLImageStub::GetSize() {
  return gfx::Size(1, 1);
}

unsigned GLImageStub::GetInternalFormat() { return GL_RGBA; }

unsigned GLImageStub::GetDataType() {
  return GL_UNSIGNED_BYTE;
}

GLImageStub::BindOrCopy GLImageStub::ShouldBindOrCopy() {
  return BIND;
}

bool GLImageStub::BindTexImage(unsigned target) { return true; }

bool GLImageStub::CopyTexImage(unsigned target) {
  NOTREACHED();
  return false;
}

bool GLImageStub::CopyTexSubImage(unsigned target,
                                  const gfx::Point& offset,
                                  const gfx::Rect& rect) {
  return false;
}

}  // namespace gl