summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2011-08-30 19:24:04 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-08-30 19:24:04 -0700
commitc3d8f74cda26197ec9066374fe31abe9ee77c1b1 (patch)
tree3ae10f50402ac74a72001880131a7a0e40b66905 /include
parentb76e90de3c64626fe07a68469d0a59a31c8efb6b (diff)
parent8343f2c317b48f9b9827781b16a5c9fd31743826 (diff)
downloadframeworks_av-c3d8f74cda26197ec9066374fe31abe9ee77c1b1.zip
frameworks_av-c3d8f74cda26197ec9066374fe31abe9ee77c1b1.tar.gz
frameworks_av-c3d8f74cda26197ec9066374fe31abe9ee77c1b1.tar.bz2
Merge "fix Surface positions are not floats"
Diffstat (limited to 'include')
-rw-r--r--include/private/surfaceflinger/LayerState.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/private/surfaceflinger/LayerState.h b/include/private/surfaceflinger/LayerState.h
index d2fed41..3eb5c99 100644
--- a/include/private/surfaceflinger/LayerState.h
+++ b/include/private/surfaceflinger/LayerState.h
@@ -54,8 +54,8 @@ struct layer_state_t {
};
SurfaceID surface;
uint32_t what;
- int32_t x;
- int32_t y;
+ float x;
+ float y;
uint32_t z;
uint32_t w;
uint32_t h;