37 lines
2.0 KiB
Diff
37 lines
2.0 KiB
Diff
|
diff -up chromium-77.0.3865.75/gpu/ipc/common/mailbox_struct_traits.h.gcc5-r3 chromium-77.0.3865.75/gpu/ipc/common/mailbox_struct_traits.h
|
||
|
--- chromium-77.0.3865.75/gpu/ipc/common/mailbox_struct_traits.h.gcc5-r3 2019-09-09 23:55:18.000000000 +0200
|
||
|
+++ chromium-77.0.3865.75/gpu/ipc/common/mailbox_struct_traits.h 2019-09-12 10:13:16.710206500 +0200
|
||
|
@@ -15,7 +15,7 @@ namespace mojo {
|
||
|
template <>
|
||
|
struct StructTraits<gpu::mojom::MailboxDataView, gpu::Mailbox> {
|
||
|
static base::span<const int8_t> name(const gpu::Mailbox& mailbox) {
|
||
|
- return mailbox.name;
|
||
|
+ return base::make_span(mailbox.name);
|
||
|
}
|
||
|
static bool Read(gpu::mojom::MailboxDataView data, gpu::Mailbox* out);
|
||
|
};
|
||
|
diff -up chromium-77.0.3865.75/services/viz/public/cpp/compositing/quads_struct_traits.h.gcc5-r3 chromium-77.0.3865.75/services/viz/public/cpp/compositing/quads_struct_traits.h
|
||
|
--- chromium-77.0.3865.75/services/viz/public/cpp/compositing/quads_struct_traits.h.gcc5-r3 2019-09-09 23:55:23.000000000 +0200
|
||
|
+++ chromium-77.0.3865.75/services/viz/public/cpp/compositing/quads_struct_traits.h 2019-09-12 10:13:16.710206500 +0200
|
||
|
@@ -391,7 +391,7 @@ struct StructTraits<viz::mojom::TextureQ
|
||
|
static base::span<const float> vertex_opacity(const viz::DrawQuad& input) {
|
||
|
const viz::TextureDrawQuad* quad =
|
||
|
viz::TextureDrawQuad::MaterialCast(&input);
|
||
|
- return quad->vertex_opacity;
|
||
|
+ return base::make_span(quad->vertex_opacity);
|
||
|
}
|
||
|
|
||
|
static bool y_flipped(const viz::DrawQuad& input) {
|
||
|
diff -up chromium-77.0.3865.75/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc.gcc5-r3 chromium-77.0.3865.75/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc
|
||
|
--- chromium-77.0.3865.75/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc.gcc5-r3 2019-09-12 10:13:16.711206509 +0200
|
||
|
+++ chromium-77.0.3865.75/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc 2019-09-12 15:41:15.300158849 +0200
|
||
|
@@ -10,7 +10,7 @@
|
||
|
|
||
|
#include "modules/audio_processing/aec3/aec_state.h"
|
||
|
|
||
|
-#include <math.h>
|
||
|
+#include <cmath>
|
||
|
|
||
|
#include <algorithm>
|
||
|
#include <numeric>
|