aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-11-13 09:34:02 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-13 16:20:10 +0000
commitf44754a42b9d5ced2e6f075b4bd058a498488d3a (patch)
tree63f22f5ec8fadc9cd7ea11f11bb84d2ca9aedc52 /src/gpu
parent1ff420653d72b1ba9a0621f09316febe2d82f86d (diff)
Drop support for OSMesa in test tools and remove build bot
Change-Id: Ic85ee05fe292a36a053ca7a20ccce24a4da4fae2 Reviewed-on: https://skia-review.googlesource.com/70026 Reviewed-by: Joe Gregorio <jcgregorio@google.com> Reviewed-by: Robert Phillips <robertphillips@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/gl/mesa/osmesa_wrapper.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/gpu/gl/mesa/osmesa_wrapper.h b/src/gpu/gl/mesa/osmesa_wrapper.h
deleted file mode 100644
index 4bb70a4739..0000000000
--- a/src/gpu/gl/mesa/osmesa_wrapper.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-// Older versions of XQuartz have a bug where a header included by osmesa.h
-// defines GL_GLEXT_PROTOTYPES. This will cause a redefinition warning if
-// the file that includes osmesa.h already defined it. XCode 3 uses a version
-// of gcc (4.2.1) that does not support the diagnostic pragma to disable a
-// warning (added in 4.2.4). So we use the system_header pragma to shut GCC
-// up about warnings in osmesa.h
-#pragma GCC system_header
-#include <GL/osmesa.h>