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

1 2 3 4

  /external/deqp/framework/egl/
egluStaticESLibrary.hpp 33 namespace eglu namespace
38 } // eglu
egluCallLogWrapper.hpp 30 namespace eglu namespace
49 } // eglu
egluDefs.hpp 31 #define EGLU_CHECK() eglu::checkError(DE_NULL, __FILE__, __LINE__)
32 #define EGLU_CHECK_MSG(MSG) eglu::checkError(MSG, __FILE__, __LINE__)
33 #define EGLU_CHECK_CALL(CALL) do { CALL; eglu::checkError(#CALL, __FILE__, __LINE__); } while (deGetFalse())
38 namespace eglu namespace
85 } // eglu
egluGLContextFactory.hpp 35 namespace eglu namespace
56 } // eglu
egluGLFunctionLoader.cpp 27 namespace eglu namespace
45 } // eglu
egluGLFunctionLoader.hpp 30 namespace eglu namespace
46 } // eglu
egluPlatform.cpp 28 namespace eglu namespace
48 } // eglu
egluPlatform.hpp 36 namespace eglu namespace
52 * * eglu::NativeDisplay, created by eglu::NativeDisplayFactory
53 * * eglu::NativeWindow, created by eglu::NativeWindowFactory
54 * * eglu::NativePixmap, created by eglu::NativePixmapFactory
57 * adding eglu::GLContextFactory to m_contextFactoryRegistry in your
68 // Code outside porting layer will never attempt to delete eglu::Platform
97 * Native display factory registry holds list of eglu::NativeDisplayFactor
    [all...]
egluStaticESLibrary.cpp 45 namespace eglu namespace
63 } // eglu
egluUnique.hpp 29 namespace eglu namespace
78 } // eglu
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 36 static const eglu::NativeDisplay::Capability DISPLAY_CAPABILITIES = eglu::NativeDisplay::CAPABILITY_GET_DISPLAY_LEGACY;
37 static const eglu::NativeWindow::Capability WINDOW_CAPABILITIES = (eglu::NativeWindow::Capability)(eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY |
38 eglu::NativeWindow::CAPABILITY_SET_SURFACE_SIZE |
39 eglu::NativeWindow::CAPABILITY_GET_SCREEN_SIZE);
41 class NativeDisplay : public eglu::NativeDisplay
44 NativeDisplay (void) : eglu::NativeDisplay(DISPLAY_CAPABILITIES) {}
50 class NativeDisplayFactory : public eglu::NativeDisplayFactor
    [all...]
tcuAndroidPlatform.hpp 37 class Platform : public tcu::Platform, private eglu::Platform, private glu::Platform
46 virtual const eglu::Platform& getEGLPlatform (void) const { return static_cast<const eglu::Platform&>(*this); }
  /external/deqp/framework/platform/raspi/
tcuRaspiPlatform.cpp 46 static const eglu::NativeDisplay::Capability DISPLAY_CAPABILITIES = eglu::NativeDisplay::CAPABILITY_GET_DISPLAY_LEGACY;
47 static const eglu::NativeWindow::Capability WINDOW_CAPABILITIES = eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY;
49 class Display : public eglu::NativeDisplay
52 Display (void) : eglu::NativeDisplay(DISPLAY_CAPABILITIES) {}
58 class DisplayFactory : public eglu::NativeDisplayFactory
64 eglu::NativeDisplay* createDisplay (const EGLAttrib* attribList) const;
67 class Window : public eglu::NativeWindow
83 class WindowFactory : public eglu::NativeWindowFactor
    [all...]
tcuRaspiPlatform.hpp 38 class Platform : public tcu::Platform, private eglu::Platform, private glu::Platform
45 virtual const eglu::Platform& getEGLPlatform (void) const { return static_cast<const eglu::Platform&>(*this); }
  /external/deqp/framework/common/
tcuPlatform.hpp 33 namespace eglu namespace
59 * API-specific platform interfaces (glu::Platform and eglu::Platform)
100 * EGL-specific platform interface is defined by eglu::Platform. If your
107 virtual const eglu::Platform& getEGLPlatform (void) const;
tcuPlatform.cpp 47 const eglu::Platform& Platform::getEGLPlatform (void) const
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.hpp 33 class Win32EGLNativeDisplayFactory : public eglu::NativeDisplayFactory
39 virtual eglu::NativeDisplay* createDisplay (const EGLAttrib* attribList) const;
tcuWin32Platform.hpp 42 , private eglu::Platform
54 const eglu::Platform& getEGLPlatform (void) const { return static_cast<const eglu::Platform&>(*this); }
tcuWin32EGLNativeDisplayFactory.cpp 46 static const eglu::NativeDisplay::Capability DISPLAY_CAPABILITIES = eglu::NativeDisplay::CAPABILITY_GET_DISPLAY_LEGACY;
47 static const eglu::NativePixmap::Capability BITMAP_CAPABILITIES = eglu::NativePixmap::CAPABILITY_CREATE_SURFACE_LEGACY;
48 static const eglu::NativeWindow::Capability WINDOW_CAPABILITIES = (eglu::NativeWindow::Capability)
49 (eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY |
50 eglu::NativeWindow::CAPABILITY_GET_SURFACE_SIZE |
51 eglu::NativeWindow::CAPABILITY_GET_SCREEN_SIZE |
52 eglu::NativeWindow::CAPABILITY_READ_SCREEN_PIXELS
    [all...]
  /external/deqp/modules/egl/
teglTestCase.hpp 37 namespace eglu namespace
45 } // eglu
55 EglTestContext (tcu::TestContext& testCtx, const eglu::NativeDisplayFactory& displayFactory, const eglu::NativeWindowFactory* windowFactory, const eglu::NativePixmapFactory* pixmapFactory);
59 eglu::NativeDisplay& getNativeDisplay (void) { return *m_defaultNativeDisplay; }
61 const std::vector<eglu::ConfigInfo>& getConfigs (void) const { return m_configs; }
63 const eglu::NativeWindowFactory& getNativeWindowFactory (void) const;
64 const eglu::NativePixmapFactory& getNativePixmapFactory (void) const;
66 eglu::NativeWindow* createNativeWindow (EGLDisplay display, EGLConfig config, const EGLAttrib* a (…)
    [all...]
teglCreateSurfaceTests.cpp 60 std::vector<std::string> extensions = eglu::getPlatformExtensions();
66 EGLSurface createWindowSurface (EGLDisplay display, EGLConfig config, eglu::NativeDisplay& nativeDisplay, eglu::NativeWindow& window, bool useLegacyCreate)
89 EGLSurface createPixmapSurface (EGLDisplay display, EGLConfig config, eglu::NativeDisplay& nativeDisplay, eglu::NativePixmap& pixmap, bool useLegacyCreate)
130 if ((m_eglTestCtx.getNativeWindowFactory().getCapabilities() & eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY) == 0)
135 if ((m_eglTestCtx.getNativeWindowFactory().getCapabilities() & eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_PLATFORM) == 0)
145 de::UniquePtr<eglu::NativeWindow> window (m_eglTestCtx.createNativeWindow(display.getEGLDisplay(), config, DE_NULL, width, height, eglu::parseWindowVisibility(m_testCtx.getCommandLine())));
186 if ((m_eglTestCtx.getNativePixmapFactory().getCapabilities() & eglu::NativePixmap::CAPABILITY_CREATE_SURFACE_LEGACY) == 0
    [all...]
teglTestCase.cpp 80 EglTestContext::EglTestContext (tcu::TestContext& testCtx, const eglu::NativeDisplayFactory& displayFactory, const eglu::NativeWindowFactory* windowFactory, const eglu::NativePixmapFactory* pixmapFactory)
97 eglDisplay = eglu::getDisplay(*m_defaultNativeDisplay);
173 eglDisplay = eglu::getDisplay(*m_defaultNativeDisplay);
188 const eglu::NativeWindowFactory& EglTestContext::getNativeWindowFactory (void) const
196 const eglu::NativePixmapFactory& EglTestContext::getNativePixmapFactory (void) const
216 eglu::NativeWindow* EglTestContext::createNativeWindow (EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height, eglu::WindowParams::Visibility visibility)
221 return m_windowFactory->createWindow(m_defaultNativeDisplay, display, config, attribList, eglu::WindowParams(width, height, visibility))
    [all...]
teglNativeColorMappingTests.cpp 245 const tcu::UVec4 eglBitDepth((deUint32)eglu::getConfigAttribInt(display, config, EGL_RED_SIZE),
246 (deUint32)eglu::getConfigAttribInt(display, config, EGL_GREEN_SIZE),
247 (deUint32)eglu::getConfigAttribInt(display, config, EGL_BLUE_SIZE),
248 (deUint32)eglu::getConfigAttribInt(display, config, EGL_ALPHA_SIZE));
306 log << TestLog::Message << "EGL_RED_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_RED_SIZE) << TestLog::EndMessage;
307 log << TestLog::Message << "EGL_GREEN_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_GREEN_SIZE) << TestLog::EndMessage;
308 log << TestLog::Message << "EGL_BLUE_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_BLUE_SIZE) << TestLog::EndMessage;
309 log << TestLog::Message << "EGL_ALPHA_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_ALPHA_SIZE) << TestLog::EndMessage;
310 log << TestLog::Message << "EGL_DEPTH_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_DEPTH_SIZE) << TestLog::EndMessage;
311 log << TestLog::Message << "EGL_STENCIL_SIZE: " << eglu::getConfigAttribInt(display, config, EGL_STENCIL_SIZE) << TestLog::EndMessage
    [all...]
teglSwapBuffersTests.cpp 274 log << TestLog::Message << "EGL_RED_SIZE: " << eglu::getConfigAttribInt(display.getEGLDisplay(), config, EGL_RED_SIZE) << TestLog::EndMessage;
275 log << TestLog::Message << "EGL_GREEN_SIZE: " << eglu::getConfigAttribInt(display.getEGLDisplay(), config, EGL_GREEN_SIZE) << TestLog::EndMessage;
276 log << TestLog::Message << "EGL_BLUE_SIZE: " << eglu::getConfigAttribInt(display.getEGLDisplay(), config, EGL_BLUE_SIZE) << TestLog::EndMessage;
277 log << TestLog::Message << "EGL_ALPHA_SIZE: " << eglu::getConfigAttribInt(display.getEGLDisplay(), config, EGL_ALPHA_SIZE) << TestLog::EndMessage;
278 log << TestLog::Message << "EGL_DEPTH_SIZE: " << eglu::getConfigAttribInt(display.getEGLDisplay(), config, EGL_DEPTH_SIZE) << TestLog::EndMessage;
279 log << TestLog::Message << "EGL_STENCIL_SIZE: " << eglu::getConfigAttribInt(display.getEGLDisplay(), config, EGL_STENCIL_SIZE) << TestLog::EndMessage;
280 log << TestLog::Message << "EGL_SAMPLES: " << eglu::getConfigAttribInt(display.getEGLDisplay(), config, EGL_SAMPLES) << TestLog::EndMessage;
285 if ((m_eglTestCtx.getNativeWindowFactory().getCapabilities() & eglu::NativeWindow::CAPABILITY_READ_SCREEN_PIXELS) == 0)
286 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support readScreenPixels()", "", __FILE__, __LINE__);
288 de::UniquePtr<eglu::NativeWindow> window (m_eglTestCtx.createNativeWindow(m_eglTestCtx.getDisplay().getEGLDisplay(), (…)
    [all...]
  /external/deqp/framework/platform/X11/
tcuX11EglPlatform.hpp 38 class Platform : public eglu::Platform

Completed in 374 milliseconds

1 2 3 4