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

Unified Diff: remoting/host/capturer_fake.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 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 | « remoting/host/capturer.cc ('k') | remoting/host/capturer_fake_ascii.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/capturer_fake.cc
diff --git a/remoting/host/capturer_fake.cc b/remoting/host/capturer_fake.cc
index 5c087b39c24b0c9f182f80af9606358c3a7495a7..f1a8135d878140f80b02b77f806da31e496191a9 100644
--- a/remoting/host/capturer_fake.cc
+++ b/remoting/host/capturer_fake.cc
@@ -8,9 +8,9 @@
namespace remoting {
-static const int kWidth = 640;
-static const int kHeight = 480;
-static const int kBytesPerPixel = 3; // 24 bit RGB is 3 bytes per pixel.
+static const int kWidth = 320;
+static const int kHeight = 240;
+static const int kBytesPerPixel = 4; // 32 bit RGB is 4 bytes per pixel.
static const int kMaxColorChannelValue = 255;
CapturerFake::CapturerFake()
@@ -18,7 +18,7 @@ CapturerFake::CapturerFake()
// Dimensions of screen.
width_ = kWidth;
height_ = kHeight;
- pixel_format_ = chromotocol_pb::PixelFormatRgb24;
+ pixel_format_ = PixelFormatRgb32;
bytes_per_pixel_ = kBytesPerPixel;
bytes_per_row_ = width_ * bytes_per_pixel_;
@@ -75,12 +75,14 @@ void CapturerFake::GetDataStride(int strides[]) const {
void CapturerFake::GenerateImage() {
uint8* row = buffers_[current_buffer_].get();
for (int y = 0; y < height_; ++y) {
+ int offset = y % 3;
for (int x = 0; x < width_; ++x) {
- row[x] = seed_++;
+ row[x * kBytesPerPixel + offset] = seed_++;
seed_ &= kMaxColorChannelValue;
}
row += bytes_per_row_;
}
+ ++seed_;
}
} // namespace remoting
« no previous file with comments | « remoting/host/capturer.cc ('k') | remoting/host/capturer_fake_ascii.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698