summaryrefslogtreecommitdiffstats
path: root/modules/gralloc
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-07-07 16:36:31 -0700
committerMathias Agopian <mathias@google.com>2009-07-07 16:36:31 -0700
commit440d4e4741a2641173b44bd9b810c9a4960206c2 (patch)
treedf1342b24f5dd60aa956cf7d28ac820550306101 /modules/gralloc
parent85ce19a4d3d3204cb9829dd74ac5bc2ba28ea654 (diff)
downloadhardware_libhardware-440d4e4741a2641173b44bd9b810c9a4960206c2.zip
hardware_libhardware-440d4e4741a2641173b44bd9b810c9a4960206c2.tar.gz
hardware_libhardware-440d4e4741a2641173b44bd9b810c9a4960206c2.tar.bz2
for [1965730], give a better name to gralloc buffers
Diffstat (limited to 'modules/gralloc')
-rw-r--r--modules/gralloc/gralloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gralloc/gralloc.cpp b/modules/gralloc/gralloc.cpp
index 40d14dc..a01a95c 100644
--- a/modules/gralloc/gralloc.cpp
+++ b/modules/gralloc/gralloc.cpp
@@ -242,7 +242,7 @@ static int gralloc_alloc_buffer(alloc_device_t* dev,
if ((flags & private_handle_t::PRIV_FLAGS_USES_PMEM) == 0) {
try_ashmem:
- fd = ashmem_create_region("Buffer", size);
+ fd = ashmem_create_region("gralloc-buffer", size);
if (fd < 0) {
LOGE("couldn't create ashmem (%s)", strerror(-errno));
err = -errno;