• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

作図ソフト dia の改良版


Commit MetaInfo

Révisionf19cdbdc10ce24b634ad49dd9dc6ea890ce3eec6 (tree)
l'heure2014-10-04 18:43:26
AuteurHans Breuer <hans@breu...>
CommiterHans Breuer

Message de Log

[warningectomy] unused function 'color_to_abgr'

just removed

Change Summary

Modification

--- a/plug-ins/libart/dialibartrenderer.c
+++ b/plug-ins/libart/dialibartrenderer.c
@@ -61,19 +61,6 @@
6161 #include <libart_lgpl/art_svp_intersect.h>
6262
6363 static inline guint32
64-color_to_abgr(Color *col)
65-{
66- int rgba;
67-
68- rgba = (guint)(0xFF*col->alpha) << 24;
69- rgba |= (guint)(0xFF*col->blue) << 16;
70- rgba |= (guint)(0xFF*col->green) << 8;
71- rgba |= (guint)(0xFF*col->red);
72-
73- return rgba;
74-}
75-
76-static inline guint32
7764 color_to_rgba(DiaLibartRenderer *renderer, Color *col)
7865 {
7966 int rgba;