commit | 7b80d9c8cb345f7020093e0afb691bf3a72deec6 | [log] [tgz] |
---|---|---|
author | Naseer Ahmed <naseer@codeaurora.org> | Wed Sep 26 20:14:38 2012 -0400 |
committer | Brian Muramatsu <btmura@google.com> | Wed Sep 26 17:43:38 2012 -0700 |
tree | c757d5d7334038ee5f634da70d2c06f169e30548 | |
parent | 86623d7d5106cd568a64be4e51be7ee77f078e08 [diff] [blame] |
hwc: Fix dpi values reported HWC 1.1 expects DPI multiplied by 1000 Bug 7241591 Change-Id: I680da8769f53f8a18d942a3b292d96a16885ebfa
diff --git a/libhwcomposer/hwc_utils.h b/libhwcomposer/hwc_utils.h index 1b1d4d6..db79e7d 100644 --- a/libhwcomposer/hwc_utils.h +++ b/libhwcomposer/hwc_utils.h
@@ -56,8 +56,8 @@ uint32_t vsync_period; //nanos uint32_t xres; uint32_t yres; - uint32_t xdpi; - uint32_t ydpi; + float xdpi; + float ydpi; int fd; bool isActive; };