From 6bfc655ee19aa82cce3277e6f9c861661cca5fb4 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Tue, 19 Jul 2005 18:10:29 +0000 Subject: update goom to 2k4-0 + patches. details: - removed convolve_fx: goom logo is definitely annoying. besides using xine_fast_memcpy instead of convolve makes it much faster! - reduced number of tentacles: too many tentacles on low res (320x240) made it too brighter - darker ifs.c: again problem with low res, image was saturating to white most of the time - increased fps to 14 now that goom is faster ;-) CVS patchset: 7667 CVS date: 2005/07/19 18:10:29 --- src/post/goom/lines.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/post/goom/lines.c') diff --git a/src/post/goom/lines.c b/src/post/goom/lines.c index 877f1894c..304406ffa 100644 --- a/src/post/goom/lines.c +++ b/src/post/goom/lines.c @@ -82,19 +82,19 @@ static guint32 getcouleur (int mode) { switch (mode) { case GML_RED: - return (230 << (ROUGE * 8)) | (120 << (VERT * 8)) | (10 << (BLEU * 8)); + return (230 << (ROUGE * 8)) | (120 << (VERT * 8)) | (18 << (BLEU * 8)); case GML_ORANGE_J: - return (120 << (VERT * 8)) | (252 << (ROUGE * 8)) | (10 << (BLEU * 8)); + return (120 << (VERT * 8)) | (252 << (ROUGE * 8)) | (18 << (BLEU * 8)); case GML_ORANGE_V: return (160 << (VERT * 8)) | (236 << (ROUGE * 8)) | (40 << (BLEU * 8)); case GML_BLEUBLANC: return (40 << (BLEU * 8)) | (220 << (ROUGE * 8)) | (140 << (VERT * 8)); case GML_VERT: - return (200 << (VERT * 8)) | (80 << (ROUGE * 8)) | (10 << (BLEU * 8)); + return (200 << (VERT * 8)) | (80 << (ROUGE * 8)) | (18 << (BLEU * 8)); case GML_BLEU: return (250 << (BLEU * 8)) | (30 << (VERT * 8)) | (80 << (ROUGE * 8)); case GML_BLACK: - return 0x5 << (BLEU * 8); + return (16 << (BLEU * 8)) | (16 << (VERT * 8)) | (16 << (ROUGE * 8)); } return 0; } -- cgit v1.2.3