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

Unified Diff: gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc

Issue 1055143003: Test gfx::GpuMemoryBuffer::BGRA_8888 GpuMemoryBuffer lifecycle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
diff --git a/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc b/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
index 48f8ba878ee5aabc2a84a32815bbf143027d5b3d..01f92877414e9aa2170ae07e7d7c00f511140ec1 100644
--- a/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
+++ b/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
@@ -33,9 +33,9 @@ namespace gles2 {
static const int kImageWidth = 32;
static const int kImageHeight = 32;
-static const int kImageBytesPerPixel = 4;
-class GpuMemoryBufferTest : public testing::Test {
+class GpuMemoryBufferTest
+ : public testing::TestWithParam<gfx::GpuMemoryBuffer::Format> {
protected:
void SetUp() override {
gl_.Initialize(GLManager::Options());
@@ -70,12 +70,50 @@ class GpuMemoryBufferTest : public testing::Test {
GLuint framebuffer_id_;
};
-// An end to end test that tests the whole GpuMemoryBuffer lifecycle.
-TEST_F(GpuMemoryBufferTest, Lifecycle) {
- uint8 pixels[1 * 4] = { 255u, 0u, 0u, 255u };
+namespace {
reveman 2015/04/03 02:20:16 nit: we use a blank line between namespace and cod
Daniele Castagna 2015/04/03 02:56:14 Ack. It'll be there at the next iteration.
Daniele Castagna 2015/04/03 04:26:46 Done.
+std::vector<uint8> GetTexturePixel(const gfx::GpuMemoryBuffer::Format format) {
+ std::vector<uint8> pixel;
+ switch (format) {
+ case gfx::GpuMemoryBuffer::RGBA_8888:
+ pixel.push_back(255u);
+ pixel.push_back(0u);
+ pixel.push_back(0u);
+ pixel.push_back(255u);
+ return pixel;
+ case gfx::GpuMemoryBuffer::BGRA_8888:
+ pixel.push_back(0u);
+ pixel.push_back(0u);
+ pixel.push_back(255u);
+ pixel.push_back(255u);
+ return pixel;
+ default:
reveman 2015/04/03 02:20:16 Please avoid a default case and explicitly list al
Daniele Castagna 2015/04/03 02:56:14 I don't see why if someone adds a new format (to G
reveman 2015/04/03 03:41:02 If someone adds a new format to GpuMemoryBuffer, t
Daniele Castagna 2015/04/03 04:26:46 Done.
+ NOTREACHED();
+ return std::vector<uint8>();
+ }
+}
+
+std::vector<uint8> GetFramebufferPixel(
+ const gfx::GpuMemoryBuffer::Format format) {
+ std::vector<uint8> pixel;
+ switch (format) {
+ case gfx::GpuMemoryBuffer::RGBA_8888:
+ case gfx::GpuMemoryBuffer::BGRA_8888:
+ pixel.push_back(255u);
+ pixel.push_back(0u);
+ pixel.push_back(0u);
+ pixel.push_back(255u);
+ return pixel;
+ default:
reveman 2015/04/03 02:20:16 ditto
Daniele Castagna 2015/04/03 02:56:14 Ack.
Daniele Castagna 2015/04/03 04:26:46 Done.
+ NOTREACHED();
+ return std::vector<uint8>();
+ }
+}
+} // namespace
reveman 2015/04/03 02:20:16 nit: we use a blank line between namespace and cod
Daniele Castagna 2015/04/03 02:56:14 Ack. I'll add it at the next iteration.
Daniele Castagna 2015/04/03 04:26:46 Done.
+// An end to end test that tests the whole GpuMemoryBuffer lifecycle.
+TEST_P(GpuMemoryBufferTest, Lifecycle) {
scoped_ptr<gfx::GpuMemoryBuffer> buffer(gl_.CreateGpuMemoryBuffer(
- gfx::Size(kImageWidth, kImageHeight), gfx::GpuMemoryBuffer::RGBA_8888));
+ gfx::Size(kImageWidth, kImageHeight), GetParam()));
// Map buffer for writing.
void* data;
@@ -86,13 +124,14 @@ TEST_F(GpuMemoryBufferTest, Lifecycle) {
ASSERT_TRUE(mapped_buffer != NULL);
// Assign a value to each pixel.
- int stride = kImageWidth * kImageBytesPerPixel;
- for (int x = 0; x < kImageWidth; ++x) {
- for (int y = 0; y < kImageHeight; ++y) {
- mapped_buffer[y * stride + x * kImageBytesPerPixel + 0] = pixels[0];
- mapped_buffer[y * stride + x * kImageBytesPerPixel + 1] = pixels[1];
- mapped_buffer[y * stride + x * kImageBytesPerPixel + 2] = pixels[2];
- mapped_buffer[y * stride + x * kImageBytesPerPixel + 3] = pixels[3];
+ uint32 stride = 0;
+ buffer->GetStride(&stride);
+ ASSERT_GE(stride, 0u);
+ std::vector<uint8> pixel = GetTexturePixel(GetParam());
+ for (int y = 0; y < kImageHeight; ++y) {
+ for (uint32 x_offset = 0; x_offset < stride; x_offset += pixel.size()) {
reveman 2015/04/03 02:20:16 I don't think we should be writing past kImageWidt
Daniele Castagna 2015/04/03 02:56:14 Isn't this similar to what you were suggesting in
reveman 2015/04/03 03:41:02 memset(mapped_buffer + y * stride, 0xff, ..) works
+ std::copy(pixel.begin(), pixel.end(),
+ &mapped_buffer[y * stride + x_offset]);
}
}
@@ -118,7 +157,8 @@ TEST_F(GpuMemoryBufferTest, Lifecycle) {
EXPECT_TRUE(glGetError() == GL_NO_ERROR);
// Check if pixels match the values that were assigned to the mapped buffer.
- GLTestHelper::CheckPixels(0, 0, kImageWidth, kImageHeight, 0, pixels);
+ GLTestHelper::CheckPixels(0, 0, kImageWidth, kImageHeight, 0,
+ &GetFramebufferPixel(GetParam()).front());
EXPECT_TRUE(GL_NO_ERROR == glGetError());
// Release the image.
@@ -128,5 +168,10 @@ TEST_F(GpuMemoryBufferTest, Lifecycle) {
glDestroyImageCHROMIUM(image_id);
}
+INSTANTIATE_TEST_CASE_P(GpuMemoryBufferTests,
+ GpuMemoryBufferTest,
+ ::testing::Values(gfx::GpuMemoryBuffer::RGBA_8888,
+ gfx::GpuMemoryBuffer::BGRA_8888));
+
} // namespace gles2
} // namespace gpu
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698