/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 | 605 void Display_logError(angle::PlatformMethods *platform, const char *errorMessage) in Display_logError() 610 void Display_logWarning(angle::PlatformMethods *platform, const char *warningMessage) in Display_logWarning() 615 void Display_logInfo(angle::PlatformMethods *platform, const char *infoMessage) in Display_logInfo() 638 angle::PlatformMethods *platformMethods = ANGLEPlatformCurrent(); in ANGLESetDefaultDisplayPlatform() 985 const angle::PlatformMethods *platformMethods = in setupDisplayPlatform() 986 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 | 226 DelegateWorkerPool(PlatformMethods *platform) : mPlatform(platform) {} in DelegateWorkerPool() 234 PlatformMethods *mPlatform; 288 PlatformMethods *platform) in Create()
|
D | WorkerThread.h | 94 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 | 70 void EmptyPlatformMethod(PlatformMethods *, const char *) {} in EmptyPlatformMethod() argument 72 void CustomLogError(PlatformMethods *platform, const char *errorMessage) in CustomLogError() 78 TraceEventHandle AddPerfTraceEvent(PlatformMethods *platform, in AddPerfTraceEvent() 110 const unsigned char *GetPerfTraceCategoryEnabled(PlatformMethods *platform, in GetPerfTraceCategoryEnabled() 128 void UpdateTraceEventDuration(PlatformMethods *platform, in UpdateTraceEventDuration() 136 double MonotonicallyIncreasingTime(PlatformMethods *platform) in MonotonicallyIncreasingTime()
|
D | ANGLEPerfTest.h | 259 angle::PlatformMethods mPlatformMethods;
|
/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/util/ |
D | EGLPlatformParameters.h | 21 struct PlatformMethods; 105 angle::PlatformMethods *platformMethods = nullptr;
|
D | EGLWindow.h | 27 struct PlatformMethods; 155 const angle::PlatformMethods *getPlatformMethods() const { return mPlatform.platformMethods; } in getPlatformMethods()
|
/external/angle/src/tests/capture_replay_tests/ |
D | CaptureReplayTests.cpp | 62 [[maybe_unused]] void LogError(angle::PlatformMethods *platform, const char *errorMessage) in LogError() 67 [[maybe_unused]] void LogWarning(angle::PlatformMethods *platform, const char *warningMessage) in LogWarning() 72 [[maybe_unused]] void LogInfo(angle::PlatformMethods *platform, const char *infoMessage) in LogInfo() 446 angle::PlatformMethods mPlatformMethods;
|
/external/angle/src/tests/deqp_support/ |
D | tcuANGLEPlatform.cpp | 77 angle::PlatformMethods mPlatformMethods; 266 static_assert(sizeof(eglw::EGLAttrib) == sizeof(angle::PlatformMethods *), in initAttribs()
|
D | angle_deqp_gtest.cpp | 48 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 | 59 void TestPlatform_logError(PlatformMethods *platform, const char *errorMessage) in TestPlatform_logError() 70 void TestPlatform_logWarning(PlatformMethods *platform, const char *warningMessage) in TestPlatform_logWarning() 86 void TestPlatform_logInfo(PlatformMethods *platform, const char *infoMessage) {} in TestPlatform_logInfo() 375 PlatformMethods gDefaultPlatformMethods;
|
D | ANGLETest.h | 691 extern angle::PlatformMethods gDefaultPlatformMethods;
|
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_library_cache.mm | 26 #include "platform/PlatformMethods.h"
|
D | DisplayMtl.mm | 29 #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 | 238 "include/platform/PlatformMethods.h",
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | ContextVk.cpp | 1370 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in initialize() 3574 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in synchronizeCpuGpuTime() 3787 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in checkCompletedGpuEvents() 3837 angle::PlatformMethods *platform = ANGLEPlatformCurrent(); in flushGpuEvents()
|