Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

61 Zeilen
1.4 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; 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. #include "common.h"
  15. #if defined(HAVE_INTTYPES_H)
  16. # include <inttypes.h>
  17. #endif
  18. #include <stdio.h>
  19. #include "cucul.h"
  20. #include "caca.h"
  21. uint32_t buffer[256*256];
  22. int main(void)
  23. {
  24. cucul_canvas_t *cv;
  25. caca_display_t *dp;
  26. cucul_dither_t *dither;
  27. int x, y;
  28. cv = cucul_create_canvas(0, 0);
  29. dp = caca_create_display(cv);
  30. for(y = 0; y < 256; y++)
  31. for(x = 0; x < 256; x++)
  32. {
  33. buffer[y * 256 + x] = ((y * x / 256) << 16) | ((y * x / 256) << 8) | (x<< 0);
  34. }
  35. dither = cucul_create_dither(32, 256, 256, 4 * 256,
  36. 0x00ff0000, 0x0000ff00, 0x000000ff, 0x0);
  37. cucul_dither_bitmap(cv, 0, 0, cucul_get_canvas_width(cv),
  38. cucul_get_canvas_height(cv), dither, buffer);
  39. cucul_free_dither(dither);
  40. caca_refresh_display(dp);
  41. caca_get_event(dp, CACA_EVENT_KEY_PRESS, NULL, -1);
  42. caca_free_display(dp);
  43. cucul_free_canvas(cv);
  44. return 0;
  45. }