Searched refs:glw (Results 1 - 25 of 284) sorted by relevance

1234567891011>>

/external/deqp/framework/opengl/
H A DgluCallLogWrapperApi.inl4 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
[all...]
H A DgluCallLogWrapper.inl5 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
[all...]
H A DgluCallLogWrapper.hpp30 namespace glw namespace
41 CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log);
52 const glw::Functions& m_gl;
H A DgluObjectWrapper.cpp35 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
[all...]
H A DgluDummyRenderContext.hpp41 * 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;
H A DgluRenderContext.cpp178 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
[all...]
H A DgluObjectWrapper.hpp57 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
[all...]
H A DgluProgramInterfaceQuery.hpp31 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
[all...]
/external/deqp/framework/opengl/wrapper/
H A DglwWrapper.hpp28 namespace glw namespace
34 void setCurrentThreadFunctions (const glw::Functions* gl);
H A DglwFunctions.cpp27 namespace glw namespace
35 } // glw
H A DglwFunctions.hpp28 namespace glw namespace
47 } // glw
H A DglwDefs.hpp39 namespace glw namespace
50 } // glw
H A DglwInitES20Direct.hpp29 namespace glw namespace
34 } // glw
H A DglwInitES30Direct.hpp29 namespace glw namespace
34 } // glw
H A DglwWrapper.cpp37 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
[all...]
H A DglwFunctionLoader.hpp28 namespace glw namespace
39 } // glw
H A DglwImpl.inl7 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
[all...]
/external/deqp/framework/egl/
H A DegluGLFunctionLoader.cpp21 * \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);
H A DegluGLFunctionLoader.hpp23 * \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/
H A Des31fNegativeTestShared.hpp46 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
[all...]
/external/deqp/modules/glshared/
H A DglsFboUtil.hpp161 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
[all...]
H A DglsSamplerObjectTest.hpp31 #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
[all...]
H A DglsStateChangePerfTestCases.hpp35 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/
H A Dtes2Context.cpp51 glw::setCurrentThreadFunctions(&m_renderCtx->getFunctions());
55 glw::setCurrentThreadFunctions(DE_NULL);
67 glw::setCurrentThreadFunctions(DE_NULL);
/external/deqp/modules/gles3/
H A Dtes3Context.cpp48 glw::setCurrentThreadFunctions(&m_renderCtx->getFunctions());
52 glw::setCurrentThreadFunctions(DE_NULL);
64 glw::setCurrentThreadFunctions(DE_NULL);

Completed in 2645 milliseconds

1234567891011>>