OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FloatAttribute
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/3rdparty/openexr/IlmImf/
ImfFloatAttribute.h
42
// class
FloatAttribute
52
typedef TypedAttribute<float>
FloatAttribute
;
53
template <> const char *
FloatAttribute
::staticTypeName ();
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
FloatAttribute.java
23
public class
FloatAttribute
extends Attribute {
27
public static
FloatAttribute
createShininess (float value) {
28
return new
FloatAttribute
(Shininess, value);
34
public static
FloatAttribute
createAlphaTest (float value) {
35
return new
FloatAttribute
(AlphaTest, value);
40
public
FloatAttribute
(long type) {
44
public
FloatAttribute
(long type, float value) {
51
return new
FloatAttribute
(type, value);
64
final float v = ((
FloatAttribute
)o).value;
/external/tinyxml2/
tinyxml2.h
892
float
FloatAttribute
( const char* name ) const { float f=0; QueryFloatAttribute( name, &f ); return f; }
[
all
...]
Completed in 259 milliseconds