src/share/classes/sun/java2d/pipe/RenderBuffer.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 25,35 **** package sun.java2d.pipe; import sun.misc.Unsafe; - import javax.tools.annotation.GenerateNativeHeader; /** * The RenderBuffer class is a simplified, high-performance, Unsafe wrapper * used for buffering rendering operations in a single-threaded rendering * environment. It's functionality is similar to the ByteBuffer and related --- 25,34 ----
*** 42,53 **** * * This class only includes the bare minimum of methods to support * single-threaded rendering. For example, there is no put(double[]) method * because we currently have no need for such a method in the STR classes. */ - /* No native methods here, but the constants are needed in the supporting JNI code */ - @GenerateNativeHeader public class RenderBuffer { /** * These constants represent the size of various data types (in bytes). */ --- 41,50 ----