/external/angle/include/platform/ |
D | PlatformMethods.h | 46 struct PlatformMethods; 56 using CurrentTimeFunc = double (*)(PlatformMethods *platform); 57 inline double DefaultCurrentTime(PlatformMethods *platform) in DefaultCurrentTime() 65 using MonotonicallyIncreasingTimeFunc = double (*)(PlatformMethods *platform); 66 inline double DefaultMonotonicallyIncreasingTime(PlatformMethods *platform) in DefaultMonotonicallyIncreasingTime() 74 using LogErrorFunc = void (*)(PlatformMethods *platform, const char *errorMessage); 75 inline void DefaultLogError(PlatformMethods *platform, const char *errorMessage) {} in DefaultLogError() 78 using LogWarningFunc = void (*)(PlatformMethods *platform, const char *warningMessage); 79 inline void DefaultLogWarning(PlatformMethods *platform, const char *warningMessage) {} in DefaultLogWarning() 82 using LogInfoFunc = void (*)(PlatformMethods *platform, const char *infoMessage); [all …]
|
/external/angle/src/libANGLE/ |
D | Platform.cpp | 18 angle::PlatformMethods &PlatformMethods() in PlatformMethods() function 20 static angle::PlatformMethods platformMethods; in PlatformMethods() 25 angle::PlatformMethods *ANGLEPlatformCurrent() in ANGLEPlatformCurrent() 27 return &PlatformMethods(); in ANGLEPlatformCurrent() 36 angle::PlatformMethods **platformMethodsOut = in ANGLEGetDisplayPlatform() 37 reinterpret_cast<angle::PlatformMethods **>(platformMethods); in ANGLEGetDisplayPlatform() 67 PlatformMethods().context = context; in ANGLEGetDisplayPlatform() 68 *platformMethodsOut = &PlatformMethods(); in ANGLEGetDisplayPlatform() 75 PlatformMethods() = angle::PlatformMethods(); in ANGLEResetDisplayPlatform()
|
D | Display.cpp | 634 void Display_logError(angle::PlatformMethods *platform, const char *errorMessage) in Display_logError() 639 void Display_logWarning(angle::PlatformMethods *platform, const char *warningMessage) in Display_logWarning() 644 void Display_logInfo(angle::PlatformMethods *platform, const char *infoMessage) in Display_logInfo() 667 angle::PlatformMethods *platformMethods = ANGLEPlatformCurrent(); in ANGLESetDefaultDisplayPlatform() 1026 const angle::PlatformMethods *platformMethods = in setupDisplayPlatform() 1027 reinterpret_cast<const angle::PlatformMethods *>( in setupDisplayPlatform()
|
/external/angle/src/common/ |
D | event_tracer.h | 13 const unsigned char *GetTraceCategoryEnabledFlag(PlatformMethods *platform, const char *name); 14 angle::TraceEventHandle AddTraceEvent(PlatformMethods *platform,
|
D | event_tracer.cpp | 12 const unsigned char *GetTraceCategoryEnabledFlag(PlatformMethods *platform, const char *name) in GetTraceCategoryEnabledFlag() 27 angle::TraceEventHandle AddTraceEvent(PlatformMethods *platform, in AddTraceEvent()
|
D | WorkerThread.cpp | 209 DelegateWorkerPool(PlatformMethods *platform) : mPlatform(platform) {} in DelegateWorkerPool() 217 PlatformMethods *mPlatform; 281 PlatformMethods *platform) in Create()
|
D | WorkerThread.h | 117 static std::shared_ptr<WorkerThreadPool> Create(size_t numThreads, PlatformMethods *platform);
|
/external/angle/src/tests/perf_tests/ |
D | EGLInitializePerf.cpp | 29 double CapturePlatform_currentTime(angle::PlatformMethods *platformMethods) in CapturePlatform_currentTime() 35 void CapturePlatform_histogramCustomCounts(angle::PlatformMethods *platformMethods, in CapturePlatform_histogramCustomCounts() 118 angle::PlatformMethods *platformMethods = nullptr; in SetUp()
|
D | ANGLEPerfTest.cpp | 75 void EmptyPlatformMethod(PlatformMethods *, const char *) {} in EmptyPlatformMethod() argument 77 void CustomLogError(PlatformMethods *platform, const char *errorMessage) in CustomLogError() 83 TraceEventHandle AddPerfTraceEvent(PlatformMethods *platform, in AddPerfTraceEvent() 116 const unsigned char *GetPerfTraceCategoryEnabled(PlatformMethods *platform, in GetPerfTraceCategoryEnabled() 134 void UpdateTraceEventDuration(PlatformMethods *platform, in UpdateTraceEventDuration() 142 double MonotonicallyIncreasingTime(PlatformMethods *platform) in MonotonicallyIncreasingTime()
|
D | ANGLEPerfTest.h | 262 angle::PlatformMethods mPlatformMethods;
|
/external/angle/util/ |
D | EGLPlatformParameters.h | 21 struct PlatformMethods; 105 angle::PlatformMethods *platformMethods = nullptr;
|
D | EGLWindow.h | 27 struct PlatformMethods; 153 const angle::PlatformMethods *getPlatformMethods() const { return mPlatform.platformMethods; } in getPlatformMethods()
|
/external/skia/tools/gpu/gl/angle/ |
D | GLTestContext_angle.cpp | 148 static const unsigned char* ANGLE_getTraceCategoryEnabledFlag(angle::PlatformMethods* platform, in ANGLE_getTraceCategoryEnabledFlag() 153 static angle::TraceEventHandle ANGLE_addTraceEvent(angle::PlatformMethods* platform, in ANGLE_addTraceEvent() 170 static void ANGLE_updateTraceEventDuration(angle::PlatformMethods* platform, in ANGLE_updateTraceEventDuration() 177 static double ANGLE_monotonicallyIncreasingTime(angle::PlatformMethods* platform) { in ANGLE_monotonicallyIncreasingTime() 260 angle::PlatformMethods* platformMethods = nullptr; in ANGLEGLContext()
|
/external/angle/src/tests/capture_replay_tests/ |
D | CaptureReplayTests.cpp | 66 [[maybe_unused]] void LogError(angle::PlatformMethods *platform, const char *errorMessage) in LogError() 71 [[maybe_unused]] void LogWarning(angle::PlatformMethods *platform, const char *warningMessage) in LogWarning() 76 [[maybe_unused]] void LogInfo(angle::PlatformMethods *platform, const char *infoMessage) in LogInfo() 435 angle::PlatformMethods mPlatformMethods;
|
/external/angle/src/tests/deqp_support/ |
D | tcuANGLEPlatform.cpp | 81 angle::PlatformMethods mPlatformMethods; 305 static_assert(sizeof(eglw::EGLAttrib) == sizeof(angle::PlatformMethods *), in initAttribs()
|
D | angle_deqp_gtest.cpp | 49 void HandlePlatformError(PlatformMethods *platform, const char *errorMessage) in HandlePlatformError()
|
/external/angle/src/tests/egl_tests/ |
D | EGLProgramCacheControlTest.cpp | 19 void TestCacheProgram(PlatformMethods *platform, 72 void TestCacheProgram(PlatformMethods *platform, in TestCacheProgram()
|
/external/angle/src/common/base/anglebase/trace_event/ |
D | trace_event.h | 708 static inline angle::TraceEventHandle addTraceEvent(angle::PlatformMethods *platform, in addTraceEvent() 746 void initialize(angle::PlatformMethods *platform, in initialize() 776 angle::PlatformMethods *platform;
|
/external/angle/src/tests/test_utils/ |
D | ANGLETest.cpp | 63 void TestPlatform_logError(PlatformMethods *platform, const char *errorMessage) in TestPlatform_logError() 74 void TestPlatform_logWarning(PlatformMethods *platform, const char *warningMessage) in TestPlatform_logWarning() 94 void TestPlatform_logInfo(PlatformMethods *platform, const char *infoMessage) {} in TestPlatform_logInfo() 393 PlatformMethods gDefaultPlatformMethods;
|
D | ANGLETest.h | 735 extern angle::PlatformMethods gDefaultPlatformMethods;
|
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_library_cache.mm | 24 #include "platform/PlatformMethods.h"
|
D | mtl_utils.mm | 26 #include "platform/PlatformMethods.h"
|
/external/angle/src/libANGLE/renderer/gl/cgl/ |
D | DisplayCGL.mm | 27 #import "platform/PlatformMethods.h"
|
/external/angle/src/ |
D | libGLESv2.gni | 247 "include/platform/PlatformMethods.h",
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | ContextVk.cpp | 1374 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in initialize() 3756 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in synchronizeCpuGpuTime() 3970 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in checkCompletedGpuEvents() 4020 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in flushGpuEvents()
|