Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/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.cpp736 withMethods.platformMethods = &mPlatformMethods; in SetUp()
/third_party/skia/third_party/externals/angle2/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.cpp539 angle::PlatformMethods *platformMethods = ANGLEPlatformCurrent(); in ANGLESetDefaultDisplayPlatform() local
542 platformMethods->logError = Display_logError; in ANGLESetDefaultDisplayPlatform()
543 platformMethods->logWarning = Display_logWarning; in ANGLESetDefaultDisplayPlatform()
544 platformMethods->logInfo = Display_logInfo; in ANGLESetDefaultDisplayPlatform()
863 const angle::PlatformMethods *platformMethods = in setupDisplayPlatform() local
866 if (platformMethods != nullptr) in setupDisplayPlatform()
868 *ANGLEPlatformCurrent() = *platformMethods; in setupDisplayPlatform()
/third_party/skia/tools/gpu/gl/angle/
DGLTestContext_angle.cpp256 angle::PlatformMethods* platformMethods = nullptr; in ANGLEGLContext() local
258 nullptr, &platformMethods)) { in ANGLEGLContext()
259 platformMethods->addTraceEvent = ANGLE_addTraceEvent; in ANGLEGLContext()
260 platformMethods->getTraceCategoryEnabledFlag = ANGLE_getTraceCategoryEnabledFlag; in ANGLEGLContext()
261 platformMethods->updateTraceEventDuration = ANGLE_updateTraceEventDuration; in ANGLEGLContext()
262 platformMethods->monotonicallyIncreasingTime = ANGLE_monotonicallyIncreasingTime; in ANGLEGLContext()
/third_party/skia/third_party/externals/angle2/util/
DEGLPlatformParameters.h64 genMultipleMipsPerPassFeature, platformMethods, robustness, in tie()
102 angle::PlatformMethods *platformMethods = nullptr; member
DEGLWindow.cpp191 if (params.platformMethods) in initializeDisplay()
193 static_assert(sizeof(EGLAttrib) == sizeof(params.platformMethods), in initializeDisplay()
196 displayAttributes.push_back(reinterpret_cast<EGLAttrib>(params.platformMethods)); in initializeDisplay()
DEGLWindow.h110 const angle::PlatformMethods *getPlatformMethods() const { return mPlatform.platformMethods; } in getPlatformMethods()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
DANGLETest.cpp472 withMethods.eglParameters.platformMethods = &gDefaultPlatformMethods; in ANGLETestBase()