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

1 2 3

  /external/deqp/framework/opengl/
gluDummyRenderContext.hpp 52 virtual ContextType getType (void) const { return ContextType(); }
gluRenderContext.hpp 44 class ContextType;
129 * ContextType differs from API type by adding context flags. They are
138 class ContextType : private ApiType
141 ContextType (void) {}
142 ContextType (int major, int minor, Profile profile, ContextFlags flags = ContextFlags(0));
143 explicit ContextType (ApiType apiType, ContextFlags flags = ContextFlags(0));
163 inline ContextType::ContextType (int major, int minor, Profile profile, ContextFlags flags)
169 inline ContextType::ContextType (ApiType apiType, ContextFlags flags
    [all...]
gluRenderConfig.hpp 66 ContextType type;
83 RenderConfig (ContextType type_ = ContextType())
gluES3PlusWrapperContext.hpp 57 virtual ContextType getType (void) const;
gluFboRenderContext.hpp 51 virtual ContextType getType (void) const { return m_context->getType(); }
gluStrUtil.hpp 95 std::ostream& operator<< (std::ostream& str, ContextType contextType);
gluES3PlusWrapperContext.cpp 626 static const ContextType wrappableNativeTypes[] =
628 ContextType(ApiType::core(4,4), config.type.getFlags() & validContextFlags), // !< higher in the list, preferred
629 ContextType(ApiType::core(4,3), config.type.getFlags() & validContextFlags),
639 glu::ContextType nativeContext = wrappableNativeTypes[nativeCtxNdx];
678 ContextType ES3PlusWrapperContext::getType (void) const
680 return ContextType(ApiType::es(3,1), m_context->getType().getFlags());
gluShaderUtil.hpp 61 bool isGLSLVersionSupported (ContextType type, GLSLVersion version);
62 GLSLVersion getContextTypeGLSLVersion (ContextType type);
  /external/deqp/framework/platform/null/
tcuNullRenderContext.hpp 59 virtual glu::ContextType getType (void) const { return m_ctxType; }
67 const glu::ContextType m_ctxType;
tcuNullRenderContext.cpp 76 Context (ContextType ctxType_);
87 const ContextType ctxType;
118 Context::Context (ContextType ctxType_)
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.hh 87 RawContext (glu::ContextType type);
90 virtual glu::ContextType getType (void) const { return m_type; }
100 glu::ContextType m_type;
tcuIOSPlatform.mm 107 static EAGLRenderingAPI getEAGLApi (glu::ContextType type)
117 RawContext::RawContext (glu::ContextType type)
  /external/deqp/framework/egl/
egluGLUtil.hpp 42 eglw::EGLContext createGLContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config, const glu::ContextType& contextType);
  /external/lldb/include/lldb/Core/
Value.h 45 enum ContextType // Type that describes Value::m_context
145 ContextType
165 SetContext (ContextType context_type, void *p)
263 GetContextTypeAsCString (ContextType context_type);
277 ContextType m_context_type;
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 54 enum ContextType {
144 ContextType Type;
175 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
  /external/deqp/framework/opengl/simplereference/
sglrReferenceUtils.hpp 39 rr::VertexAttribType mapGLFloatVertexAttributeType (deUint32 type, bool normalizedInteger, int size, glu::ContextType ctxType);
sglrContext.hpp 43 Context (glu::ContextType type) : m_type(type) {}
210 glu::ContextType getType (void) { return m_type; }
213 const glu::ContextType m_type;
  /external/deqp/framework/platform/osx/
tcuOSXPlatform.cpp 75 glu::ContextType getType (void) const { return m_type; }
81 const glu::ContextType m_type;
87 static CGLOpenGLProfile getCGLProfile (glu::ContextType type)
153 if (!contextSupports(glu::ContextType(actualApi, glu::ContextFlags(0)), config.type.getAPI()))
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
DebugContext.java 42 mRS = RenderScript.create(mCtx, RenderScript.ContextType.DEBUG);
  /external/deqp/framework/platform/win32/
tcuWGLContextFactory.cpp 69 glu::ContextType getType (void) const { return m_contextType; }
78 glu::ContextType m_contextType;
tcuWGL.hpp 190 Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat);
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 49 using glu::ContextType;
115 const ContextType& contextType);
169 virtual ContextType getType (void) const;
179 ContextType m_type;
298 const ContextType& contextType)
301 const ApiType apiType = contextType.getAPI();
656 ContextType GlxRenderContext::getType (void) const
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 15 Diagnostics::ArgStream Diagnostics::pushContextFrame(ContextType Type,
77 static StringRef contextTypeToFormatString(Diagnostics::ContextType Type) {
84 llvm_unreachable("Unknown ContextType value.");
  /external/v8/src/
types.h 301 class ContextType;
309 typedef typename Config::template Handle<ContextType>::type ContextHandle;
338 return ContextType::New(outer, region);
445 ContextType* AsContext() { return ContextType::cast(this); }
807 class TypeImpl<Config>::ContextType : public StructuralType {
812 ContextHandle type = Config::template cast<ContextType>(
818 static ContextType* cast(TypeImpl* type) {
820 return static_cast<ContextType*>(type);
    [all...]
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java 162 * ContextType specifies the specific type of context to be created.
165 public enum ContextType {
187 ContextType(int id) {
192 ContextType mContextType;
214 native long rsnContextCreate(long dev, int ver, int sdkVer, int contextType);
215 synchronized long nContextCreate(long dev, int ver, int sdkVer, int contextType) {
216 return rsnContextCreate(dev, ver, sdkVer, contextType);
    [all...]

Completed in 201 milliseconds

1 2 3