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

1 2

  /external/deqp/framework/egl/
egluPlatform.cpp 39 tcu::FunctionLibrary* Platform::createDefaultGLFunctionLibrary (glu::ApiType apiType, const tcu::CommandLine&) const
42 if (apiType.getProfile() == glu::PROFILE_ES)
egluPlatform.hpp 90 virtual tcu::FunctionLibrary* createDefaultGLFunctionLibrary (glu::ApiType apiType, const tcu::CommandLine& cmdLine) const;
egluGLFunctionLoader.cpp 60 const tcu::FunctionLibrary* GLLibraryCache::getLibrary (glu::ApiType apiType)
63 const deUint32 key = apiType.getPacked();
68 library = m_platform.createDefaultGLFunctionLibrary(apiType, m_cmdLine);
egluGLUtil.hpp 41 eglw::EGLint apiRenderableType (glu::ApiType apiType);
egluGLFunctionLoader.hpp 66 const tcu::FunctionLibrary* getLibrary (glu::ApiType apiType);
egluGLUtil.cpp 57 EGLint apiRenderableType (glu::ApiType apiType)
59 switch (apiType.getProfile())
65 switch (apiType.getMajorVersion())
  /external/deqp/modules/egl/
teglTestCase.cpp 62 void EglTestContext::initGLFunctions (glw::Functions* dst, glu::ApiType apiType) const
64 initGLFunctions(dst, apiType, 0, DE_NULL);
67 void EglTestContext::initGLFunctions (glw::Functions* dst, glu::ApiType apiType, int numExtensions, const char* const* extensions) const
69 const tcu::FunctionLibrary* platformLib = m_glLibraryCache.getLibrary(apiType);
72 glu::initCoreFunctions(dst, &loader, apiType);
73 glu::initExtensionFunctions(dst, &loader, apiType, numExtensions, extensions);
teglTestCase.hpp 71 void initGLFunctions (glw::Functions* dst, glu::ApiType apiType) const;
72 void initGLFunctions (glw::Functions* dst, glu::ApiType apiType, int numExtensions, const char* const* extensions) const;
teglImageTests.cpp 69 using glu::ApiType;
151 ImageTestCase (EglTestContext& eglTestCtx, ApiType api, const string& name, const string& desc)
176 ApiType m_api;
184 : ImageTestCase(eglTestCtx, ApiType::es(2, 0), "invalid_create_image", "eglCreateImageKHR() with invalid arguments")
217 EGLConfig chooseConfig (const Library& egl, EGLDisplay display, ApiType apiType)
224 attribs[EGL_RENDERABLE_TYPE] = eglu::apiRenderableType(apiType);
333 : ImageTestCase (eglTestCtx, ApiType::es(2, 0), string("create_image_gles2_") + getTargetName(target) + "_" + getStorageName(storage) + (useTexLevel0 ? "_level0_only" : ""), "Create EGLImage from GLES2 object")
351 const ContextType contextType (ApiType::es(2, 0));
394 : ImageTestCase (eglTestCtx, ApiType::es(2, 0), string("image_target_gles2_") + getTargetName(target), "Use EGLImage as GLES2 object"
    [all...]
  /external/deqp/framework/opengl/
gluRenderContext.cpp 40 inline bool versionGreaterOrEqual (ApiType a, ApiType b)
46 bool contextSupports (ContextType ctxType, ApiType requiredApiType)
119 RenderContext* createDefaultRenderContext (tcu::Platform& platform, const tcu::CommandLine& cmdLine, ApiType apiType)
133 config.type = glu::ContextType(apiType, ctxFlags);
168 if (config.type.getAPI() == ApiType::es(3,1))
178 static std::vector<std::string> getExtensions (const glw::Functions& gl, ApiType apiType)
183 if (apiType.getProfile() == PROFILE_ES && apiType.getMajorVersion() == 2
    [all...]
gluStrUtil.cpp 126 std::ostream& operator<< (std::ostream& str, ApiType apiType)
130 if (apiType.getProfile() == PROFILE_ES)
133 str << apiType.getMajorVersion() << "." << apiType.getMinorVersion();
135 if (apiType.getProfile() == PROFILE_CORE)
137 else if (apiType.getProfile() == PROFILE_COMPATIBILITY)
139 else if (apiType.getProfile() != PROFILE_ES)
gluRenderContext.hpp 70 class ApiType
73 ApiType (void) : m_bits(pack(0, 0, PROFILE_LAST)) {}
74 ApiType (int major, int minor, Profile profile) : m_bits(pack(major, minor, profile)) {}
80 bool operator== (ApiType other) const { return m_bits == other.m_bits; }
81 bool operator!= (ApiType other) const { return m_bits != other.m_bits; }
86 static ApiType es (int major, int minor) { return ApiType(major, minor, PROFILE_ES); }
87 static ApiType core (int major, int minor) { return ApiType(major, minor, PROFILE_CORE); }
88 static ApiType compatibility (int major, int minor) { return ApiType(major, minor, PROFILE_COMPATIBILITY);
    [all...]
gluStrUtil.hpp 94 std::ostream& operator<< (std::ostream& str, ApiType apiType);
  /packages/apps/Camera2/src/com/android/camera/device/
CameraDeviceKey.java 37 public enum ApiType {
45 private final ApiType mApiType;
51 public ApiType getApiType() {
65 public CameraDeviceKey(ApiType apiType, CameraId cameraId) {
66 mApiType = apiType;
  /external/deqp/modules/glshared/
glsInteractionTestUtil.hpp 121 void computeRandomRenderState (de::Random& rnd, RenderState& state, glu::ApiType apiType, int targetWidth, int targetHeight);
123 void computeRandomRenderCommands (de::Random& rnd, glu::ApiType apiType, int numCommands, int targetW, int targetH, std::vector<RenderCommand>& dst);
glsDrawTest.hpp 209 bool valid (glu::ApiType apiType) const;
218 glu::ApiType apiType; //!< needed in spec validation
glsInteractionTestUtil.cpp 54 void computeRandomRenderState (de::Random& rnd, RenderState& state, glu::ApiType apiType, int targetWidth, int targetHeight)
192 if (apiType == glu::ApiType::es(2,0))
254 void computeRandomRenderCommands (de::Random& rnd, glu::ApiType apiType, int numCommands, int targetW, int targetH, vector<RenderCommand>& dst)
261 computeRandomRenderState(rnd, cmd->state, apiType, targetW, targetH);
glsFragOpInteractionCase.cpp 217 static void computeRandomRenderCommand (de::Random& rnd, RenderCommand& command, glu::ApiType apiType, int targetW, int targetH)
221 gls::InteractionTestUtil::computeRandomRenderState(rnd, command.state, apiType, targetW, targetH);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 201 * @param apiType The type as reported by the api
204 * or the apiType is generic and the test type is not void
206 private static boolean compareType(String apiType, String testType) {
207 return apiType.equals(testType) ||
208 isGenericType(apiType) && !testType.equals(VOID) ||
209 isGenericArrayType(apiType) && isArrayType(testType) ;
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 47 using glu::ApiType;
301 const ApiType apiType = contextType.getAPI();
307 switch (apiType.getProfile())
325 GLX_CONTEXT_MAJOR_VERSION_ARB, apiType.getMajorVersion(),
326 GLX_CONTEXT_MINOR_VERSION_ARB, apiType.getMinorVersion(),
  /external/deqp/modules/gles2/functional/
es2fDrawTests.cpp 73 spec.apiType = glu::ApiType::es(2,0);
146 spec.apiType = glu::ApiType::es(2,0);
181 spec.apiType = glu::ApiType::es(2,0);
227 spec.apiType = glu::ApiType::es(2,0);
597 spec.apiType = glu::ApiType::es(2,0)
    [all...]
  /external/deqp/modules/gles2/stress/
es2sDrawTests.cpp 46 spec.apiType = glu::ApiType::es(2,0);
311 spec.apiType = glu::ApiType::es(2,0);
344 valid = attribSpec.valid(spec.apiType);
  /external/deqp/modules/gles3/functional/
es3fDrawTests.cpp 104 spec.apiType = glu::ApiType::es(3,0);
182 spec.apiType = glu::ApiType::es(3,0);
217 spec.apiType = glu::ApiType::es(3,0);
263 spec.apiType = glu::ApiType::es(3,0);
323 spec.apiType = glu::ApiType::es(3,0)
    [all...]
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 446 spec.apiType = glu::ApiType::es(3,1);
492 valid = attribSpec.valid(spec.apiType);
  /external/deqp/modules/gles3/stress/
es3sDrawTests.cpp 227 spec.apiType = glu::ApiType::es(3,0);
525 spec.apiType = glu::ApiType::es(3,0);
558 valid = attribSpec.valid(spec.apiType);

Completed in 439 milliseconds

1 2