OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g2d
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/awt/org/apache/harmony/awt/gl/font/
TextDecorator.java
201
* @param
g2d
- graphics to draw to
208
TextRunSegment trs, Graphics2D
g2d
,
217
d.graphicsPaint =
g2d
.getPaint();
225
g2d
.setPaint(d.fg);
234
g2d
.fill(toFill);
237
g2d
.setPaint(d.bg == null ? Color.WHITE : d.bg);
240
g2d
.setPaint(d.bg);
249
g2d
.fill(toFill);
253
g2d
.setPaint(d.fg);
260
* @param
g2d
- graphic
[
all
...]
TextRunSegmentImpl.java
140
* @param
g2d
- graphics to render to
147
void draw(Graphics2D
g2d
, float xOffset, float yOffset) {
149
g2d
.drawGlyphVector(getGlyphVector(), xOffset + x, yOffset + y);
151
TextDecorator.prepareGraphics(this,
g2d
, xOffset, yOffset);
152
g2d
.drawGlyphVector(getGlyphVector(), xOffset + x, yOffset + y);
153
TextDecorator.drawTextDecorations(this,
g2d
, xOffset, yOffset);
154
TextDecorator.restoreGraphics(decoration,
g2d
);
814
void draw(Graphics2D
g2d
, float xOffset, float yOffset) {
816
TextDecorator.prepareGraphics(this,
g2d
, xOffset, yOffset);
823
ga.draw(
g2d
, xPos, yPos)
[
all
...]
TextRunSegment.java
62
* @param
g2d
- graphics to render to
68
abstract void draw(Graphics2D
g2d
, float xOffset, float yOffset);
TextRunBreaker.java
600
* @param
g2d
- graphics where to render
606
public void drawSegments(Graphics2D
g2d
, float xOffset, float yOffset) {
608
runSegments.get(i).draw(
g2d
, xOffset, yOffset);
/frameworks/base/awt/java/awt/font/
TextLayout.java
299
* @param
g2d
306
public void draw(Graphics2D
g2d
, float x, float y) {
308
breaker.drawSegments(
g2d
, x, y);
/frameworks/base/awt/java/awt/image/
ColorConvertOp.java
588
Graphics2D
g2d
= dst.createGraphics();
local
589
g2d
.drawImage(res, 0, 0, null);
590
g2d
.dispose();
/frameworks/base/awt/org/apache/harmony/awt/gl/
CommonGraphics2D.java
160
protected static final boolean debugOutput = "1".equals(System.getProperty("
g2d
.debug")); //$NON-NLS-1$ //$NON-NLS-2$
[
all
...]
Completed in 119 milliseconds