Efl.Canvas.Vg.Object: Fix typo

Summary:
The 3th parameter of ector_buffer_pixels_get is the width.
So chnage px to pw.

Test Plan: N/A

Reviewers: Hermet, smohanty

Reviewed By: Hermet

Subscribers: cedric, herb, #reviewers, kimcinoo, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12141
This commit is contained in:
junsu choi 2020-09-11 11:46:58 +09:00 committed by Hermet Park
parent f59a166063
commit 0e01e9778c
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ _evas_vg_render(Evas_Object_Protected_Data *obj, Efl_Canvas_Vg_Object_Data *pd,
int px, py, pw, ph, pstride;
void *ppixels = NULL;
ector_buffer_size_get(ector, &pw, &ph);
ector_buffer_pixels_get(ector, &ppixels, &px, &ph, &pstride);
ector_buffer_pixels_get(ector, &ppixels, &pw, &ph, &pstride);
Efl_Gfx_Colorspace pcspace = ector_buffer_cspace_get(ector);
ector_surface_reference_point_get(ector, &px, &py);