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

Side by Side Diff: ui/gl/test/gl_image_test_support.h

Issue 1419733005: gpu: Add YCbCr 420v extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on master. Add gl/gfx namespace qualifiers. Created 5 years, 1 month 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_GL_TEST_GL_IMAGE_TEST_SUPPORT_H_ 5 #ifndef UI_GL_TEST_GL_IMAGE_TEST_SUPPORT_H_
6 #define UI_GL_TEST_GL_IMAGE_TEST_SUPPORT_H_ 6 #define UI_GL_TEST_GL_IMAGE_TEST_SUPPORT_H_
7 7
8 #include "ui/gfx/buffer_types.h" 8 #include "ui/gfx/buffer_types.h"
9 #include "ui/gl/gl_bindings.h" 9 #include "ui/gl/gl_bindings.h"
10 10
11 namespace gfx { 11 namespace gfx {
12 12
13 class GLImageTestSupport { 13 class GLImageTestSupport {
14 public: 14 public:
15 // Initialize GL for image testing. 15 // Initialize GL for image testing.
16 static void InitializeGL(); 16 static void InitializeGL();
17 17
18 // Cleanup GL after being initialized for image testing. 18 // Cleanup GL after being initialized for image testing.
19 static void CleanupGL(); 19 static void CleanupGL();
20 20
21 // Initialize buffers of a specific |format| to |color|.
22 static void SetBufferDataToColor(int width,
23 int height,
24 int strides[],
25 BufferFormat format,
26 const uint8_t color[4],
27 uint8_t* data[]);
reveman 2015/10/29 22:08:04 Let's pass a plane argument to this function inste
Daniele Castagna 2015/10/30 23:51:57 Done.
28
21 // Initialize buffer of a specific |format| to |color|. 29 // Initialize buffer of a specific |format| to |color|.
30 // This is useful for GpuMemoryBuffer formats with only
31 // one plane.
22 static void SetBufferDataToColor(int width, 32 static void SetBufferDataToColor(int width,
23 int height, 33 int height,
24 int stride, 34 int stride,
25 BufferFormat format, 35 BufferFormat format,
26 const uint8_t color[4], 36 const uint8_t color[4],
27 uint8_t* data); 37 uint8_t* data);
28 }; 38 };
29 39
30 } // namespace gfx 40 } // namespace gfx
31 41
32 #endif // UI_GL_TEST_GL_IMAGE_TEST_SUPPORT_H_ 42 #endif // UI_GL_TEST_GL_IMAGE_TEST_SUPPORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698