ivi-shell: remove ivi_layout_layer_get_opacity API
Signed-off-by: Emre Ucan <eucan@de.adit-jv.com> Acked-by: wataru_natsume <wataru_natsume@xddp.denso.co.jp> Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
This commit is contained in:
committed by
Bryce Harrington
parent
995e6fbcd0
commit
c3aee1f67f
@@ -529,14 +529,6 @@ struct ivi_layout_interface {
|
|||||||
int32_t (*layer_set_opacity)(struct ivi_layout_layer *ivilayer,
|
int32_t (*layer_set_opacity)(struct ivi_layout_layer *ivilayer,
|
||||||
wl_fixed_t opacity);
|
wl_fixed_t opacity);
|
||||||
|
|
||||||
/**
|
|
||||||
* \brief Get the opacity of a ivi_layer.
|
|
||||||
*
|
|
||||||
* \return opacity if the method call was successful
|
|
||||||
* \return wl_fixed_from_double(0.0) if the method call was failed
|
|
||||||
*/
|
|
||||||
wl_fixed_t (*layer_get_opacity)(struct ivi_layout_layer *ivilayer);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Set the area of a ivi_layer which should be used for the rendering.
|
* \brief Set the area of a ivi_layer which should be used for the rendering.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -199,8 +199,6 @@ ivi_layout_get_surface_from_id(uint32_t id_surface);
|
|||||||
int32_t
|
int32_t
|
||||||
ivi_layout_layer_set_opacity(struct ivi_layout_layer *ivilayer,
|
ivi_layout_layer_set_opacity(struct ivi_layout_layer *ivilayer,
|
||||||
wl_fixed_t opacity);
|
wl_fixed_t opacity);
|
||||||
wl_fixed_t
|
|
||||||
ivi_layout_layer_get_opacity(struct ivi_layout_layer *ivilayer);
|
|
||||||
int32_t
|
int32_t
|
||||||
ivi_layout_layer_set_visibility(struct ivi_layout_layer *ivilayer,
|
ivi_layout_layer_set_visibility(struct ivi_layout_layer *ivilayer,
|
||||||
bool newVisibility);
|
bool newVisibility);
|
||||||
|
|||||||
@@ -831,7 +831,7 @@ ivi_layout_transition_fade_layer(
|
|||||||
data = transition->private_data;
|
data = transition->private_data;
|
||||||
|
|
||||||
/* FIXME */
|
/* FIXME */
|
||||||
fixed_opacity = ivi_layout_layer_get_opacity(layer);
|
fixed_opacity = layer->prop.opacity;
|
||||||
now_opacity = wl_fixed_to_double(fixed_opacity);
|
now_opacity = wl_fixed_to_double(fixed_opacity);
|
||||||
remain = 0.0;
|
remain = 0.0;
|
||||||
|
|
||||||
|
|||||||
@@ -1810,17 +1810,6 @@ ivi_layout_layer_set_opacity(struct ivi_layout_layer *ivilayer,
|
|||||||
return IVI_SUCCEEDED;
|
return IVI_SUCCEEDED;
|
||||||
}
|
}
|
||||||
|
|
||||||
wl_fixed_t
|
|
||||||
ivi_layout_layer_get_opacity(struct ivi_layout_layer *ivilayer)
|
|
||||||
{
|
|
||||||
if (ivilayer == NULL) {
|
|
||||||
weston_log("ivi_layout_layer_get_opacity: invalid argument\n");
|
|
||||||
return wl_fixed_from_double(0.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ivilayer->prop.opacity;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int32_t
|
static int32_t
|
||||||
ivi_layout_layer_set_source_rectangle(struct ivi_layout_layer *ivilayer,
|
ivi_layout_layer_set_source_rectangle(struct ivi_layout_layer *ivilayer,
|
||||||
int32_t x, int32_t y,
|
int32_t x, int32_t y,
|
||||||
@@ -2745,7 +2734,6 @@ static struct ivi_layout_interface ivi_layout_interface = {
|
|||||||
.get_layers_on_screen = ivi_layout_get_layers_on_screen,
|
.get_layers_on_screen = ivi_layout_get_layers_on_screen,
|
||||||
.layer_set_visibility = ivi_layout_layer_set_visibility,
|
.layer_set_visibility = ivi_layout_layer_set_visibility,
|
||||||
.layer_set_opacity = ivi_layout_layer_set_opacity,
|
.layer_set_opacity = ivi_layout_layer_set_opacity,
|
||||||
.layer_get_opacity = ivi_layout_layer_get_opacity,
|
|
||||||
.layer_set_source_rectangle = ivi_layout_layer_set_source_rectangle,
|
.layer_set_source_rectangle = ivi_layout_layer_set_source_rectangle,
|
||||||
.layer_set_destination_rectangle = ivi_layout_layer_set_destination_rectangle,
|
.layer_set_destination_rectangle = ivi_layout_layer_set_destination_rectangle,
|
||||||
.layer_set_position = ivi_layout_layer_set_position,
|
.layer_set_position = ivi_layout_layer_set_position,
|
||||||
|
|||||||
@@ -202,18 +202,16 @@ test_layer_opacity(struct test_context *ctx)
|
|||||||
ivilayer = lyt->layer_create_with_dimension(IVI_TEST_LAYER_ID(0), 200, 300);
|
ivilayer = lyt->layer_create_with_dimension(IVI_TEST_LAYER_ID(0), 200, 300);
|
||||||
iassert(ivilayer != NULL);
|
iassert(ivilayer != NULL);
|
||||||
|
|
||||||
iassert(lyt->layer_get_opacity(ivilayer) == wl_fixed_from_double(1.0));
|
prop = lyt->get_properties_of_layer(ivilayer);
|
||||||
|
iassert(prop->opacity == wl_fixed_from_double(1.0));
|
||||||
|
|
||||||
iassert(lyt->layer_set_opacity(
|
iassert(lyt->layer_set_opacity(
|
||||||
ivilayer, wl_fixed_from_double(0.5)) == IVI_SUCCEEDED);
|
ivilayer, wl_fixed_from_double(0.5)) == IVI_SUCCEEDED);
|
||||||
|
|
||||||
iassert(lyt->layer_get_opacity(ivilayer) == wl_fixed_from_double(1.0));
|
iassert(prop->opacity == wl_fixed_from_double(1.0));
|
||||||
|
|
||||||
lyt->commit_changes();
|
lyt->commit_changes();
|
||||||
|
|
||||||
iassert(lyt->layer_get_opacity(ivilayer) == wl_fixed_from_double(0.5));
|
|
||||||
|
|
||||||
prop = lyt->get_properties_of_layer(ivilayer);
|
|
||||||
iassert(prop->opacity == wl_fixed_from_double(0.5));
|
iassert(prop->opacity == wl_fixed_from_double(0.5));
|
||||||
|
|
||||||
lyt->layer_destroy(ivilayer);
|
lyt->layer_destroy(ivilayer);
|
||||||
@@ -430,6 +428,7 @@ test_layer_bad_opacity(struct test_context *ctx)
|
|||||||
{
|
{
|
||||||
const struct ivi_layout_interface *lyt = ctx->layout_interface;
|
const struct ivi_layout_interface *lyt = ctx->layout_interface;
|
||||||
struct ivi_layout_layer *ivilayer;
|
struct ivi_layout_layer *ivilayer;
|
||||||
|
const struct ivi_layout_layer_properties *prop;
|
||||||
|
|
||||||
ivilayer = lyt->layer_create_with_dimension(IVI_TEST_LAYER_ID(0), 200, 300);
|
ivilayer = lyt->layer_create_with_dimension(IVI_TEST_LAYER_ID(0), 200, 300);
|
||||||
iassert(ivilayer != NULL);
|
iassert(ivilayer != NULL);
|
||||||
@@ -445,22 +444,21 @@ test_layer_bad_opacity(struct test_context *ctx)
|
|||||||
|
|
||||||
lyt->commit_changes();
|
lyt->commit_changes();
|
||||||
|
|
||||||
iassert(lyt->layer_get_opacity(ivilayer) == wl_fixed_from_double(0.3));
|
prop = lyt->get_properties_of_layer(ivilayer);
|
||||||
|
iassert(prop->opacity == wl_fixed_from_double(0.3));
|
||||||
|
|
||||||
iassert(lyt->layer_set_opacity(
|
iassert(lyt->layer_set_opacity(
|
||||||
ivilayer, wl_fixed_from_double(1.1)) == IVI_FAILED);
|
ivilayer, wl_fixed_from_double(1.1)) == IVI_FAILED);
|
||||||
|
|
||||||
lyt->commit_changes();
|
lyt->commit_changes();
|
||||||
|
|
||||||
iassert(lyt->layer_get_opacity(ivilayer) == wl_fixed_from_double(0.3));
|
iassert(prop->opacity == wl_fixed_from_double(0.3));
|
||||||
|
|
||||||
iassert(lyt->layer_set_opacity(
|
iassert(lyt->layer_set_opacity(
|
||||||
NULL, wl_fixed_from_double(0.5)) == IVI_FAILED);
|
NULL, wl_fixed_from_double(0.5)) == IVI_FAILED);
|
||||||
|
|
||||||
lyt->commit_changes();
|
lyt->commit_changes();
|
||||||
|
|
||||||
iassert(lyt->layer_get_opacity(NULL) == wl_fixed_from_double(0.0));
|
|
||||||
|
|
||||||
lyt->layer_destroy(ivilayer);
|
lyt->layer_destroy(ivilayer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user