HomeSort by relevance Sort by last modified time
    Searched refs:Functions (Results 1 - 25 of 448) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/opengl/wrapper/
glwFunctions.cpp 21 * \brief OpenGL API Functions.
30 Functions::Functions (void)
glwFunctions.hpp 23 * \brief OpenGL API Functions.
37 class Functions
44 Functions (void);
glwWrapper.hpp 31 class Functions;
34 void setCurrentThreadFunctions (const glw::Functions* gl);
glwInitFunctions.hpp 33 void initES20 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 2.0 functions.
34 void initES30 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 3.0 functions.
35 void initES31 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 3.1 functions.
37 void initGL30Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.0 core functions.
38 void initGL31Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.1 core functions
    [all...]
glwInitES20Direct.hpp 32 void initES20Direct (Functions* gl); //!< Load all OpenGL ES 2 functions using compile-time linkage.
glwInitES30Direct.hpp 32 void initES30Direct (Functions* gl); //!< Load all OpenGL ES 3 functions using compile-time linkage.
glwWrapper.cpp 43 DE_THREAD_LOCAL const glw::Functions* s_functions = DE_NULL;
45 void setCurrentThreadFunctions (const glw::Functions* gl)
50 inline const glw::Functions* getCurrentThreadFunctions (void)
70 inline void set (const glw::Functions* gl)
75 inline const glw::Functions* get (void) const
77 return (const glw::Functions*)deThreadLocal_get(m_ptr);
89 void setCurrentThreadFunctions (const glw::Functions* gl)
94 inline const glw::Functions* getCurrentThreadFunctions (void)
glwInitFunctions.cpp 35 void initES20 (Functions* gl, const FunctionLoader* loader)
40 void initES30 (Functions* gl, const FunctionLoader* loader)
45 void initES31 (Functions* gl, const FunctionLoader* loader)
50 void initGL30Core (Functions* gl, const FunctionLoader* loader)
55 void initGL31Core (Functions* gl, const FunctionLoader* loader)
60 void initGL32Core (Functions* gl, const FunctionLoader* loader)
65 void initGL33Core (Functions* gl, const FunctionLoader* loader)
70 void initGL40Core (Functions* gl, const FunctionLoader* loader)
75 void initGL41Core (Functions* gl, const FunctionLoader* loader)
80 void initGL42Core (Functions* gl, const FunctionLoader* loader
    [all...]
glwImpl.inl 7 const glw::Functions* gl = glw::getCurrentThreadFunctions();
15 const glw::Functions* gl = glw::getCurrentThreadFunctions();
23 const glw::Functions* gl = glw::getCurrentThreadFunctions();
31 const glw::Functions* gl = glw::getCurrentThreadFunctions();
39 const glw::Functions* gl = glw::getCurrentThreadFunctions();
47 const glw::Functions* gl = glw::getCurrentThreadFunctions();
55 const glw::Functions* gl = glw::getCurrentThreadFunctions();
63 const glw::Functions* gl = glw::getCurrentThreadFunctions();
71 const glw::Functions* gl = glw::getCurrentThreadFunctions();
79 const glw::Functions* gl = glw::getCurrentThreadFunctions()
    [all...]
glwInitES20Direct.cpp 39 void initES20Direct (Functions* gl)
glwInitES30Direct.cpp 39 void initES30Direct (Functions* gl)
  /external/deqp/framework/opengl/
gluCallLogWrapper.hpp 32 class Functions;
41 CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log);
44 // GL API is exposed as member functions
52 const glw::Functions& m_gl;
gluObjectWrapper.cpp 35 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits)
64 { "texture", &glw::Functions::genTextures, &glw::Functions::deleteTextures },
65 { "buffer", &glw::Functions::genBuffers, &glw::Functions::deleteBuffers },
66 { "renderbuffer", &glw::Functions::genRenderbuffers, &glw::Functions::deleteRenderbuffers },
67 { "framebuffer", &glw::Functions::genFramebuffers, &glw::Functions::deleteFramebuffers },
68 { "transform feedback", &glw::Functions::genTransformFeedbacks, &glw::Functions::deleteTransformFeedbacks }
    [all...]
gluDummyRenderContext.hpp 41 * currently depend on having access to the glw::Functions already in test
44 * simple workaround for that: a dummy render context with a glw::Functions
53 virtual const glw::Functions& getFunctions (void) const { return m_functions; }
59 glw::Functions m_functions;
gluProgramInterfaceQuery.hpp 33 class Functions;
89 int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam);
90 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam);
92 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst);
93 std::string getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
95 void getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info);
96 InterfaceBlockInfo getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
98 void getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info);
99 InterfaceVariableInfo getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
103 inline int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam
    [all...]
gluES3PlusWrapperContext.hpp 58 virtual const glw::Functions& getFunctions (void) const { return m_functions; }
66 glw::Functions m_functions;
gluObjectWrapper.hpp 57 glw::glGenBuffersFunc glw::Functions::*genFunc;
58 glw::glDeleteBuffersFunc glw::Functions::*deleteFunc;
66 ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits);
73 const glw::Functions& m_gl;
89 explicit TypedObjectWrapper (const glw::Functions& gl) : ObjectWrapper(gl, objectTraits(Type)) {}
98 ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects = 0);
115 const glw::Functions& m_gl;
124 explicit TypedObjectVector (const glw::Functions& gl, size_t numObjects = 0) : ObjectVector(gl, objectTraits(Type), numObjects) {}
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 33 * Tests for {@link Functions}.
42 Function<String, String> identity = Functions.identity();
48 Function<Long, Long> identity = Functions.identity();
54 checkCanReserializeSingleton(Functions.identity());
58 assertEquals("3", Functions.toStringFunction().apply(3));
59 assertEquals("hiya", Functions.toStringFunction().apply("hiya"));
61 Functions.toStringFunction().apply(
68 Functions.toStringFunction().apply(null);
77 checkCanReserializeSingleton(Functions.toStringFunction());
83 tester.testAllPublicStaticMethods(Functions.class)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsSortedTransformValuesTest.java 24 import com.google.common.base.Functions;
37 Functions.<String>identity());
46 return Maps.transformValues(underlying, Functions.toStringFunction());
51 assertTrue(Maps.transformValues(sortedMap, Functions.<String>identity())
MultimapsTransformValuesAsMapTest.java 20 import com.google.common.base.Functions;
41 Functions.<Integer> identity()).asMap();
48 .transformValues(delegate, Functions.<Integer> identity()).asMap();
  /external/compiler-rt/test/asan/TestCases/Linux/
stress_dtls.c 55 f_t Functions[MAX_N_FUNCTIONS];
63 if (!Functions[i]) break;
64 uintptr_t dtls = (uintptr_t)Functions[i]();
90 Functions[lib] = (f_t)dlsym(handle, buf);
91 if (!Functions[lib]) {
95 fprintf(stderr, "LIB[%03d] %s: %p\n", lib, buf, Functions[lib]);
  /external/deqp/modules/glshared/
glsSamplerObjectTest.hpp 77 static void setTextureState (const glw::Functions& gl, GLenum target, SamplingState state);
78 static void setSamplerState (const glw::Functions& gl, SamplingState state, GLuint sampler);
80 static GLuint createTexture2D (const glw::Functions& gl);
81 static GLuint createTexture3D (const glw::Functions& gl);
82 static GLuint createTextureCube (const glw::Functions& gl);
83 static GLuint createTexture (const glw::Functions& gl, GLenum target);
136 static void setTextureState (const glw::Functions& gl, GLenum target, SamplingState state);
137 static void setSamplerState (const glw::Functions& gl, SamplingState state, GLuint sampler);
139 static GLuint createTexture2D (const glw::Functions& gl, int id);
140 static GLuint createTexture3D (const glw::Functions& gl, int id)
    [all...]
glsStateChangePerfTestCases.hpp 37 class Functions;
73 virtual void setupInitialState (const glw::Functions& gl) = 0;
74 virtual void renderTest (const glw::Functions& gl) = 0;
75 virtual void renderReference (const glw::Functions& gl) = 0;
77 void callDraw (const glw::Functions& gl);
117 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount) = 0;
  /external/deqp/framework/platform/null/
tcuNullRenderContext.hpp 60 virtual const glw::Functions& getFunctions (void) const { return m_functions; }
71 glw::Functions m_functions;
  /external/smali/util/src/main/java/org/jf/util/
CharSequenceUtils.java 35 import com.google.common.base.Functions;
41 private static final Function<Object, String> TO_STRING = Functions.toStringFunction();

Completed in 607 milliseconds

1 2 3 4 5 6 7 8 91011>>