var fDesc=new Array(); fDesc[0] = "Pencilsheep executes all performance-critical operations (blending, filters, paint tools, etc.) on the GPU. Unlike traditional image editors (which either don't use GPU computing at all, or only offer partial GPU acceleration), Pencilsheep has been specifically designed from the ground up to fully utilize the GPU for all image manipulations. For many tasks, Pencilsheep is orders of magnitude faster than traditional image editors.

In addition to applying filters destructively like in traditional image editors, Pencilsheep also allows you to place filters as interactive filter layers anywhere in the filter stack. Filter layers are automatically updated when the underlying layers are changed. Immediate recomputation is made possible by Pencilsheep's fully GPU accelerated renderer.

Pencilsheep supports various different color formats with different ranges and bit depths (up to 32 bit per channel / 256 bit per pixel HDR). Every tool and filter fully supports all available formats."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }