Home
last modified time | relevance | path

Searched refs:platformMethods (Results 1 – 11 of 11) 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.cpp942 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.cpp667 angle::PlatformMethods *platformMethods = ANGLEPlatformCurrent(); in ANGLESetDefaultDisplayPlatform() local
670 platformMethods->logError = Display_logError; in ANGLESetDefaultDisplayPlatform()
671 platformMethods->logWarning = Display_logWarning; in ANGLESetDefaultDisplayPlatform()
672 platformMethods->logInfo = Display_logInfo; in ANGLESetDefaultDisplayPlatform()
1026 const angle::PlatformMethods *platformMethods = in setupDisplayPlatform() local
1029 if (platformMethods != nullptr) in setupDisplayPlatform()
1031 *ANGLEPlatformCurrent() = *platformMethods; in setupDisplayPlatform()
/external/skia/tools/gpu/gl/angle/
DGLTestContext_angle.cpp260 angle::PlatformMethods* platformMethods = nullptr; in ANGLEGLContext() local
262 nullptr, &platformMethods)) { in ANGLEGLContext()
263 platformMethods->addTraceEvent = ANGLE_addTraceEvent; in ANGLEGLContext()
264 platformMethods->getTraceCategoryEnabledFlag = ANGLE_getTraceCategoryEnabledFlag; in ANGLEGLContext()
265 platformMethods->updateTraceEventDuration = ANGLE_updateTraceEventDuration; in ANGLEGLContext()
266 platformMethods->monotonicallyIncreasingTime = ANGLE_monotonicallyIncreasingTime; in ANGLEGLContext()
/external/angle/util/
DEGLPlatformParameters.h77 disabledFeatureOverrides, enabledFeatureOverrides, platformMethods); in tie()
105 angle::PlatformMethods *platformMethods = nullptr; member
DEGLWindow.cpp215 if (params.platformMethods) in initializeDisplay()
217 static_assert(sizeof(EGLAttrib) == sizeof(params.platformMethods), in initializeDisplay()
220 displayAttributes.push_back(reinterpret_cast<EGLAttrib>(params.platformMethods)); in initializeDisplay()
DEGLWindow.h153 const angle::PlatformMethods *getPlatformMethods() const { return mPlatform.platformMethods; } in getPlatformMethods()
/external/angle/src/tests/test_utils/
DANGLETestCL.cpp39 mCurrentParams.eglParameters.platformMethods = &gDefaultPlatformMethods; in ANGLETestCL()
DANGLETest.cpp502 withMethods.eglParameters.platformMethods = &gDefaultPlatformMethods; in ANGLETestBase()
/external/angle/src/tests/capture_replay_tests/
DCaptureReplayTests.cpp267 mPlatformParams.platformMethods = &mPlatformMethods; in initializeTest()