No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

68 líneas
1.7 KiB

  1. /*
  2. * gamma libcucul gamma test program
  3. * Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the Do What The Fuck You Want To
  10. * Public License, Version 2, as published by Sam Hocevar. See
  11. * http://sam.zoy.org/wtfpl/COPYING for more details.
  12. */
  13. #include "config.h"
  14. #if defined(HAVE_INTTYPES_H)
  15. # include <inttypes.h>
  16. #else
  17. typedef unsigned char uint8_t;
  18. typedef unsigned short uint16_t;
  19. typedef unsigned int uint32_t;
  20. #endif
  21. #include "cucul.h"
  22. #include "caca.h"
  23. uint32_t buffer[256];
  24. int main(void)
  25. {
  26. cucul_t *qq;
  27. caca_t *kk;
  28. struct cucul_bitmap *left, *right;
  29. int x;
  30. qq = cucul_init();
  31. kk = caca_attach(qq);
  32. for(x = 0; x < 256; x++)
  33. buffer[x] = (x << 16) | (x << 8) | (x<< 0);
  34. left = cucul_create_bitmap(qq, 32, 256, 1, 4 * 256,
  35. 0x00ff0000, 0x0000ff00, 0x000000ff, 0x0);
  36. right = cucul_create_bitmap(qq, 32, 256, 1, 4 * 256,
  37. 0x00ff0000, 0x0000ff00, 0x000000ff, 0x0);
  38. cucul_set_bitmap_gamma(right, 0.5);
  39. cucul_draw_bitmap(qq, 0, 0,
  40. cucul_get_width(qq) - 1, cucul_get_height(qq) / 2 - 1,
  41. right, buffer);
  42. cucul_draw_bitmap(qq, 0, cucul_get_height(qq) / 2,
  43. cucul_get_width(qq) - 1, cucul_get_height(qq) - 1,
  44. left, buffer);
  45. cucul_free_bitmap(left);
  46. cucul_free_bitmap(right);
  47. caca_display(kk);
  48. while(!caca_get_event(kk, CACA_EVENT_KEY_PRESS));
  49. caca_detach(kk);
  50. cucul_end(qq);
  51. return 0;
  52. }