oooops... doint turn off blending just becuase theimage has no alpah

channel.. enable it fi were multilpying the alpah by anythign other than
255... :)


SVN revision: 5289
This commit is contained in:
Carsten Haitzler 2001-08-26 04:02:57 +00:00
parent 7cec80e83e
commit 7ad7164ded
1 changed files with 2 additions and 1 deletions

View File

@ -1514,7 +1514,8 @@ __evas_gl_image_draw(Evas_GL_Image *im,
glw = __evas_gl_window_current(disp, w, win_w, win_h);
if (!glw) return;
__evas_gl_window_texture(glw, 1);
__evas_gl_window_blend(glw, im->has_alpha);
if (ca == 255) __evas_gl_window_blend(glw, im->has_alpha);
else __evas_gl_window_blend(glw, 1);
__evas_gl_window_write_buf(glw, GL_BACK);
__evas_gl_window_read_buf(glw, GL_BACK);
__evas_gl_window_color(glw, cr, cg, cb, ca);