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

Side by Side Diff: cc/test/test_image_factory.cc

Issue 1533773002: Delete CC. (Closed) Base URL: git@github.com:domokit/mojo.git@cl-2e
Patch Set: rebase Created 5 years 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
« no previous file with comments | « cc/test/test_image_factory.h ('k') | cc/test/test_in_process_context_provider.h » ('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 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "cc/test/test_image_factory.h"
6
7 #include "ui/gl/gl_image_shared_memory.h"
8
9 namespace cc {
10
11 TestImageFactory::TestImageFactory() {
12 }
13
14 TestImageFactory::~TestImageFactory() {
15 }
16
17 scoped_refptr<gfx::GLImage> TestImageFactory::CreateImageForGpuMemoryBuffer(
18 const gfx::GpuMemoryBufferHandle& handle,
19 const gfx::Size& size,
20 gfx::GpuMemoryBuffer::Format format,
21 unsigned internalformat,
22 int client_id) {
23 DCHECK_EQ(handle.type, gfx::SHARED_MEMORY_BUFFER);
24
25 scoped_refptr<gfx::GLImageSharedMemory> image(
26 new gfx::GLImageSharedMemory(size, internalformat));
27 if (!image->Initialize(handle, format))
28 return nullptr;
29
30 return image;
31 }
32
33 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/test_image_factory.h ('k') | cc/test/test_in_process_context_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698