17117f1b4Smrg/*
27117f1b4Smrg * Mesa 3-D graphics library
37117f1b4Smrg *
47117f1b4Smrg * Copyright (C) 1999-2006  Brian Paul   All Rights Reserved.
57117f1b4Smrg *
67117f1b4Smrg * Permission is hereby granted, free of charge, to any person obtaining a
77117f1b4Smrg * copy of this software and associated documentation files (the "Software"),
87117f1b4Smrg * to deal in the Software without restriction, including without limitation
97117f1b4Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
107117f1b4Smrg * and/or sell copies of the Software, and to permit persons to whom the
117117f1b4Smrg * Software is furnished to do so, subject to the following conditions:
127117f1b4Smrg *
137117f1b4Smrg * The above copyright notice and this permission notice shall be included
147117f1b4Smrg * in all copies or substantial portions of the Software.
157117f1b4Smrg *
167117f1b4Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
177117f1b4Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
187117f1b4Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19af69d88dSmrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20af69d88dSmrg * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21af69d88dSmrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22af69d88dSmrg * OTHER DEALINGS IN THE SOFTWARE.
237117f1b4Smrg */
247117f1b4Smrg
257117f1b4Smrg
267117f1b4Smrg#ifndef ASM_MMX_H
277117f1b4Smrg#define ASM_MMX_H
287117f1b4Smrg
297ec681f3Smrg#include "util/compiler.h"
303464ebd5Sriastradh#include "main/glheader.h"
313464ebd5Sriastradh
323464ebd5Sriastradhstruct gl_context;
333464ebd5Sriastradh
3401e04c3fSmrgextern void
353464ebd5Sriastradh_mesa_mmx_blend_transparency( struct gl_context *ctx, GLuint n, const GLubyte mask[],
367117f1b4Smrg                              GLvoid *rgba, const GLvoid *dest,
377117f1b4Smrg                              GLenum chanType );
387117f1b4Smrg
3901e04c3fSmrgextern void
403464ebd5Sriastradh_mesa_mmx_blend_add( struct gl_context *ctx, GLuint n, const GLubyte mask[],
417117f1b4Smrg                     GLvoid *rgba, const GLvoid *dest,
427117f1b4Smrg                     GLenum chanType );
437117f1b4Smrg
4401e04c3fSmrgextern void
453464ebd5Sriastradh_mesa_mmx_blend_min( struct gl_context *ctx, GLuint n, const GLubyte mask[],
467117f1b4Smrg                     GLvoid *rgba, const GLvoid *dest,
477117f1b4Smrg                     GLenum chanType );
487117f1b4Smrg
4901e04c3fSmrgextern void
503464ebd5Sriastradh_mesa_mmx_blend_max( struct gl_context *ctx, GLuint n, const GLubyte mask[],
517117f1b4Smrg                     GLvoid *rgba, const GLvoid *dest,
527117f1b4Smrg                     GLenum chanType );
537117f1b4Smrg
5401e04c3fSmrgextern void
553464ebd5Sriastradh_mesa_mmx_blend_modulate( struct gl_context *ctx, GLuint n, const GLubyte mask[],
567117f1b4Smrg                          GLvoid *rgba, const GLvoid *dest,
577117f1b4Smrg                          GLenum chanType );
587117f1b4Smrg
597117f1b4Smrg#endif
60