Skip to content

Commit 0babf06

Browse files
committedSep 24, 2021
Removed MTLGraphics::clearQuad after fix for JDK-8273946

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed
 

‎modules/javafx.graphics/src/main/java/com/sun/prism/mtl/MTLGraphics.java

-6
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,6 @@ public void clear(Color color) {
5454
// TODO: MTL: verify the returned res value
5555
}
5656

57-
@Override
58-
public void clearQuad(float x1, float y1, float x2, float y2) {
59-
System.err.println("MTLGraphics.clearQuad(): x1 = " + x1 + ", y1 = " + y1 + ", x2 = " + x2 + ", y2 = " + y2);
60-
// TODO: MTL: Clear the rtt
61-
}
62-
6357
@Override
6458
public void sync() {
6559
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.

0 commit comments

Comments
 (0)
Please sign in to comment.