Home
last modified time | relevance | path

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

/external/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.cpp682 withMethods.platformMethods = &mPlatformMethods; in SetUp()
/external/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.cpp516 angle::PlatformMethods *platformMethods = ANGLEPlatformCurrent(); in ANGLESetDefaultDisplayPlatform() local
519 platformMethods->logError = Display_logError; in ANGLESetDefaultDisplayPlatform()
520 platformMethods->logWarning = Display_logWarning; in ANGLESetDefaultDisplayPlatform()
521 platformMethods->logInfo = Display_logInfo; in ANGLESetDefaultDisplayPlatform()
803 const angle::PlatformMethods *platformMethods = in setupDisplayPlatform() local
806 if (platformMethods != nullptr) in setupDisplayPlatform()
808 *ANGLEPlatformCurrent() = *platformMethods; in setupDisplayPlatform()
/external/skia/tools/gpu/gl/angle/
DGLTestContext_angle.cpp252 angle::PlatformMethods* platformMethods = nullptr; in ANGLEGLContext() local
254 nullptr, &platformMethods)) { in ANGLEGLContext()
255 platformMethods->addTraceEvent = ANGLE_addTraceEvent; in ANGLEGLContext()
256 platformMethods->getTraceCategoryEnabledFlag = ANGLE_getTraceCategoryEnabledFlag; in ANGLEGLContext()
257 platformMethods->updateTraceEventDuration = ANGLE_updateTraceEventDuration; in ANGLEGLContext()
258 platformMethods->monotonicallyIncreasingTime = ANGLE_monotonicallyIncreasingTime; in ANGLEGLContext()
/external/angle/util/
DEGLPlatformParameters.h64 shaderStencilOutputFeature, genMultipleMipsPerPassFeature, platformMethods, in tie()
92 angle::PlatformMethods *platformMethods = nullptr; member
DEGLWindow.cpp184 if (params.platformMethods) in initializeDisplay()
186 static_assert(sizeof(EGLAttrib) == sizeof(params.platformMethods), in initializeDisplay()
189 displayAttributes.push_back(reinterpret_cast<EGLAttrib>(params.platformMethods)); in initializeDisplay()
DEGLWindow.h87 const angle::PlatformMethods *getPlatformMethods() const { return mPlatform.platformMethods; } in getPlatformMethods()
/external/angle/src/tests/test_utils/
DANGLETest.cpp420 withMethods.eglParameters.platformMethods = &gDefaultPlatformMethods; in ANGLETestBase()