swrast: remove MAX_WIDTH arrays in s_drawpix.c
[mesa.git] / src / mesa / swrast / s_blend.h
index 5afa604783e9e3b42a724b81590eca27c3d9c045..69cd89e7ac4a0fce6d9f7f8582a65d05323d4828 100644 (file)
@@ -1,10 +1,8 @@
-/* $Id: s_blend.h,v 1.8 2003/03/25 02:23:45 brianp Exp $ */
-
 /*
  * Mesa 3-D graphics library
- * Version:  4.1
+ * Version:  6.5.2
  *
- * Copyright (C) 1999-2002  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2006  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
 #define S_BLEND_H
 
 
-#include "mtypes.h"
-#include "s_context.h"
+#include "main/glheader.h"
+#include "s_span.h"
 
+struct gl_context;
+struct gl_renderbuffer;
 
 
 extern void
-_swrast_blend_span( GLcontext *ctx, const struct sw_span *span,
-                  GLchan rgba[][4] );
+_swrast_blend_span(struct gl_context *ctx, struct gl_renderbuffer *rb, SWspan *span);
 
 
 extern void
-_swrast_choose_blend_func( GLcontext *ctx );
+_swrast_choose_blend_func(struct gl_context *ctx, GLenum chanType);
 
 
 #endif