projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a94274
)
By default, set buffer size to 0 on creation.
sandbox/pcoval/upstream
author
Chris Michael
<cp.michael@samsung.com>
Thu, 25 Jul 2013 07:50:47 +0000
(08:50 +0100)
committer
Chris Michael
<cp.michael@samsung.com>
Thu, 25 Jul 2013 07:50:47 +0000
(08:50 +0100)
Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/bin/e_wayland/e_buffer.c
patch
|
blob
|
history
diff --git
a/src/bin/e_wayland/e_buffer.c
b/src/bin/e_wayland/e_buffer.c
index 7a8060cea6a6b73935dacf0c21f09184968a22d7..3139d77ae5e63260426d797c1a983aba3d2f3e05 100644
(file)
--- a/
src/bin/e_wayland/e_buffer.c
+++ b/
src/bin/e_wayland/e_buffer.c
@@
-18,6
+18,8
@@
e_buffer_resource_get(struct wl_resource *resource)
if (!(buffer = E_NEW_RAW(E_Buffer, 1)))
return NULL;
+ buffer->w = 0;
+ buffer->h = 0;
buffer->wl.resource = resource;
wl_signal_init(&buffer->signals.destroy);
buffer->buffer_destroy.notify = _e_buffer_cb_destroy;