OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Technique
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/material/
Technique.java
44
* Represents a
technique
instance.
46
public class
Technique
implements Savable {
48
private static final Logger logger = Logger.getLogger(
Technique
.class.getName());
57
* Creates a new
technique
instance that implements the given
58
*
technique
definition.
60
* @param owner The material that will own this
technique
61
* @param def The
technique
definition being implemented.
63
public
Technique
(Material owner, TechniqueDef def) {
75
public
Technique
() {
79
* Returns the
technique
definition that is implemented by this techniqu
[
all
...]
MatParamTexture.java
44
public void apply(Renderer r,
Technique
technique
) {
45
TechniqueDef techDef =
technique
.getDef();
48
technique
.updateUniformParam(getPrefixedName(), getVarType(), getUnit(), true);
Material.java
91
private
Technique
technique
;
field in class:Material
92
private HashMap<String,
Technique
> techniques = new HashMap<String,
Technique
>();
172
Technique
t = getActiveTechnique();
224
mat.
technique
= null;
225
mat.techniques = new HashMap<String,
Technique
>();
240
* Returns the currently active
technique
.
242
* The
technique
is selected automatically by the {@link RenderManager}
244
*
technique
by usin
[
all
...]
MatParam.java
144
void apply(Renderer r,
Technique
technique
) {
145
TechniqueDef techDef =
technique
.getDef();
147
technique
.updateUniformParam(getPrefixedName(), getVarType(), getValue(), true);
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
RenderManager.java
37
import com.jme3.material.
Technique
;
92
//temp
technique
516
* Returns the forced
technique
name set.
518
* @return the forced
technique
name set.
527
* Sets the forced
technique
to use when rendering geometries.
529
* If the specified
technique
name is available on the geometry's
532
* If a forced material is not set and the forced
technique
name cannot
535
* @param forcedTechnique The forced
technique
name to use, set to null
613
* If a {@link #setForcedTechnique(java.lang.String) forced
technique
} is
626
* @see
Technique
[
all
...]
Completed in 211 milliseconds