summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_masking.h
diff options
context:
space:
mode:
authorDylan Baker <dylan.c.baker@intel.com>2021-08-05 10:48:28 -0700
committerMarge Bot <emma+marge@anholt.net>2021-12-03 23:53:06 +0000
commite030d5ba8ac321b4d75587d72a0a381bb906d70e (patch)
tree470d179a5790e5fcc526e48f11441cf816980199 /src/mesa/swrast/s_masking.h
parentbc2d3e7b5fd0380a34841adb81a4178afae0954f (diff)
mesa: Delete libmesa_classic
We no longer have any classic drivers, so we no longer need libmesa_classic Reviewed-by: Emma Anholt <emma@anholt.net> Acked-by: Jason Ekstrand <jason@jlekstrand.net> Acked-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Adam Jackson <ajax@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10153>
Diffstat (limited to 'src/mesa/swrast/s_masking.h')
-rw-r--r--src/mesa/swrast/s_masking.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/mesa/swrast/s_masking.h b/src/mesa/swrast/s_masking.h
deleted file mode 100644
index 03d7ad9b5c0..00000000000
--- a/src/mesa/swrast/s_masking.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Mesa 3-D graphics library
- *
- * 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"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included
- * in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
- * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
- * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- */
-
-
-#ifndef S_MASKING_H
-#define S_MASKING_H
-
-
-#include "main/glheader.h"
-#include "s_span.h"
-
-struct gl_context;
-struct gl_renderbuffer;
-
-
-extern void
-_swrast_mask_rgba_span(struct gl_context *ctx, struct gl_renderbuffer *rb,
- SWspan *span, GLuint buf);
-
-#endif