src/share/classes/sun/java2d/pipe/hw/AccelSurface.java

Print this page


   1 /*
   2  * Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.java2d.pipe.hw;
  27 
  28 import java.awt.Rectangle;
  29 import sun.java2d.Surface;
  30 
  31 import javax.tools.annotation.GenerateNativeHeader;
  32 
  33 /**
  34  * Abstraction for a hardware accelerated surface.
  35  */
  36 /* No native methods here, but the constants are needed in the supporting JNI code */
  37 @GenerateNativeHeader
  38 public interface AccelSurface extends BufferedContextProvider, Surface {
  39     /**
  40      * Undefined
  41      */
  42     public static final int UNDEFINED       = 0;
  43     /**
  44      * Window (or window substitute) surface
  45      */
  46     public static final int WINDOW          = 1;
  47     /**
  48      * Render-To Plain surface (pbuffer for OpenGL, Render Target surface
  49      * for Direct3D)
  50      */
  51     public static final int RT_PLAIN        = 2;
  52     /**
  53      * Texture surface
  54      */
  55     public static final int TEXTURE         = 3;
  56     /**
  57      * A back-buffer surface (SwapChain surface for Direct3D, backbuffer for
  58      * OpenGL)
  59      */
  60     public static final int FLIP_BACKBUFFER = 4;
  61     /**
  62      * Render-To Texture surface (fbobject for OpenGL, texture with render-to
  63      * attribute for Direct3D)
  64      */
  65     public static final int RT_TEXTURE      = 5;
  66 
  67     /**
  68      * Returns {@code int} representing surface's type as defined by constants
  69      * in this interface.
  70      *
  71      * @return an integer representing this surface's type
  72      * @see AccelSurface#UNDEFINED
  73      * @see AccelSurface#WINDOW
  74      * @see AccelSurface#RT_PLAIN
  75      * @see AccelSurface#TEXTURE
  76      * @see AccelSurface#FLIP_BACKBUFFER
  77      * @see AccelSurface#RT_TEXTURE
  78      */
  79     public int getType();
  80 
  81     /**
  82      * Returns a pointer to the native surface data associated with this
  83      * surface.
  84      * Note: this pointer is only valid on the rendering thread.
  85      *


   1 /*
   2  * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.java2d.pipe.hw;
  27 
  28 import java.awt.Rectangle;
  29 import sun.java2d.Surface;
  30 
  31 import java.lang.annotation.Native;
  32 
  33 /**
  34  * Abstraction for a hardware accelerated surface.
  35  */


  36 public interface AccelSurface extends BufferedContextProvider, Surface {
  37     /**
  38      * Undefined
  39      */
  40     @Native public static final int UNDEFINED       = 0;
  41     /**
  42      * Window (or window substitute) surface
  43      */
  44     @Native public static final int WINDOW          = 1;
  45     /**
  46      * Render-To Plain surface (pbuffer for OpenGL, Render Target surface
  47      * for Direct3D)
  48      */
  49     @Native public static final int RT_PLAIN        = 2;
  50     /**
  51      * Texture surface
  52      */
  53     @Native public static final int TEXTURE         = 3;
  54     /**
  55      * A back-buffer surface (SwapChain surface for Direct3D, backbuffer for
  56      * OpenGL)
  57      */
  58     @Native public static final int FLIP_BACKBUFFER = 4;
  59     /**
  60      * Render-To Texture surface (fbobject for OpenGL, texture with render-to
  61      * attribute for Direct3D)
  62      */
  63     @Native public static final int RT_TEXTURE      = 5;
  64 
  65     /**
  66      * Returns {@code int} representing surface's type as defined by constants
  67      * in this interface.
  68      *
  69      * @return an integer representing this surface's type
  70      * @see AccelSurface#UNDEFINED
  71      * @see AccelSurface#WINDOW
  72      * @see AccelSurface#RT_PLAIN
  73      * @see AccelSurface#TEXTURE
  74      * @see AccelSurface#FLIP_BACKBUFFER
  75      * @see AccelSurface#RT_TEXTURE
  76      */
  77     public int getType();
  78 
  79     /**
  80      * Returns a pointer to the native surface data associated with this
  81      * surface.
  82      * Note: this pointer is only valid on the rendering thread.
  83      *