You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

64 lines
1.5 KiB

  1. /*
  2. * hsv libcaca HSV rendering test program
  3. * Copyright (c) 2003 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This program is free software. It comes without any warranty, to
  9. * the extent permitted by applicable law. You can redistribute it
  10. * and/or modify it under the terms of the Do What The Fuck You Want
  11. * To Public License, Version 2, as published by Sam Hocevar. See
  12. * http://sam.zoy.org/wtfpl/COPYING for more details.
  13. */
  14. #include "config.h"
  15. #if !defined(__KERNEL__)
  16. # include <stdio.h>
  17. #endif
  18. #include "cucul.h"
  19. #include "caca.h"
  20. uint32_t buffer[256*256];
  21. int main(int argc, char *argv[])
  22. {
  23. caca_display_t *dp;
  24. cucul_canvas_t *cv;
  25. cucul_dither_t *dither;
  26. int x, y;
  27. dp = caca_create_display(NULL);
  28. if(dp == NULL)
  29. {
  30. printf("Can't create display\n");
  31. return -1;
  32. }
  33. cv = caca_get_canvas(dp);
  34. for(y = 0; y < 256; y++)
  35. for(x = 0; x < 256; x++)
  36. {
  37. buffer[y * 256 + x] = ((y * x / 256) << 16) | ((y * x / 256) << 8) | (x<< 0);
  38. }
  39. dither = cucul_create_dither(32, 256, 256, 4 * 256,
  40. 0x00ff0000, 0x0000ff00, 0x000000ff, 0x0);
  41. cucul_dither_bitmap(caca_get_canvas(dp), 0, 0, cucul_get_canvas_width(cv),
  42. cucul_get_canvas_height(cv), dither, buffer);
  43. cucul_free_dither(dither);
  44. caca_refresh_display(dp);
  45. caca_get_event(dp, CACA_EVENT_KEY_PRESS, NULL, -1);
  46. caca_free_display(dp);
  47. return 0;
  48. }