summaryrefslogtreecommitdiff
path: root/includes/powdergraphics.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-11-17 19:43:59 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-11-17 19:43:59 (GMT)
commite3594aba9e05c6865d396418c028049cda92c2f3 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /includes/powdergraphics.h
parentfb43f7d23e99765ae093fc45608901cb5907d1d8 (diff)
downloadpowder-e3594aba9e05c6865d396418c028049cda92c2f3.zip
powder-e3594aba9e05c6865d396418c028049cda92c2f3.tar.gz
Remove old code
Diffstat (limited to 'includes/powdergraphics.h')
-rw-r--r--includes/powdergraphics.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/includes/powdergraphics.h b/includes/powdergraphics.h
deleted file mode 100644
index 66286c6..0000000
--- a/includes/powdergraphics.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/**
- * Powder Toy - particle graphics header
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-#ifndef PGRAPHICS_H
-#define PGRAPHICS_H
-
-#define PMODE 0x00000FFF
-#define PMODE_NONE 0x00000000
-#define PMODE_FLAT 0x00000001
-#define PMODE_BLOB 0x00000002
-#define PMODE_BLUR 0x00000004
-#define PMODE_GLOW 0x00000008
-#define PMODE_SPARK 0x00000010
-#define PMODE_FLARE 0x00000020
-#define PMODE_LFLARE 0x00000040
-#define PMODE_ADD 0x00000080
-#define PMODE_BLEND 0x00000100
-#define PSPEC_STICKMAN 0x00000200
-
-#define OPTIONS 0x0000F000
-#define NO_DECO 0x00001000
-#define DECO_FIRE 0x00002000
-
-#define FIREMODE 0x00FF0000
-#define FIRE_ADD 0x00010000
-#define FIRE_BLEND 0x00020000
-
-#define EFFECT 0xFF000000
-#define EFFECT_GRAVIN 0x01000000
-#define EFFECT_GRAVOUT 0x02000000
-#define EFFECT_LINES 0x04000000
-
-#define RENDER_EFFE OPTIONS | PSPEC_STICKMAN | EFFECT | PMODE_SPARK | PMODE_FLARE | PMODE_LFLARE
-#define RENDER_FIRE OPTIONS | PSPEC_STICKMAN | PMODE_FLAT | PMODE_ADD | PMODE_BLEND | FIREMODE
-#define RENDER_GLOW OPTIONS | PSPEC_STICKMAN | PMODE_FLAT | PMODE_GLOW | PMODE_ADD | PMODE_BLEND
-#define RENDER_BLUR OPTIONS | PSPEC_STICKMAN | PMODE_FLAT | PMODE_BLUR | PMODE_ADD | PMODE_BLEND
-#define RENDER_BLOB OPTIONS | PSPEC_STICKMAN | PMODE_FLAT | PMODE_BLOB | PMODE_ADD | PMODE_BLEND
-#define RENDER_BASC OPTIONS | PSPEC_STICKMAN | PMODE_FLAT | PMODE_ADD | PMODE_BLEND
-#define RENDER_NONE OPTIONS | PSPEC_STICKMAN | PMODE_FLAT
-
-#define COLOUR_HEAT 0x00000001
-#define COLOUR_LIFE 0x00000002
-#define COLOUR_GRAD 0x00000004
-#define COLOUR_BASC 0x00000008
-
-#define COLOUR_DEFAULT 0x00000000
-
-#define DISPLAY_AIRC 0x00000001
-#define DISPLAY_AIRP 0x00000002
-#define DISPLAY_AIRV 0x00000004
-#define DISPLAY_AIRH 0x00000008
-#define DISPLAY_AIR 0x0000000F
-#define DISPLAY_WARP 0x00000010
-#define DISPLAY_PERS 0x00000020
-#define DISPLAY_EFFE 0x00000040
-
-#endif