app_server: fix comment header in pixel alpha overlay modes

This commit is contained in:
Julian Harnath
2015-08-23 01:00:18 +02:00
parent 64c6e038eb
commit 01c7304204
4 changed files with 12 additions and 12 deletions
@@ -2,7 +2,7 @@
* Copyright 2005, Stephan Aßmus <[email protected]>. All rights reserved.
* Distributed under the terms of the MIT License.
*
* DrawingMode implementing B_OP_ALPHA in "Constant Overlay" mode on B_RGBA32.
* DrawingMode implementing B_OP_ALPHA in "Pixel Overlay" mode on B_RGBA32.
*
*/
@@ -43,7 +43,7 @@ blend_pixel_alpha_po(int x, int y, const color_type& c, uint8 cover,
// blend_hline_alpha_po
void
blend_hline_alpha_po(int x, int y, unsigned len,
blend_hline_alpha_po(int x, int y, unsigned len,
const color_type& c, uint8 cover,
agg_buffer* buffer, const PatternHandler* pattern)
{
@@ -65,7 +65,7 @@ blend_hline_alpha_po(int x, int y, unsigned len,
// blend_solid_hspan_alpha_po
void
blend_solid_hspan_alpha_po(int x, int y, unsigned len,
blend_solid_hspan_alpha_po(int x, int y, unsigned len,
const color_type& c, const uint8* covers,
agg_buffer* buffer, const PatternHandler* pattern)
{
@@ -90,7 +90,7 @@ blend_solid_hspan_alpha_po(int x, int y, unsigned len,
// blend_solid_vspan_alpha_po
void
blend_solid_vspan_alpha_po(int x, int y, unsigned len,
blend_solid_vspan_alpha_po(int x, int y, unsigned len,
const color_type& c, const uint8* covers,
agg_buffer* buffer, const PatternHandler* pattern)
{
@@ -114,8 +114,8 @@ blend_solid_vspan_alpha_po(int x, int y, unsigned len,
// blend_color_hspan_alpha_po
void
blend_color_hspan_alpha_po(int x, int y, unsigned len,
const color_type* colors,
blend_color_hspan_alpha_po(int x, int y, unsigned len,
const color_type* colors,
const uint8* covers, uint8 cover,
agg_buffer* buffer, const PatternHandler* pattern)
{
@@ -3,7 +3,7 @@
* Copyright 2008, Andrej Spielmann <[email protected]>.
* All rights reserved. Distributed under the terms of the MIT License.
*
* DrawingMode implementing B_OP_ALPHA in "Constant Overlay" mode on B_RGBA32.
* DrawingMode implementing B_OP_ALPHA in "Pixel Overlay" mode on B_RGBA32.
*
*/
@@ -2,7 +2,7 @@
* Copyright 2005, Stephan Aßmus <[email protected]>. All rights reserved.
* Distributed under the terms of the MIT License.
*
* DrawingMode implementing B_OP_ALPHA in "Constant Overlay" mode on B_RGBA32.
* DrawingMode implementing B_OP_ALPHA in "Pixel Overlay" mode on B_RGBA32.
*
*/
@@ -27,7 +27,7 @@ blend_pixel_alpha_po_solid(int x, int y, const color_type& c, uint8 cover,
// blend_hline_alpha_po_solid
void
blend_hline_alpha_po_solid(int x, int y, unsigned len,
blend_hline_alpha_po_solid(int x, int y, unsigned len,
const color_type& c, uint8 cover,
agg_buffer* buffer, const PatternHandler* pattern)
{
@@ -64,7 +64,7 @@ blend_hline_alpha_po_solid(int x, int y, unsigned len,
// blend_solid_hspan_alpha_po_solid
void
blend_solid_hspan_alpha_po_solid(int x, int y, unsigned len,
blend_solid_hspan_alpha_po_solid(int x, int y, unsigned len,
const color_type& c, const uint8* covers,
agg_buffer* buffer, const PatternHandler* pattern)
{
@@ -88,7 +88,7 @@ blend_solid_hspan_alpha_po_solid(int x, int y, unsigned len,
// blend_solid_vspan_alpha_po_solid
void
blend_solid_vspan_alpha_po_solid(int x, int y, unsigned len,
blend_solid_vspan_alpha_po_solid(int x, int y, unsigned len,
const color_type& c, const uint8* covers,
agg_buffer* buffer, const PatternHandler* pattern)
{
@@ -3,7 +3,7 @@
* Copyright 2008, Andrej Spielmann <[email protected]>.
* All rights reserved. Distributed under the terms of the MIT License.
*
* DrawingMode implementing B_OP_ALPHA in "Constant Overlay" mode on B_RGBA32.
* DrawingMode implementing B_OP_ALPHA in "Pixel Overlay" mode on B_RGBA32.
*
*/