Home
last modified time | relevance | path

Searched refs:glw (Results 1 – 25 of 318) sorted by relevance

12345678910>>...13

/external/deqp/framework/opengl/
DgluCallLogWrapperApi.inl6 void glActiveShaderProgram (glw::GLuint pipeline, glw::GLuint program);
7 void glActiveTexture (glw::GLenum texture);
8 void glAttachShader (glw::GLuint program, glw::GLuint shader);
9 void glBeginConditionalRender (glw::GLuint id, glw::GLenum mode);
10 void glBeginQuery (glw::GLenum target, glw::GLuint id);
11 void glBeginQueryIndexed (glw::GLenum target, glw::GLuint index, glw::GLuint id);
12 void glBeginTransformFeedback (glw::GLenum primitiveMode);
13 void glBindAttribLocation (glw::GLuint program, glw::GLuint index, const glw::GLchar *nam…
14 void glBindBuffer (glw::GLenum target, glw::GLuint buffer);
15 void glBindBufferBase (glw::GLenum target, glw::GLuint index, glw::GLuint buffer);
[all …]
DgluCallLogWrapper.inl7 void CallLogWrapper::glActiveShaderProgram (glw::GLuint pipeline, glw::GLuint program)
14 void CallLogWrapper::glActiveTexture (glw::GLenum texture)
21 void CallLogWrapper::glAttachShader (glw::GLuint program, glw::GLuint shader)
28 void CallLogWrapper::glBeginConditionalRender (glw::GLuint id, glw::GLenum mode)
35 void CallLogWrapper::glBeginQuery (glw::GLenum target, glw::GLuint id)
42 void CallLogWrapper::glBeginQueryIndexed (glw::GLenum target, glw::GLuint index, glw::GLuint id)
49 void CallLogWrapper::glBeginTransformFeedback (glw::GLenum primitiveMode)
56 void CallLogWrapper::glBindAttribLocation (glw::GLuint program, glw::GLuint index, const glw::GLcha…
63 void CallLogWrapper::glBindBuffer (glw::GLenum target, glw::GLuint buffer)
70 void CallLogWrapper::glBindBufferBase (glw::GLenum target, glw::GLuint index, glw::GLuint buffer)
[all …]
DgluObjectWrapper.cpp36 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits) in ObjectWrapper()
58 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits, deUint32 object) in ObjectWrapper()
73 { "texture", &glw::Functions::genTextures, &glw::Functions::deleteTextures },
74 { "buffer", &glw::Functions::genBuffers, &glw::Functions::deleteBuffers },
75 { "renderbuffer", &glw::Functions::genRenderbuffers, &glw::Functions::deleteRenderbuffers },
76 { "framebuffer", &glw::Functions::genFramebuffers, &glw::Functions::deleteFramebuffers },
77 …{ "transform feedback", &glw::Functions::genTransformFeedbacks, &glw::Functions::deleteTransformFe…
78 { "vertex array", &glw::Functions::genVertexArrays, &glw::Functions::deleteVertexArrays },
79 { "query", &glw::Functions::genQueries, &glw::Functions::deleteQueries },
80 { "sampler", &glw::Functions::genSamplers, &glw::Functions::deleteSamplers },
[all …]
DgluES3PlusWrapperContext.cpp61 const glw::Functions& gl; //!< GL 4.3 core context functions.
182 static GLW_APICALL const glw::GLubyte* GLW_APIENTRY getString (deUint32 name) in getString()
190 case GL_VENDOR: return (const glw::GLubyte*)context->vendor.c_str(); in getString()
191 case GL_VERSION: return (const glw::GLubyte*)context->version.c_str(); in getString()
192 case GL_RENDERER: return (const glw::GLubyte*)context->renderer.c_str(); in getString()
193 …case GL_SHADING_LANGUAGE_VERSION: return (const glw::GLubyte*)context->shadingLanguageVersion.c_st… in getString()
194 case GL_EXTENSIONS: return (const glw::GLubyte*)context->extensions.c_str(); in getString()
202 static GLW_APICALL const glw::GLubyte* GLW_APIENTRY getStringi (deUint32 name, deUint32 index) in getStringi()
211 return (const glw::GLubyte*)context->extensionList[index].c_str(); in getStringi()
503 static void initFunctions (glw::Functions* dst, const glw::Functions& src) in initFunctions()
[all …]
DgluRenderContext.cpp178 static std::vector<std::string> getExtensions (const glw::Functions& gl, ApiType apiType) in getExtensions()
226 void initCoreFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType) in initCoreFunctions()
231 void (*initFunc) (glw::Functions* gl, const glw::FunctionLoader* loader); in initCoreFunctions()
234 { ApiType::es(2,0), glw::initES20 }, in initCoreFunctions()
235 { ApiType::es(3,0), glw::initES30 }, in initCoreFunctions()
236 { ApiType::es(3,1), glw::initES31 }, in initCoreFunctions()
237 { ApiType::core(3,0), glw::initGL30Core }, in initCoreFunctions()
238 { ApiType::core(3,1), glw::initGL31Core }, in initCoreFunctions()
239 { ApiType::core(3,2), glw::initGL32Core }, in initCoreFunctions()
240 { ApiType::core(3,3), glw::initGL33Core }, in initCoreFunctions()
[all …]
DgluProgramInterfaceQuery.hpp31 namespace glw namespace
89 int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInter…
90 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programI…
92 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInte…
93 std::string getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 progr…
95 void getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 program…
96 InterfaceBlockInfo getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUin…
98 void getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 prog…
99 InterfaceVariableInfo getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, …
103 inline int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInter… in getProgramResourceInt()
[all …]
DgluObjectWrapper.hpp58 glw::glGenBuffersFunc glw::Functions::*genFunc;
59 glw::glDeleteBuffersFunc glw::Functions::*deleteFunc;
67 ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits);
68 ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits, deUint32 object);
75 const glw::Functions& m_gl;
90 …TypedObjectWrapper (const glw::Functions& gl, deUint32 object) : ObjectWrapper(gl, objectTraits(Ty… in TypedObjectWrapper()
92 explicit TypedObjectWrapper (const glw::Functions& gl) : ObjectWrapper(gl, objectTraits(Type)) {} in TypedObjectWrapper()
101 … ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects = 0);
118 const glw::Functions& m_gl;
127 …explicit TypedObjectVector (const glw::Functions& gl, size_t numObjects = 0) : ObjectVector(gl, ob… in TypedObjectVector()
DgluRenderContext.hpp35 namespace glw namespace
203 virtual const glw::Functions& getFunctions (void) const = DE_NULL;
223 void initCoreFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiTy…
224 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType a…
228 void initFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType);
229 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType a…
DgluTexture.cpp58 const glw::Functions& gl = context.getFunctions(); in Texture1D()
69 const glw::Functions& gl = context.getFunctions(); in Texture1D()
82 const glw::Functions& gl = m_context.getFunctions(); in upload()
112 const glw::Functions& gl = context.getFunctions(); in Texture2D()
124 const glw::Functions& gl = context.getFunctions(); in Texture2D()
136 const glw::Functions& gl = context.getFunctions(); in Texture2D()
163 const glw::Functions& gl = m_context.getFunctions(); in upload()
189 const glw::Functions& gl = m_context.getFunctions(); in loadCompressed()
295 const glw::Functions& gl = m_context.getFunctions(); in TextureCube()
323 const glw::Functions& gl = m_context.getFunctions(); in TextureCube()
[all …]
/external/deqp/framework/opengl/wrapper/
DglwImpl.inl9 const glw::Functions* gl = glw::getCurrentThreadFunctions();
17 const glw::Functions* gl = glw::getCurrentThreadFunctions();
25 const glw::Functions* gl = glw::getCurrentThreadFunctions();
33 const glw::Functions* gl = glw::getCurrentThreadFunctions();
41 const glw::Functions* gl = glw::getCurrentThreadFunctions();
49 const glw::Functions* gl = glw::getCurrentThreadFunctions();
57 const glw::Functions* gl = glw::getCurrentThreadFunctions();
65 const glw::Functions* gl = glw::getCurrentThreadFunctions();
73 const glw::Functions* gl = glw::getCurrentThreadFunctions();
81 const glw::Functions* gl = glw::getCurrentThreadFunctions();
[all …]
DglwWrapper.cpp37 namespace glw namespace
43 DE_THREAD_LOCAL const glw::Functions* s_functions = DE_NULL;
45 void setCurrentThreadFunctions (const glw::Functions* gl) in setCurrentThreadFunctions()
50 inline const glw::Functions* getCurrentThreadFunctions (void) in getCurrentThreadFunctions()
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)
/external/deqp/modules/glshared/
DglsStateQueryUtil.hpp326 typedef glw::GLint GLIntVec3[3];
327 typedef glw::GLint GLIntVec4[4];
328 typedef glw::GLuint GLUintVec4[4];
329 typedef glw::GLfloat GLFloatVec4[4];
331 typedef glw::GLint64 GLInt64Vec4[4];
334 explicit QueriedState (glw::GLint);
335 explicit QueriedState (glw::GLint64);
337 explicit QueriedState (glw::GLfloat);
338 explicit QueriedState (glw::GLuint);
350 glw::GLint& getIntAccess (void);
[all …]
DglsFboUtil.hpp94 glw::GLenum format;
97 glw::GLenum unsizedType;
136 FormatFlags formatFlag(glw::GLenum context);
205 glw::GLsizei width;
206 glw::GLsizei height;
219 glw::GLsizei numSamples;
226 glw::GLint numLevels;
244 glw::GLsizei numLayers;
259 glw::GLenum target;
260 glw::GLuint imageName;
[all …]
DglsStateQueryUtil.cpp38 static glw::GLboolean mapBoolToGLBoolean (bool b) in mapBoolToGLBoolean()
45 const glw::GLenum errorCode = gl.glGetError(); in checkError()
59 QueriedState::QueriedState (glw::GLint v) in QueriedState()
65 QueriedState::QueriedState (glw::GLint64 v) in QueriedState()
77 QueriedState::QueriedState (glw::GLfloat v) in QueriedState()
83 QueriedState::QueriedState (glw::GLuint v) in QueriedState()
158 glw::GLint& QueriedState::getIntAccess (void) in getIntAccess()
164 glw::GLint64& QueriedState::getInt64Access (void) in getInt64Access()
176 glw::GLfloat& QueriedState::getFloatAccess (void) in getFloatAccess()
182 glw::GLuint& QueriedState::getUintAccess (void) in getUintAccess()
[all …]
DglsSamplerObjectTest.hpp77 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 …]
DglsTextureStateQueryTests.cpp44 using namespace glw;
47 static glw::GLenum mapTesterToPname (TesterType tester) in mapTesterToPname()
238 static bool isCoreTextureTarget (glw::GLenum target) in isCoreTextureTarget()
246 static RequiredExtensions getTextureTargetExtension (glw::GLenum target) in getTextureTargetExtension()
253 static bool isCoreTextureParam (glw::GLenum pname) in isCoreTextureParam()
274 static RequiredExtensions getTextureParamExtension (glw::GLenum pname) in getTextureParamExtension()
333 static bool isCoreTextureTarget (glw::GLenum target) in isCoreTextureTarget()
339 static RequiredExtensions getTextureTargetExtension (glw::GLenum target) in getTextureTargetExtension()
352 static bool isCoreTextureParam (glw::GLenum pname) in isCoreTextureParam()
358 static RequiredExtensions getTextureParamExtension (glw::GLenum pname) in getTextureParamExtension()
[all …]
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/gles31/functional/
Des31fLayoutBindingTests.cpp214 glw::GLenum maxBindingPointEnum,
215 glw::GLenum maxVertexUnitsEnum,
216 glw::GLenum maxFragmentUnitsEnum,
217 glw::GLenum maxCombinedUnitsEnum,
236 const glw::GLenum m_maxBindingPointEnum;
237 const glw::GLenum m_maxVertexUnitsEnum;
238 const glw::GLenum m_maxFragmentUnitsEnum;
239 const glw::GLenum m_maxCombinedUnitsEnum;
241 glw::GLuint m_vertexBuffer;
242 glw::GLuint m_indexBuffer;
[all …]
Des31fProgramInterfaceQueryTestCase.cpp49 static glw::GLenum getProgramDefaultBlockInterfaceFromStorage (glu::Storage storage) in getProgramDefaultBlockInterfaceFromStorage()
172 virtual std::string getHumanReadablePropertyString (glw::GLint propVal) const;
173 …ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, c…
199 std::string PropValidator::getHumanReadablePropertyString (glw::GLint propVal) const in getHumanReadablePropertyString()
224 …SingleVariableValidator (Context& context, ProgramResourcePropFlags validationProp, glw::GLuint pr…
226 …ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, c…
227 …nst std::vector<VariablePathComponent>& path, const std::string& resource, glw::GLint propValue, c…
228 …virtual void validateBuiltinVariable (const std::string& resource, glw::GLint propValue, const std…
232 const glw::GLuint m_programID;
235 …iableValidator (Context& context, ProgramResourcePropFlags validationProp, glw::GLuint programID, … in SingleVariableValidator()
[all …]
Des31fInternalFormatQueryTests.cpp51 …SamplesCase (Context& ctx, const char* name, const char* desc, glw::GLenum texTarget, glw::GLenum …
56 const glw::GLenum m_target;
57 const glw::GLenum m_internalFormat;
61 …atSamplesCase (Context& ctx, const char* name, const char* desc, glw::GLenum target, glw::GLenum i… in FormatSamplesCase()
87 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); in iterate()
89 glw::GLint maxSamples = 0; in iterate()
90 glw::GLint numSampleCounts = 0; in iterate()
94 …const glw::GLenum samplesEnum = (m_type == FORMAT_COLOR) ? (GL_MAX_COLOR_TEXTURE_SAMPLES) : (m_typ… in iterate()
126 std::vector<glw::GLint> samples; in iterate()
204 const glw::GLint defaultValue = -123; // queries always return positive values in iterate()
[all …]
Des31fIntegerStateQueryTests.cpp66 …MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minV…
70 const glw::GLenum m_target;
75 MaxSamplesCase::MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum t… in MaxSamplesCase()
98 …ingCase (Context& context, const char* name, const char* desc, glw::GLenum texTarget, glw::GLenum …
103 const glw::GLenum m_texTarget;
104 const glw::GLenum m_bindTarget;
108 …ingCase (Context& context, const char* name, const char* desc, glw::GLenum texTarget, glw::GLenum … in TexBindingCase()
142 glw::GLuint texture; in iterate()
167 …MinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int mi…
171 const glw::GLenum m_target;
[all …]
Des31fTextureLevelStateQueryTests.cpp51 static bool textureTypeHasDepth (glw::GLenum textureBindTarget) in textureTypeHasDepth()
69 static bool textureTypeHasHeight (glw::GLenum textureBindTarget) in textureTypeHasHeight()
87 static const char* getTextureTargetExtension (glw::GLenum target) in getTextureTargetExtension()
100 static bool isCoreTextureTarget (glw::GLenum target) in isCoreTextureTarget()
124 glw::GLenum internalFormat;
138 glw::GLenum bindTarget;
139 glw::GLenum queryTarget;
172 …reLevelParameterEqualWithPrinter (glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLe… in verifyTextureLevelParameterEqualWithPrinter()
188 …verifyTextureLevelParameterEqual (glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLe… in verifyTextureLevelParameterEqual()
193 …evelParameterInternalFormatEqual (glu::CallLogWrapper& gl, glw::GLenum target, int level, glw::GLe… in verifyTextureLevelParameterInternalFormatEqual()
[all …]
Des31fInfoLogQueryShared.hpp41 glw::GLuint object,
42 … void (glu::CallLogWrapper:: *getInfoLog)(glw::GLuint, glw::GLsizei, glw::GLsizei*, glw::GLchar*),
Des31fNegativeTestShared.hpp53 virtual void expectError (glw::GLenum error0, glw::GLenum error1) = 0;
65 int getInteger (glw::GLenum pname) const;
71 void expectError (glw::GLenum error);
72 void expectError (glw::GLenum error0, glw::GLenum error1);
/external/deqp/modules/egl/
DteglImageUtil.hpp75 …virtual de::MovePtr<ClientBuffer> createBuffer (const glw::Functions& gl, tcu::Texture2D* referen…
77 virtual glw::GLenum getFormat (void) const = 0;
80 de::MovePtr<ImageSource> createTextureImageSource (eglw::EGLenum source, glw::GLenum format, glw:…
81 de::MovePtr<ImageSource> createRenderbufferImageSource (glw::GLenum format);
82 de::MovePtr<ImageSource> createUnsupportedImageSource (const std::string& message, glw::GLenum for…

12345678910>>...13