equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * |
4 * |
5 * This code is free software; you can redistribute it and/or modify it |
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 |
6 * under the terms of the GNU General Public License version 2 only, as |
7 * published by the Free Software Foundation. Oracle designates this |
7 * published by the Free Software Foundation. Oracle designates this |
59 private static ImageCapabilities imageCaps = new D3DImageCaps(); |
59 private static ImageCapabilities imageCaps = new D3DImageCaps(); |
60 |
60 |
61 private BufferCapabilities bufferCaps; |
61 private BufferCapabilities bufferCaps; |
62 private D3DGraphicsDevice device; |
62 private D3DGraphicsDevice device; |
63 |
63 |
|
64 @SuppressWarnings("deprecation") |
64 protected D3DGraphicsConfig(D3DGraphicsDevice device) { |
65 protected D3DGraphicsConfig(D3DGraphicsDevice device) { |
65 super(device, 0); |
66 super(device, 0); |
66 this.device = device; |
67 this.device = device; |
67 } |
68 } |
68 |
69 |