File tree 8 files changed +2
-23
lines changed
8 files changed +2
-23
lines changed Original file line number Diff line number Diff line change 574
574
CODE_SIGN_IDENTITY = "-";
575
575
CODE_SIGN_STYLE = Automatic;
576
576
COMBINE_HIDPI_IMAGES = YES;
577
+ EXCLUDED_ARCHS = arm64;
577
578
INFOPLIST_FILE = PAGViewer/Info.plist;
578
579
LD_RUNPATH_SEARCH_PATHS = (
579
580
"$(inherited)",
595
596
CODE_SIGN_IDENTITY = "-";
596
597
CODE_SIGN_STYLE = Automatic;
597
598
COMBINE_HIDPI_IMAGES = YES;
599
+ EXCLUDED_ARCHS = arm64;
598
600
INFOPLIST_FILE = PAGViewer/Info.plist;
599
601
LD_RUNPATH_SEARCH_PATHS = (
600
602
"$(inherited)",
Original file line number Diff line number Diff line change @@ -73,9 +73,6 @@ bool Platform::registerFallbackFonts() const {
73
73
return false ;
74
74
}
75
75
76
- void Platform::reportStatisticalData (std::unordered_map<std::string, std::string>&) const {
77
- }
78
-
79
76
NALUType Platform::naluType () const {
80
77
return NALUType::AnnexB;
81
78
}
Original file line number Diff line number Diff line change @@ -107,11 +107,6 @@ class Platform {
107
107
*/
108
108
virtual bool registerFallbackFonts () const ;
109
109
110
- /* *
111
- * Reports the statistical data of pag.
112
- */
113
- virtual void reportStatisticalData (std::unordered_map<std::string, std::string>& reportMap) const ;
114
-
115
110
/* *
116
111
* Returns the default NALU start code type of the current platform.
117
112
*/
Original file line number Diff line number Diff line change @@ -97,10 +97,6 @@ bool NativePlatform::registerFallbackFonts() const {
97
97
return FontConfigAndroid::RegisterFallbackFonts ();
98
98
}
99
99
100
- void NativePlatform::reportStatisticalData (
101
- std::unordered_map<std::string, std::string>&) const {
102
- }
103
-
104
100
void NativePlatform::traceImage (const pag::PixelMap& pixelMap, const std::string& tag) const {
105
101
JTraceImage::Trace (pixelMap, tag);
106
102
}
Original file line number Diff line number Diff line change @@ -49,9 +49,6 @@ class NativePlatform : public Platform {
49
49
50
50
bool registerFallbackFonts () const override ;
51
51
52
- void reportStatisticalData (
53
- std::unordered_map<std::string, std::string>& reportMap) const override ;
54
-
55
52
void traceImage (const PixelMap& pixelMap, const std::string& tag) const override ;
56
53
};
57
54
} // namespace pag
Original file line number Diff line number Diff line change @@ -24,8 +24,5 @@ namespace pag {
24
24
class NativePlatform : public CocoaPlatform {
25
25
public:
26
26
std::unique_ptr<VideoDecoder> makeHardwareDecoder (const VideoConfig& config) const override ;
27
-
28
- void reportStatisticalData (
29
- std::unordered_map<std::string, std::string>& reportMap) const override ;
30
27
};
31
28
} // namespace pag
Original file line number Diff line number Diff line change 40
40
#endif
41
41
}
42
42
43
- void NativePlatform::reportStatisticalData (
44
- std::unordered_map<std::string, std::string>&) const {
45
- }
46
43
}
Original file line number Diff line number Diff line change 17
17
// ///////////////////////////////////////////////////////////////////////////////////////////////
18
18
19
19
#include " FileReporter.h"
20
- #include " platform/Platform.h"
21
20
#include " rendering/caches/RenderCache.h"
22
21
#include " rendering/layers/PAGStage.h"
23
22
@@ -104,7 +103,6 @@ void FileReporter::reportData() {
104
103
reportInfos.insert (std::make_pair (" event" , " pag_monitor" ));
105
104
reportInfos.insert (std::make_pair (" version" , PAG::SDKVersion ()));
106
105
reportInfos.insert (std::make_pair (" usability" , " 1" ));
107
- Platform::Current ()->reportStatisticalData (reportInfos);
108
106
}
109
107
110
108
static int64_t GetOldRenderTime (RenderCache* cache) {
You can’t perform that action at this time.
0 commit comments