summaryrefslogtreecommitdiffstats
path: root/Python/dynload_beos.c
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2003-06-29 16:59:59 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2003-06-29 16:59:59 (GMT)
commite3a565eed0a8870e5f8b5d05040c0207ee99140f (patch)
treecd6711dd9fccb1b58f573cc59a77294b52e6826f /Python/dynload_beos.c
parent97b2e84d435052366f0e38a77e275173f87a6a59 (diff)
downloadcpython-e3a565eed0a8870e5f8b5d05040c0207ee99140f.zip
cpython-e3a565eed0a8870e5f8b5d05040c0207ee99140f.tar.gz
cpython-e3a565eed0a8870e5f8b5d05040c0207ee99140f.tar.bz2
Fix grammar in comment.
Diffstat (limited to 'Python/dynload_beos.c')
0 files changed, 0 insertions, 0 deletions
oftware ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] QGLPixelBuffer pbuffer(...); ... pbuffer.makeCurrent(); GLuint dynamicTexture = pbuffer.generateDynamicTexture(); pbuffer.bindToDynamicTexture(dynamicTexture); ... pbuffer.releaseFromDynamicTexture(); //! [0] //! [1] QGLPixelBuffer pbuffer(...); ... pbuffer.makeCurrent(); GLuint dynamicTexture = pbuffer.generateDynamicTexture(); ... pbuffer.updateDynamicTexture(dynamicTexture); //! [1]