OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clipBegin
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Actor.java
701
/** Calls {@link #
clipBegin
(float, float, float, float)} to clip this actor's bounds. */
702
public boolean
clipBegin
() {
703
return
clipBegin
(x, y, width, height);
711
public boolean
clipBegin
(float x, float y, float width, float height) {
726
/** Ends clipping begun by {@link #
clipBegin
(float, float, float, float)}. */
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Container.java
48
if (
clipBegin
(padLeft, padBottom, getWidth() - padLeft - padRight.get(this),
723
boolean draw = background == null ?
clipBegin
(0, 0, getWidth(), getHeight()) :
clipBegin
(padLeft, padBottom,
Table.java
108
if (
clipBegin
(padLeft, padBottom, getWidth() - padLeft - padRight.get(this),
[
all
...]
Completed in 562 milliseconds