Print this page
rev 54883 : JDK-8220154 Improve java2d rendering performance on macOS by using Metal framework

Split Close
Expand all
Collapse all
          --- old/src/java.desktop/macosx/native/libawt_lwawt/awt/AWTView.h
          +++ new/src/java.desktop/macosx/native/libawt_lwawt/awt/AWTView.h
↓ open down ↓ 16 lines elided ↑ open up ↑
  17   17   * You should have received a copy of the GNU General Public License version
  18   18   * 2 along with this work; if not, write to the Free Software Foundation,
  19   19   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20   20   *
  21   21   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22   22   * or visit www.oracle.com if you need additional information or have any
  23   23   * questions.
  24   24   */
  25   25  
  26   26  #import <Cocoa/Cocoa.h>
  27      -
       27 +#import <Metal/Metal.h>
       28 +#import <MetalKit/MetalKit.h>
  28   29  #import "CDragSource.h"
  29   30  #import "CDropTarget.h"
  30   31  
  31   32  @interface AWTView : NSView<NSTextInputClient, CDragSourceHolder, CDropTargetHolder> {
  32   33  @private
  33   34      jobject m_cPlatformView;
  34   35  
  35   36      // Handler for the tracking area needed for Enter/Exit events management.
  36   37      NSTrackingArea* rolloverTrackingArea;
  37   38  
↓ open down ↓ 34 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX