zoukankan      html  css  js  c++  java
  • e673. Getting Amount of Free Accelerated Image Memory

    Images in accelerated memory are much faster to draw on the screen. However, accelerated memory is typically limited and it is usually necessary for an application to manage the images residing in this space. This example demonstrates how to determine the amount free accelerated available.

    Note: There appears to be a problem with GraphicsDevice.getAvailableAcceleratedMemory() on some systems. The method returns 0 even if accelerated image memory is available. A workaround is to create a temporary volatile image on the graphics device before calling the method. Once the volatile image is created, the method appears to return the correct value on all subsequent calls.

    See also e601 Enabling Full-Screen Mode and e674 创建并绘制加速图像.

        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        try {
            GraphicsDevice[] gs = ge.getScreenDevices();
        
            // Get current amount of available memory in bytes for each screen
            for (int i=0; i<gs.length; i++) {
                // Workaround; see description
                VolatileImage im = gs[i].getDefaultConfiguration().createCompatibleVolatileImage(1, 1);
        
                // Retrieve available free accelerated image memory
                int bytes = gs[i].getAvailableAcceleratedMemory();
                if (bytes < 0) {
                    // Amount of memory is unlimited
                }
        
                // Release the temporary volatile image
                im.flush();
            }
        } catch (HeadlessException e) {
            // Is thrown if there are no screen devices
        }
    
    Related Examples
  • 相关阅读:
    红帽7 创建网络会话
    红帽7 Iptables与Firewalld防火墙
    红帽7 配置网卡
    红帽7 LVM逻辑卷管理器
    红帽7 RAID磁盘冗余阵列
    红帽7 磁盘划分
    wpf学习一(转)
    选中当前点击的位置
    c#客显
    两个程序间的通信有三种
  • 原文地址:https://www.cnblogs.com/borter/p/9575538.html
Copyright © 2011-2022 走看看