您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

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