Home
last modified time | relevance | path

Searched refs:platformMethods (Results 1 – 8 of 8) sorted by relevance

/device/generic/vulkan-cereal/third-party/angle/src/tests/perf_tests/
DEGLInitializePerf.cpp29 double CapturePlatform_currentTime(angle::PlatformMethods *platformMethods) in CapturePlatform_currentTime() argument
31 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_currentTime()
35 void CapturePlatform_histogramCustomCounts(angle::PlatformMethods *platformMethods, in CapturePlatform_histogramCustomCounts() argument
42 Captures *captures = static_cast<Captures *>(platformMethods->context); in CapturePlatform_histogramCustomCounts()
118 angle::PlatformMethods *platformMethods = nullptr; in SetUp() local
120 angle::g_NumPlatformMethods, &mCaptures, &platformMethods)); in SetUp()
122 platformMethods->currentTime = CapturePlatform_currentTime; in SetUp()
123 platformMethods->histogramCustomCounts = CapturePlatform_histogramCustomCounts; in SetUp()
DANGLEPerfTest.cpp508 withMethods.platformMethods = &mPlatformMethods; in SetUp()
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/
DPlatform.cpp20 static angle::PlatformMethods platformMethods; in PlatformMethods() local
21 return platformMethods; in PlatformMethods()
34 void *platformMethods) in ANGLEGetDisplayPlatform() argument
37 reinterpret_cast<angle::PlatformMethods **>(platformMethods); in ANGLEGetDisplayPlatform()
DDisplay.cpp443 angle::PlatformMethods *platformMethods = ANGLEPlatformCurrent(); in ANGLESetDefaultDisplayPlatform() local
446 platformMethods->logError = Display_logError; in ANGLESetDefaultDisplayPlatform()
447 platformMethods->logWarning = Display_logWarning; in ANGLESetDefaultDisplayPlatform()
448 platformMethods->logInfo = Display_logInfo; in ANGLESetDefaultDisplayPlatform()
706 const angle::PlatformMethods *platformMethods = in setupDisplayPlatform() local
709 if (platformMethods != nullptr) in setupDisplayPlatform()
711 *ANGLEPlatformCurrent() = *platformMethods; in setupDisplayPlatform()
/device/generic/vulkan-cereal/third-party/angle/util/
DEGLPlatformParameters.h64 platformMethods, robustness); in tie()
78 angle::PlatformMethods *platformMethods = nullptr; member
DEGLWindow.cpp168 if (params.platformMethods) in initializeDisplay()
170 static_assert(sizeof(EGLAttrib) == sizeof(params.platformMethods), in initializeDisplay()
173 displayAttributes.push_back(reinterpret_cast<EGLAttrib>(params.platformMethods)); in initializeDisplay()
DEGLWindow.h85 const angle::PlatformMethods *getPlatformMethods() const { return mPlatform.platformMethods; } in getPlatformMethods()
/device/generic/vulkan-cereal/third-party/angle/src/tests/test_utils/
DANGLETest.cpp392 withMethods.eglParameters.platformMethods = &gDefaultPlatformMethods; in ANGLETestBase()