From: Daniel Juyung Seo Date: Mon, 6 Jan 2014 15:08:31 +0000 (+0900) Subject: 3d, flip_page test: Removed dead assignments which were reported by X-Git-Tag: v1.9.0-alpha1~294 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0bcc64a162eea143d17abe38559df9c214e740a0;p=platform%2Fupstream%2Felementary.git 3d, flip_page test: Removed dead assignments which were reported by clang. https://build.enlightenment.org/job/nightly_elm_clang_x86_64/lastSuccessfulBuild/artifact/scan-build/build/2014-01-05-1/report-XJSqtb.html#EndPath https://build.enlightenment.org/job/nightly_elm_clang_x86_64/lastSuccessfulBuild/artifact/scan-build/build/2014-01-05-1/report-XcpYrk.html#EndPath --- diff --git a/src/bin/test_3d.c b/src/bin/test_3d.c index 92f78cf35..3fa9d8dce 100644 --- a/src/bin/test_3d.c +++ b/src/bin/test_3d.c @@ -134,7 +134,6 @@ _cube_pos(Cube *c, evas_map_point_coord_get(m, j, NULL, NULL, &(tz[j])); mz[i] = (tz[0] + tz[1] + tz[2] + tz[3]) / 4; } - sorted = 0; do { sorted = 1; diff --git a/src/bin/test_flip_page.c b/src/bin/test_flip_page.c index 872bb8d6e..46504628a 100644 --- a/src/bin/test_flip_page.c +++ b/src/bin/test_flip_page.c @@ -316,7 +316,7 @@ _state_update(State *st) Slice *sl; double b, minv = 0.0, minva, mgrad; int gx, gy, gszw, gszh, gw, gh, col, row, nw, nh; - double rho, A, theta, perc, percm, n, rhol, Al, thetal; + double rho, A, theta, perc, n, rhol, Al, thetal; Vertex3 *tvo, *tvol; st->backflip = 0; @@ -408,11 +408,8 @@ _state_update(State *st) } perc = (double)xx2 / (double)xx1; - percm = (double)mx / (double)xx1; if (perc < 0.0) perc = 0.0; else if (perc > 1.0) perc = 1.0; - if (percm < 0.0) percm = 0.0; - else if (percm > 1.0) percm = 1.0; minva = atan(minv) / (M_PI / 2); if (minva < 0.0) minva = -minva;