diff options
Diffstat (limited to 'remoting/proto/video.proto')
-rw-r--r-- | remoting/proto/video.proto | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/remoting/proto/video.proto b/remoting/proto/video.proto index 14415af..01c57d4 100644 --- a/remoting/proto/video.proto +++ b/remoting/proto/video.proto @@ -33,6 +33,11 @@ message VideoPacketFormat { // Width and height of the whole screen. optional int32 screen_width = 6; optional int32 screen_height = 7; + + // Horizontal and vertical DPI of the screen. If either of these is zero or + // unset, the corresponding DPI should be assumed to be 96 (Windows' default) + optional int32 x_dpi = 8; + optional int32 y_dpi = 9; } // TODO(hclam): Remove this message once we can obtain dirty rects from libvpx. |