~ubuntu-branches/ubuntu/trusty/lcd4linux/trusty-proposed

« back to all changes in this revision

Viewing changes to rgb.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2006-08-27 17:16:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060827171646-j63wpiogypbaik7a
* New Maintainer! 
* Dropping old maintainer in agreement with nobse@debian.org. 
  Thanks for your work so far, nobse!
* urgency medium because of release critical bugs
* Bump standards version to 3.7.2 (no changes needed)
* add build depends on libmpd-dev for mpd support
* new upstream snapshot
* drop dependency of ${misc:Depends}, not used anyway
* now supporting USB2LCD
* don't update config.{sub,guess} in clean target automatically
* new target ``update-config-sub-guess'' to update config.{sub,guess}
* Acking NMU, Thanks Steinar! (Closes: #374682)
* Bug fix: "FTBFS: undefined reference to many X functions", thanks to
  Eric Dorland. The problem was in driver.m4 (Closes: #381606).
* Bug fix: "Please stop Build-Depending on automake", thanks to Eric
  Dorland (Closes: #381812).
* Don't ship /etc/lcd4linux.conf anymore. Please install and customize 
  it yourself using /usr/share/doc/lcd4linux.conf.sample as template
* Bug fix: "lcd4linux - FTBFS: uses ia32 assembler", thanks to Bastian
  Blank. Fixed by adding #ifdefs to produce those asm statements on i386
  and amd64 only. (Closes: #336017).
* Removing outdated NEWS, FAQ, README.KDE on upstream request.
* Install manpage for lcd4linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: rgb.c,v 1.1 2006/01/30 05:47:38 reinelt Exp $
 
2
 *
 
3
 * generic color handling
 
4
 *
 
5
 * Copyright (C) 2005 Michael Reinelt <reinelt@eunet.at>
 
6
 * Copyright (C) 2005 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 
7
 *
 
8
 * This file is part of LCD4Linux.
 
9
 *
 
10
 * LCD4Linux is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2, or (at your option)
 
13
 * any later version.
 
14
 *
 
15
 * LCD4Linux is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
23
 *
 
24
 *
 
25
 * $Log: rgb.c,v $
 
26
 * Revision 1.1  2006/01/30 05:47:38  reinelt
 
27
 * graphic subsystem changed to full-color RGBA
 
28
 *
 
29
 */
 
30
 
 
31
 
 
32
#include <stdlib.h>
 
33
#include <string.h>
 
34
 
 
35
#include "rgb.h"
 
36
 
 
37
 
 
38
int color2RGBA(const char *color, RGBA * C)
 
39
{
 
40
    char *e;
 
41
    unsigned long l;
 
42
 
 
43
    if (color == NULL || *color == '\0') {
 
44
        return -1;
 
45
    }
 
46
 
 
47
    l = strtoul(color, &e, 16);
 
48
    if (e != NULL && *e != '\0') {
 
49
        return -1;
 
50
    }
 
51
 
 
52
    if (strlen(color) == 8) {
 
53
        /* RGBA */
 
54
        C->R = (l >> 24) & 0xff;
 
55
        C->G = (l >> 16) & 0xff;
 
56
        C->B = (l >> 8) & 0xff;
 
57
        C->A = (l >> 0) & 0xff;
 
58
    } else {
 
59
        /* RGB */
 
60
        C->R = (l >> 16) & 0xff;
 
61
        C->G = (l >> 8) & 0xff;
 
62
        C->B = l & 0xff;
 
63
        C->A = 0xff;
 
64
    }
 
65
    return 0;
 
66
}