summaryrefslogtreecommitdiffstats
path: root/Graphic_Equalizer/include/display.hch
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2004-12-09 14:00:26 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2004-12-09 14:00:26 (GMT)
commitb0ae032ae5712e38471c9347af289f3e50b0a08a (patch)
tree5f98113107975ddcc484cffb27625e09d015f504 /Graphic_Equalizer/include/display.hch
parent593d5fded11b8723ce27883e06865ab205c6f008 (diff)
downloadTASS-b0ae032ae5712e38471c9347af289f3e50b0a08a.zip
TASS-b0ae032ae5712e38471c9347af289f3e50b0a08a.tar.gz
TASS-b0ae032ae5712e38471c9347af289f3e50b0a08a.tar.bz2
Added defines makeing it possible to split the application in various parts namely:
Loader (loads data from the smart media into ram) Equalizer (The 'normal' known application) Visualization (The graphical visualization)
Diffstat (limited to 'Graphic_Equalizer/include/display.hch')
-rw-r--r--Graphic_Equalizer/include/display.hch52
1 files changed, 0 insertions, 52 deletions
diff --git a/Graphic_Equalizer/include/display.hch b/Graphic_Equalizer/include/display.hch
deleted file mode 100644
index af29b4f..0000000
--- a/Graphic_Equalizer/include/display.hch
+++ /dev/null
@@ -1,52 +0,0 @@
-/*! \file display.hch
- *
- * \section generic Display API
- *
- * \section project Project information.
- * Project Graphic Equalizer\n
- * \author
- * \date 20041011
- * \version 0.1
- *
- * \section copyright Copyright
- * Copyright ©2004 Koninklijke Philips Electronics N.V. All rights reserved
- *
- * \section history Change history
- * 20041011: \n Initial version
- *
- ********************************************************************/
-
-#ifndef _DISPLAY_HCH
-#define _DISPLAY_HCH 1
-
-
-
-/*
- * Set the color for various items that will be drawn on screen.
- */
-#define PIXEL (pixeldata <- 24)
-#define PIXEL_VOLUME (0x2d74b5)
-#define PIXEL_EQUALIZER (0xc7541f)
-#define PIXEL_SPECTRUM ((((skindata->area_spectrum_bottom -(SCANY <- 10)) <<1) <- 8) @ 0x00 @ (((skindata->area_spectrum_bottom -(SCANY <- 10)) <<1) <- 8))
-#define PIXEL_WAVEFORM (0x2d74b5)
-
-
-
-/*
- * Main display loop. This function never returns! It handles display output.
- * It needs to respond to certain events set by the events pointer. Also it
- * informs events what the current mask is. To optain the current mask we need
- * the X and Y coordinates from our mousedata pointer.
- */
-void display_main(skindata_t *skindata, audiodata_t *audiodata, events_t *events, mousedata_t *mousedata);
-
-
-
-/*
- * reload equalizer bars into the display memory.
- */
-void reload_equalizer(events_t *events, unsigned 4 *equalizer_levels_ptr);
-
-#else
-#error "ERROR file display.hch multiple times included"
-#endif /* --- _DISPLAY_HCH --- */