Mercurial > sdl-ios-xcode
view test/testpower.c @ 4590:1ad70fb49fcb
Fix so many things that there is little place in this column to list them all but the result is that blending modes just work now for drawing primitives.
Fixes involved:
1. Fix handling of alpha channel when SDL_BLENDMODE_NONE is set.
2. Make xrendercolor use floating-point values for color channels and then convert to 16 bit ints.
3. Fix handling of visuals in SDL_x11modes.c so that a 32 bit ARGB visual is used.
4. Fix the background pixel value in SDL_x11window.c so that the window background has an alpha value of 0xFF and not 0.
author | Sunny Sachanandani <sunnysachanandani@gmail.com> |
---|---|
date | Fri, 09 Jul 2010 21:36:41 +0530 |
parents | 51750b7a966f |
children |
line wrap: on
line source
/* Simple test of power subsystem. */ #include <stdio.h> #include "SDL.h" static void report_power(void) { int seconds, percent; const SDL_PowerState state = SDL_GetPowerInfo(&seconds, &percent); char *statestr = NULL; printf("SDL-reported power info...\n"); switch (state) { case SDL_POWERSTATE_UNKNOWN: statestr = "Unknown"; break; case SDL_POWERSTATE_ON_BATTERY: statestr = "On battery"; break; case SDL_POWERSTATE_NO_BATTERY: statestr = "No battery"; break; case SDL_POWERSTATE_CHARGING: statestr = "Charging"; break; case SDL_POWERSTATE_CHARGED: statestr = "Charged"; break; default: statestr = "!!API ERROR!!"; break; } printf("State: %s\n", statestr); if (percent == -1) { printf("Percent left: unknown\n"); } else { printf("Percent left: %d%%\n", percent); } if (seconds == -1) { printf("Time left: unknown\n"); } else { printf("Time left: %d minutes, %d seconds\n", (int) (seconds / 60), (int) (seconds % 60)); } } int main(int argc, char *argv[]) { if (SDL_Init(SDL_INIT_VIDEO) == -1) { fprintf(stderr, "SDL_Init() failed: %s\n", SDL_GetError()); return 1; } report_power(); SDL_Quit(); return 0; } /* end of testpower.c ... */