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

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/opengl/
gluCallLogWrapperApi.inl 4 glw::GLsync glCreateSyncFromCLeventARB (struct _cl_context* context, struct _cl_event* event, glw::GLbitfield flags);
6 void glCullFace (glw::GLenum mode);
7 void glFrontFace (glw::GLenum mode);
8 void glHint (glw::GLenum target, glw::GLenum mode);
9 void glLineWidth (glw::GLfloat width);
10 void glPointSize (glw::GLfloat size);
11 void glPolygonMode (glw::GLenum face, glw::GLenum mode)
    [all...]
gluCallLogWrapper.inl 5 glw::GLsync CallLogWrapper::glCreateSyncFromCLeventARB (struct _cl_context* param0, struct _cl_event* param1, glw::GLbitfield param2)
9 glw::GLsync returnValue = m_gl.createSyncFromCLeventARB(param0, param1, param2);
22 void CallLogWrapper::glCullFace (glw::GLenum param0)
29 void CallLogWrapper::glFrontFace (glw::GLenum param0)
36 void CallLogWrapper::glHint (glw::GLenum param0, glw::GLenum param1)
43 void CallLogWrapper::glLineWidth (glw::GLfloat param0)
50 void CallLogWrapper::glPointSize (glw::GLfloat param0)
57 void CallLogWrapper::glPolygonMode (glw::GLenum param0, glw::GLenum param1
    [all...]
gluCallLogWrapper.hpp 30 namespace glw namespace
41 CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log);
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;
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) {
    [all...]
gluProgramInterfaceQuery.hpp 31 namespace glw namespace
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...]
gluRenderContext.cpp 178 static std::vector<std::string> getExtensions (const glw::Functions& gl, ApiType apiType)
226 void initCoreFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
231 void (*initFunc) (glw::Functions* gl, const glw::FunctionLoader* loader);
234 { ApiType::es(2,0), glw::initES20 },
235 { ApiType::es(3,0), glw::initES30 },
236 { ApiType::es(3,1), glw::initES31 },
237 { ApiType::core(3,0), glw::initGL30Core },
238 { ApiType::core(3,1), glw::initGL31Core }
    [all...]
  /external/deqp/framework/opengl/wrapper/
glwWrapper.hpp 28 namespace glw namespace
34 void setCurrentThreadFunctions (const glw::Functions* gl);
glwFunctions.cpp 27 namespace glw namespace
35 } // glw
glwFunctions.hpp 28 namespace glw namespace
47 } // glw
glwDefs.hpp 39 namespace glw namespace
50 } // glw
glwInitES20Direct.hpp 29 namespace glw namespace
34 } // glw
glwInitES30Direct.hpp 29 namespace glw namespace
34 } // glw
glwWrapper.cpp 37 namespace glw namespace
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)
67 throw std::runtime_error("glw: TLS allocation failed");
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
    [all...]
glwFunctionLoader.hpp 28 namespace glw namespace
39 } // glw
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()
    [all...]
  /external/deqp/framework/egl/
egluGLFunctionLoader.cpp 21 * \brief glw::FunctionLoader using eglGetProcAddress() and tcu::Library.
35 glw::GenericFuncType GLFunctionLoader::get (const char* name) const
37 glw::GenericFuncType func = (glw::GenericFuncType)m_library->getFunction(name);
40 return (glw::GenericFuncType)eglGetProcAddress(name);
egluGLFunctionLoader.hpp 23 * \brief glw::FunctionLoader using eglGetProcAddress() and tcu::Library.
33 class GLFunctionLoader : public glw::FunctionLoader
37 glw::GenericFuncType get (const char* name) const;
  /external/deqp/modules/gles31/functional/
es31fNegativeTestShared.hpp 46 virtual void expectMessage (glw::GLenum source, glw::GLenum type) = 0;
47 virtual void expectError (glw::GLenum error0, glw::GLenum error1) = 0;
59 int getInteger (glw::GLenum pname) const;
65 void expectMessage (glw::GLenum source, glw::GLenum type);
66 void expectError (glw::GLenum error);
67 void expectError (glw::GLenum error0, glw::GLenum error1)
    [all...]
  /external/deqp/modules/glshared/
glsFboUtil.hpp 161 glw::GLenum format;
164 glw::GLenum unsizedType;
201 FormatFlags formatFlag(glw::GLenum context);
252 glw::GLsizei width;
253 glw::GLsizei height;
266 glw::GLsizei numSamples;
273 glw::GLint numLevels;
291 glw::GLsizei numLayers;
306 glw::GLenum target;
307 glw::GLuint imageName
    [all...]
glsSamplerObjectTest.hpp 31 #include "glw.h"
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)
    [all...]
glsStateChangePerfTestCases.hpp 35 namespace glw namespace
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/modules/gles2/
tes2Context.cpp 51 glw::setCurrentThreadFunctions(&m_renderCtx->getFunctions());
55 glw::setCurrentThreadFunctions(DE_NULL);
67 glw::setCurrentThreadFunctions(DE_NULL);
  /external/deqp/modules/gles3/
tes3Context.cpp 48 glw::setCurrentThreadFunctions(&m_renderCtx->getFunctions());
52 glw::setCurrentThreadFunctions(DE_NULL);
64 glw::setCurrentThreadFunctions(DE_NULL);

Completed in 361 milliseconds

1 2 3 4 5 6 7 8 91011>>