ソースを参照

* Do not assume default gamma value is 1.0.

tags/v0.99.beta14
Sam Hocevar sam 17年前
コミット
7db5247e43
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      test/gamma.c

+ 2
- 1
test/gamma.c ファイルの表示

@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
cucul_canvas_t *cv, *cw, *mask;
caca_display_t *dp;
cucul_dither_t *left, *right;
float gam = 1.0;
float gam;
int x;

cv = cucul_create_canvas(0, 0);
@@ -65,6 +65,7 @@ int main(int argc, char *argv[])
0x00ff0000, 0x0000ff00, 0x000000ff, 0x0);
right = cucul_create_dither(32, 256, 4, 4 * 256,
0x00ff0000, 0x0000ff00, 0x000000ff, 0x0);
gam = cucul_get_dither_gamma(right);
caca_set_display_time(dp, 20000);

for(x = 0; ; x++)


読み込み中…
キャンセル
保存