Edit C:\Program Files\Java\jdk1.8.0_121\com\sun\prism\es2\ES2VramPool.java
/* * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.prism.es2; import com.sun.prism.PixelFormat; import com.sun.prism.impl.BaseResourcePool; import com.sun.prism.impl.PrismSettings; import com.sun.prism.impl.TextureResourcePool; class ES2VramPool extends BaseResourcePool<ES2TextureData> implements TextureResourcePool<ES2TextureData> { static ES2VramPool instance = new ES2VramPool(); private ES2VramPool() { super(PrismSettings.targetVram, PrismSettings.maxVram); } @Override public long estimateTextureSize(int width, int height, PixelFormat format) { return ((long) width) * ((long) height) * ((long) format.getBytesPerPixelUnit()); } @Override public long estimateRTTextureSize(int width, int height, boolean hasDepth) { // REMIND: need to deal with size of depth buffer, etc. return ((long) width) * ((long) height) * 4L; } @Override public long size(ES2TextureData resource) { return resource.getSize(); } @Override public String toString() { return "ES2 Vram Pool"; } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de