aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-09-07 02:15:00 +0200
committerSven Gothel <[email protected]>2019-09-07 02:15:00 +0200
commit2ab629205c88978891271dd51cfa2a1669a6eec2 (patch)
tree4e5e75233d6748507711245ab90f88bad9100447 /src/jogl/classes/com
parent35f719673b2c55b0766e6c9187961db7153d7d26 (diff)
Bug 1392: Add CapabilitiesFilter and GLCapabilitiesFilter supporting diverse reusable [GL]CapabilitiesImmutable list filter
To implement fix for Bug 1392, we have to remove certain GLCapabilitiesImmutable from the availability list. These filter provide a a clean reusable utility for the fix.
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/GLCapabilitiesFilter.java73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/GLCapabilitiesFilter.java b/src/jogl/classes/com/jogamp/opengl/GLCapabilitiesFilter.java
new file mode 100644
index 000000000..d2479f47d
--- /dev/null
+++ b/src/jogl/classes/com/jogamp/opengl/GLCapabilitiesFilter.java
@@ -0,0 +1,73 @@
+/**
+ * Copyright 2019 JogAmp Community. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of JogAmp Community.
+ */
+
+package com.jogamp.opengl;
+
+import java.util.ArrayList;
+
+import com.jogamp.nativewindow.CapabilitiesFilter;
+
+/**
+ * Diverse reusable {@link GLCapabilitiesImmutable} list filter
+ * @see {@link CapabilitiesFilter}
+ */
+public class GLCapabilitiesFilter extends CapabilitiesFilter {
+ protected GLCapabilitiesFilter() {}
+
+ public static class RemoveLessDepthBits<C extends GLCapabilitiesImmutable> implements RemovalCriteria<C> {
+ final int minDepthBits;
+ public RemoveLessDepthBits(final int minDepthBits) {
+ this.minDepthBits = minDepthBits;
+ }
+ public final boolean match(final C cap) {
+ return cap.getDepthBits() < minDepthBits;
+ }
+ }
+ public static class RemoveMoreDepthBits<C extends GLCapabilitiesImmutable> implements RemovalCriteria<C> {
+ final int maxDepthBits;
+ public RemoveMoreDepthBits(final int maxDepthBits) {
+ this.maxDepthBits = maxDepthBits;
+ }
+ public final boolean match(final C cap) {
+ return cap.getDepthBits() > maxDepthBits;
+ }
+ }
+
+ /**
+ * Filter removing all {@link GLCapabilitiesImmutable} derived elements having depth bits < {@code minDepthBits}.
+ * @param availableCaps list of {@link GLCapabilitiesImmutable} derived elements to be filtered
+ * @param minDepthBits minimum tolerated depth bits
+ * @return the list of removed {@link GLCapabilitiesImmutable} derived elements, might be of size 0 if none were removed.
+ */
+ public static <C extends GLCapabilitiesImmutable> ArrayList<C> removeLessDepthBits(final ArrayList<C> availableCaps,
+ final int minDepthBits) {
+ final ArrayList<RemovalCriteria<C>> criteria = new ArrayList<RemovalCriteria<C>>();
+ criteria.add(new RemoveLessDepthBits<C>(minDepthBits));
+ return CapabilitiesFilter.removeMatching(availableCaps, criteria);
+ }
+}