Searched defs:DE_NULL (Results 1 - 11 of 11) sorted by relevance

/external/deqp/framework/referencerenderer/
H A DrrRenderer.hpp62 Program (const VertexShader* vertexShader_, const FragmentShader* fragmentShader_, const GeometryShader* geometryShader_ = DE_NULL) argument
/external/deqp/framework/delibs/debase/
H A DdeDefs.h176 # define DE_NULL 0 macro
178 # define DE_NULL ((void*)0) /*!< Null pointer. */ macro
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.hpp69 Option (const char* shortName_, const char* longName_, const char* description_, const char* defaultValue_ = DE_NULL) argument
75 , namedValues (DE_NULL)
81 Option (const char* shortName_, const char* longName_, const char* description_, ParseFunc parse_, const char* defaultValue_ = DE_NULL) argument
87 , namedValues (DE_NULL)
88 , namedValuesEnd(DE_NULL)
93 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType>* namedValues_, const NamedValue<ValueType>* namedValuesEnd_, const char* defaultValue_ = DE_NULL) argument
98 , parse ((ParseFunc)DE_NULL)
106 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType> (&namedValues_)[NumNamedValues], const char* defaultValue_ = DE_NULL) argument
111 , parse ((ParseFunc)DE_NULL)
194 Entry (void) : value(DE_NULL), destructo
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fBlendTests.cpp136 , m_renderer (DE_NULL)
137 , m_referenceRenderer (DE_NULL)
138 , m_refColorBuffer (DE_NULL)
202 m_renderer = DE_NULL;
203 m_referenceRenderer = DE_NULL;
204 m_refColorBuffer = DE_NULL;
254 const tcu::PixelBufferAccess nullAccess(TextureFormat(), 0, 0, 0, DE_NULL); local
H A Des2fUniformApiTests.cpp739 return DE_NULL;
803 const char* const rootName_ = DE_NULL,
810 , rootName (rootName_ == DE_NULL ? name_ : rootName_)
1859 default: DE_ASSERT(false); return DE_NULL;
1869 default: DE_ASSERT(false); return DE_NULL;
1879 default: DE_ASSERT(false); return DE_NULL;
1889 default: DE_ASSERT(false); return DE_NULL;
1899 default: DE_ASSERT(false); return DE_NULL;
1909 default: DE_ASSERT(false); return DE_NULL;
2159 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC].cases.push_back (UniformCollectionCase(DE_NULL, UniformCollectio
799 BasicUniform(const char* const name_, const glu::DataType type_, const bool isUsedInShader_, const VarValue& finalValue_, const char* const rootName_ = DE_NULL, const int elemNdx_ = -1, const int rootSize_ = 1) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fBlendTests.cpp164 , m_renderer (DE_NULL)
165 , m_referenceRenderer (DE_NULL)
166 , m_refColorBuffer (DE_NULL)
241 m_renderer = DE_NULL;
242 m_referenceRenderer = DE_NULL;
243 m_refColorBuffer = DE_NULL;
307 const tcu::PixelBufferAccess nullAccess(TextureFormat(), 0, 0, 0, DE_NULL); local
H A Des3fUniformApiTests.cpp900 return DE_NULL;
968 const char* const rootName_ = DE_NULL,
975 , rootName (rootName_ == DE_NULL ? name_ : rootName_)
2215 return DE_NULL;
2228 return DE_NULL;
2361 default: DE_ASSERT(false); return DE_NULL;
2371 default: DE_ASSERT(false); return DE_NULL;
2381 default: DE_ASSERT(false); return DE_NULL;
2391 default: DE_ASSERT(false); return DE_NULL;
2401 default: DE_ASSERT(false); return DE_NULL;
964 BasicUniform(const char* const name_, const glu::DataType type_, const bool isUsedInShader_, const VarValue& finalValue_, const char* const rootName_ = DE_NULL, const int elemNdx_ = -1, const int rootSize_ = 1) argument
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fAdvancedBlendTests.cpp143 , m_program (DE_NULL)
144 , m_referenceRenderer (DE_NULL)
145 , m_refColorBuffer (DE_NULL)
216 throw tcu::NotSupportedError("GL_KHR_blend_equation_advanced is not supported", DE_NULL, __FILE__, __LINE__);
219 throw tcu::NotSupportedError("GL_KHR_blend_equation_advanced_coherent is not supported", DE_NULL, __FILE__, __LINE__);
233 m_program = DE_NULL;
296 m_program = DE_NULL;
297 m_referenceRenderer = DE_NULL;
298 m_refColorBuffer = DE_NULL;
406 gl.vertexAttribPointer(posLoc, 2, GL_FLOAT, GL_FALSE, 0, DE_NULL);
452 const tcu::PixelBufferAccess nullAccess (TextureFormat(), 0, 0, 0, DE_NULL); local
[all...]
H A Des31fProgramUniformTests.cpp799 return DE_NULL;
858 const char* const rootName_ = DE_NULL,
865 , rootName (rootName_ == DE_NULL ? name_ : rootName_)
1750 default: DE_ASSERT(false); return DE_NULL;
1760 default: DE_ASSERT(false); return DE_NULL;
1770 default: DE_ASSERT(false); return DE_NULL;
1780 default: DE_ASSERT(false); return DE_NULL;
1938 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC].cases.push_back (UniformCollectionCase(DE_NULL, UniformCollection::multipleBasic()));
1939 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC_ARRAY].cases.push_back (UniformCollectionCase(DE_NULL, UniformCollection::multipleBasicArray()));
1940 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_NESTED_STRUCTS_ARRAYS].cases.push_back (UniformCollectionCase(DE_NULL, UniformCollectio
854 BasicUniform(const char* const name_, const glu::DataType type_, const bool isUsedInShader_, const VarValue& finalValue_, const char* const rootName_ = DE_NULL, const int elemNdx_ = -1, const int rootSize_ = 1) argument
[all...]
/external/deqp/modules/glshared/
H A DglsFboUtil.cpp101 const UniquePtr<ContextInfo> ctxInfo(ctx != DE_NULL ? ContextInfo::create(*ctx) : DE_NULL);
157 if (dynamic_cast<const Renderbuffer*>(&img) != DE_NULL)
159 if (dynamic_cast<const Texture2D*>(&img) != DE_NULL)
161 if (dynamic_cast<const TextureCubeMap*>(&img) != DE_NULL)
163 if (dynamic_cast<const Texture3D*>(&img) != DE_NULL)
165 if (dynamic_cast<const Texture2DArray*>(&img) != DE_NULL)
180 format.format, format.dataType, DE_NULL);
196 format.format, format.dataType, DE_NULL); local
263 if (dynamic_cast<const Renderbuffer*>(&cfg) != DE_NULL)
[all...]
H A DglsLifetimeTests.hpp143 virtual Binder* binder (void) const { return DE_NULL; }
157 Binder* binder_ = DE_NULL, bool genCreates_ = false)
155 SimpleType(const Context& ctx, const char* name, GenFunc genFunc, DeleteFunc deleteFunc, ExistsFunc existsFunc, Binder* binder_ = DE_NULL, bool genCreates_ = false) argument

Completed in 1990 milliseconds