From bac37fd3e9ff7eca18bbb58bc4d2c9ce2e3218f1 Mon Sep 17 00:00:00 2001 From: "reveman@chromium.org" Date: Fri, 16 Aug 2013 17:31:00 +0000 Subject: gpu: Refactor GpuMemoryBuffer framework for multi-process support. This removes the ImageFactory interface and adjusts the buffer allocation system for future multi-process support. Also includes proper plumbing of internalformat to GLImage implementation and makes sure the compositor is using the correct format. TEST=gpu_unittests --gtest_filter=MockGpuMemoryBufferTest.Lifecycle BUG=261649 Review URL: https://chromiumcodereview.appspot.com/20017005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218034 0039d316-1c4b-4281-b951-d872f2087c98 --- ui/gl/gl_image_shm.cc | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) (limited to 'ui/gl/gl_image_shm.cc') diff --git a/ui/gl/gl_image_shm.cc b/ui/gl/gl_image_shm.cc index 14ed836..78e8164 100644 --- a/ui/gl/gl_image_shm.cc +++ b/ui/gl/gl_image_shm.cc @@ -10,7 +10,11 @@ namespace gfx { -GLImageShm::GLImageShm(gfx::Size size) : size_(size) { +GLImageShm::GLImageShm(gfx::Size size, unsigned internalformat) + : size_(size), + internalformat_(internalformat) { + // GL_RGBA8_OES is currently the only supported internalformat. + DCHECK_EQ(static_cast(GL_RGBA8_OES), internalformat); } GLImageShm::~GLImageShm() { @@ -40,8 +44,23 @@ bool GLImageShm::BindTexImage() { TRACE_EVENT0("gpu", "GLImageShm::BindTexImage"); DCHECK(shared_memory_); - const int kBytesPerPixel = 4; - size_t size = size_.GetArea() * kBytesPerPixel; + GLenum internalformat; + GLenum format; + GLenum type; + int bytes_per_pixel; + switch (internalformat_) { + case GL_RGBA8_OES: + internalformat = GL_RGBA; + format = GL_RGBA; + type = GL_UNSIGNED_BYTE; + bytes_per_pixel = 4; + break; + default: + DVLOG(0) << "Invalid format: " << internalformat_; + return false; + } + + size_t size = size_.GetArea() * bytes_per_pixel; DCHECK(!shared_memory_->memory()); if (!shared_memory_->Map(size)) { DVLOG(0) << "Failed to map shared memory."; @@ -51,12 +70,12 @@ bool GLImageShm::BindTexImage() { DCHECK(shared_memory_->memory()); glTexImage2D(GL_TEXTURE_2D, 0, // mip level - GL_RGBA, + internalformat, size_.width(), size_.height(), 0, // border - GL_RGBA, - GL_UNSIGNED_BYTE, + format, + type, shared_memory_->memory()); shared_memory_->Unmap(); -- cgit v1.1