qcom/display: Update HALs
- Update the display HAL from Code Aurora Forum
- Add updated overlay library
- Enable HWC with basic video going through overlay
- Cleanup some files
Change-Id: I65c687c51be458cee71213c79e03eeda962d9086
diff --git a/libgralloc/ashmemalloc.h b/libgralloc/ashmemalloc.h
index 051dcd1..50daf04 100644
--- a/libgralloc/ashmemalloc.h
+++ b/libgralloc/ashmemalloc.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
+ * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -34,23 +34,23 @@
#include <linux/ion.h>
namespace gralloc {
- class AshmemAlloc : public IMemAlloc {
+class AshmemAlloc : public IMemAlloc {
- public:
- virtual int alloc_buffer(alloc_data& data);
+ public:
+ virtual int alloc_buffer(alloc_data& data);
- virtual int free_buffer(void *base, size_t size,
- int offset, int fd);
+ virtual int free_buffer(void *base, size_t size,
+ int offset, int fd);
- virtual int map_buffer(void **pBase, size_t size,
- int offset, int fd);
+ virtual int map_buffer(void **pBase, size_t size,
+ int offset, int fd);
- virtual int unmap_buffer(void *base, size_t size,
- int offset);
+ virtual int unmap_buffer(void *base, size_t size,
+ int offset);
- virtual int clean_buffer(void*base, size_t size,
- int offset, int fd);
+ virtual int clean_buffer(void*base, size_t size,
+ int offset, int fd);
- };
+};
}
#endif /* GRALLOC_ASHMEMALLOC_H */