summaryrefslogtreecommitdiffstats
path: root/pts-core/objects/bilde_renderer
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-12-28 10:17:55 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-12-28 10:17:55 -0500
commite73f1137c8cbaa38e2225b836d8b560c18fc9070 (patch)
tree6eac3c15cd5745d4463dccded3bfc2e582ec581c /pts-core/objects/bilde_renderer
parent9094d2b216723bdf20f3c1e3bae7377bfbfc2f56 (diff)
downloadphoronix-test-suite-upstream-e73f1137c8cbaa38e2225b836d8b560c18fc9070.tar.gz
phoronix-test-suite-upstream-e73f1137c8cbaa38e2225b836d8b560c18fc9070.tar.xz
phoronix-test-suite-upstream-e73f1137c8cbaa38e2225b836d8b560c18fc9070.zip
pts-core: Archive installation output of tests in the test's directory
in file install.log
Diffstat (limited to 'pts-core/objects/bilde_renderer')
-rw-r--r--pts-core/objects/bilde_renderer/bilde_swf_renderer.php19
1 files changed, 15 insertions, 4 deletions
diff --git a/pts-core/objects/bilde_renderer/bilde_swf_renderer.php b/pts-core/objects/bilde_renderer/bilde_swf_renderer.php
index dd63a11..c6b0dc0 100644
--- a/pts-core/objects/bilde_renderer/bilde_swf_renderer.php
+++ b/pts-core/objects/bilde_renderer/bilde_swf_renderer.php
@@ -64,15 +64,14 @@ class bilde_swf_renderer extends bilde_renderer
public function draw_rectangle($x1, $y1, $width, $height, $background_color)
{
- /*
- $points = array(
+ /* $points = array(
$x1, $y1,
$x1 + $height, $y1,
$x1 + $height, $y1 + $width,
$x1, $y1 + $width
);
$this->draw_polygon($points, $background_color, $background_color, 1);
- */
+ */
$rect = new SWFShape();
$rect->setLine(1, $background_color[0], $background_color[1], $background_color[2]);
$rect->setRightFill($background_color[0], $background_color[1], $background_color[2]);
@@ -85,6 +84,14 @@ class bilde_swf_renderer extends bilde_renderer
}
public function draw_rectangle_border($x1, $y1, $width, $height, $border_color)
{
+ /* $points = array(
+ $x1, $y1,
+ $x1 + $height, $y1,
+ $x1 + $height, $y1 + $width,
+ $x1, $y1 + $width
+ );
+ $this->draw_polygon($points, null, $border_color, 1);
+ */
$this->draw_line($x1, $y1, $x1 + $width, $y1, $border_color, 1);
$this->draw_line($x1, $y1, $x1, $y1 + $height, $border_color, 1);
$this->draw_line($x1 + $width, $y1, $x1 + $width, $y1 + $height, $border_color, 1);
@@ -93,7 +100,11 @@ class bilde_swf_renderer extends bilde_renderer
public function draw_polygon($points, $body_color, $border_color = null, $border_width = 0)
{
$poly = new SWFShape();
- $poly->setLeftFill($body_color[0], $body_color[1], $body_color[2]);
+
+ if(!empty($body_color))
+ {
+ $poly->setLeftFill($body_color[0], $body_color[1], $body_color[2]);
+ }
if(!empty($border_color) && $border_width > 0)
{
$poly->setLine($border_width, $border_color[0], $border_color[1], $border_color[2]);