Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
3ab5d845
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3ab5d845
编写于
6月 26, 2009
作者:
M
malenkov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6679840: provide a way to choose v-synced BufferStrategy
Reviewed-by: peterz
上级
98e672f4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
65 addition
and
38 deletion
+65
-38
src/share/classes/com/sun/java/swing/SwingUtilities3.java
src/share/classes/com/sun/java/swing/SwingUtilities3.java
+42
-1
src/share/classes/javax/swing/BufferStrategyPaintManager.java
...share/classes/javax/swing/BufferStrategyPaintManager.java
+23
-37
未找到文件。
src/share/classes/com/sun/java/swing/SwingUtilities3.java
浏览文件 @
3ab5d845
/*
* Copyright 2002-200
8
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 2002-200
9
Sun Microsystems, Inc. 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
...
...
@@ -27,13 +27,17 @@ package com.sun.java.swing;
import
sun.awt.EventQueueDelegate
;
import
sun.awt.AppContext
;
import
java.util.Collections
;
import
java.util.Map
;
import
java.util.WeakHashMap
;
import
java.util.concurrent.Callable
;
import
java.awt.AWTEvent
;
import
java.awt.EventQueue
;
import
java.awt.Component
;
import
java.awt.Container
;
import
javax.swing.JComponent
;
import
javax.swing.RepaintManager
;
import
javax.swing.SwingUtilities
;
/**
* A collection of utility methods for Swing.
...
...
@@ -69,6 +73,43 @@ public class SwingUtilities3 {
repaintManager
);
}
private
static
final
Map
<
Container
,
Boolean
>
vsyncedMap
=
Collections
.
synchronizedMap
(
new
WeakHashMap
<
Container
,
Boolean
>());
/**
* Sets vsyncRequested state for the {@code rootContainer}. If
* {@code isRequested} is {@code true} then vsynced
* {@code BufferStrategy} is enabled for this {@code rootContainer}.
*
* Note: requesting vsynced painting does not guarantee one. The outcome
* depends on current RepaintManager's RepaintManager.PaintManager
* and on the capabilities of the graphics hardware/software and what not.
*
* @param rootContainer topmost container. Should be either {@code Window}
* or {@code Applet}
* @param isRequested the value to set vsyncRequested state to
*/
public
static
void
setVsyncRequested
(
Container
rootContainer
,
boolean
isRequested
)
{
assert
SwingUtilities
.
getRoot
(
rootContainer
)
==
rootContainer
;
if
(
isRequested
)
{
vsyncedMap
.
put
(
rootContainer
,
Boolean
.
TRUE
);
}
else
{
vsyncedMap
.
remove
(
rootContainer
);
}
}
/**
* Checks if vsync painting is requested for {@code rootContainer}
*
* @param rootContainer topmost container. Should be either Window or Applet
* @return {@code true} if vsync painting is requested for {@code rootContainer}
*/
public
static
boolean
isVsyncRequested
(
Container
rootContainer
)
{
assert
SwingUtilities
.
getRoot
(
rootContainer
)
==
rootContainer
;
return
Boolean
.
TRUE
==
vsyncedMap
.
get
(
rootContainer
);
}
/**
* Returns delegate {@code RepaintManager} for {@code component} hierarchy.
*/
...
...
src/share/classes/javax/swing/BufferStrategyPaintManager.java
浏览文件 @
3ab5d845
/*
* Copyright 2005-200
8
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 2005-200
9
Sun Microsystems, Inc. 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
...
...
@@ -33,9 +33,13 @@ import java.lang.ref.WeakReference;
import
java.security.AccessController
;
import
java.util.*
;
import
java.util.logging.*
;
import
com.sun.java.swing.SwingUtilities3
;
import
sun.awt.SubRegionShowable
;
import
sun.java2d.SunGraphics2D
;
import
sun.security.action.GetPropertyAction
;
import
sun.java2d.pipe.hw.ExtendedBufferCapabilities
;
/**
* A PaintManager implementation that uses a BufferStrategy for
...
...
@@ -73,12 +77,6 @@ class BufferStrategyPaintManager extends RepaintManager.PaintManager {
private
static
Method
COMPONENT_CREATE_BUFFER_STRATEGY_METHOD
;
private
static
Method
COMPONENT_GET_BUFFER_STRATEGY_METHOD
;
/**
* Indicates whether or not we should try and get a flip buffer strategy
* first, default is false.
*/
private
static
boolean
TRY_FLIP
;
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
"javax.swing.BufferStrategyPaintManager"
);
...
...
@@ -151,12 +149,6 @@ class BufferStrategyPaintManager extends RepaintManager.PaintManager {
*/
private
boolean
disposeBufferOnEnd
;
static
{
TRY_FLIP
=
"true"
.
equals
(
AccessController
.
doPrivileged
(
new
GetPropertyAction
(
"swing.useFlipBufferStrategy"
,
"false"
)));
}
private
static
Method
getGetBufferStrategyMethod
()
{
if
(
COMPONENT_GET_BUFFER_STRATEGY_METHOD
==
null
)
{
getMethods
();
...
...
@@ -257,7 +249,7 @@ class BufferStrategyPaintManager extends RepaintManager.PaintManager {
try
{
BufferInfo
info
=
getBufferInfo
(
c
);
BufferStrategy
bufferStrategy
;
if
(
info
!=
null
&&
!
info
.
usingFlip
&&
info
.
isInSync
()
&&
if
(
info
!=
null
&&
info
.
isInSync
()
&&
(
bufferStrategy
=
info
.
getBufferStrategy
(
false
))
!=
null
)
{
SubRegionShowable
bsSubRegion
=
(
SubRegionShowable
)
bufferStrategy
;
...
...
@@ -685,8 +677,6 @@ class BufferStrategyPaintManager extends RepaintManager.PaintManager {
// same reason.
private
WeakReference
<
BufferStrategy
>
weakBS
;
private
WeakReference
<
Container
>
root
;
// Whether or not we're using flip bs or blit.
private
boolean
usingFlip
;
// Indicates whether or not the backbuffer and display are in sync.
// This is set to true when a full repaint on the rootpane is done.
private
boolean
inSync
;
...
...
@@ -763,13 +753,6 @@ class BufferStrategyPaintManager extends RepaintManager.PaintManager {
return
bs
;
}
/**
* Returns true if using a flip buffer strategy.
*/
public
boolean
usingFlip
()
{
return
usingFlip
;
}
/**
* Returns true if the buffer strategy of the component differs
* from current buffer strategy.
...
...
@@ -814,23 +797,19 @@ class BufferStrategyPaintManager extends RepaintManager.PaintManager {
* blit.
*/
private
BufferStrategy
createBufferStrategy
()
{
BufferCapabilities
caps
;
Container
root
=
getRoot
();
if
(
root
==
null
)
{
return
null
;
}
BufferStrategy
bs
=
null
;
if
(
TRY_FLIP
)
{
bs
=
createBufferStrategy
(
root
,
BufferCapabilities
.
FlipContents
.
COPIED
);
usingFlip
=
true
;
if
(
SwingUtilities3
.
isVsyncRequested
(
root
))
{
bs
=
createBufferStrategy
(
root
,
true
);
if
(
LOGGER
.
isLoggable
(
Level
.
FINER
))
{
LOGGER
.
finer
(
"createBufferStrategy: using
flip
strategy"
);
LOGGER
.
finer
(
"createBufferStrategy: using
vsynced
strategy"
);
}
}
if
(
bs
==
null
)
{
bs
=
createBufferStrategy
(
root
,
null
);
usingFlip
=
false
;
bs
=
createBufferStrategy
(
root
,
false
);
}
if
(!(
bs
instanceof
SubRegionShowable
))
{
// We do this for two reasons:
...
...
@@ -843,15 +822,22 @@ class BufferStrategyPaintManager extends RepaintManager.PaintManager {
return
bs
;
}
// Creates and returns a buffer strategy
of the requested type
. If
// Creates and returns a buffer strategy. If
// there is a problem creating the buffer strategy this will
// eat the exception and return null.
private
BufferStrategy
createBufferStrategy
(
Container
root
,
BufferCapabilities
.
FlipContents
type
)
{
BufferCapabilities
caps
=
new
BufferCapabilities
(
new
ImageCapabilities
(
true
),
new
ImageCapabilities
(
true
),
type
);
boolean
isVsynced
)
{
BufferCapabilities
caps
;
if
(
isVsynced
)
{
caps
=
new
ExtendedBufferCapabilities
(
new
ImageCapabilities
(
true
),
new
ImageCapabilities
(
true
),
BufferCapabilities
.
FlipContents
.
COPIED
,
ExtendedBufferCapabilities
.
VSyncType
.
VSYNC_ON
);
}
else
{
caps
=
new
BufferCapabilities
(
new
ImageCapabilities
(
true
),
new
ImageCapabilities
(
true
),
null
);
}
BufferStrategy
bs
=
null
;
if
(
root
instanceof
Applet
)
{
try
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录