1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/command_buffer/service/shared_image/compound_image_backing.h"
#include <ostream>
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/memory/scoped_refptr.h"
#include "base/metrics/histogram_macros.h"
#include "base/strings/stringprintf.h"
#include "base/trace_event/memory_allocator_dump_guid.h"
#include "base/trace_event/process_memory_dump.h"
#include "components/viz/common/resources/shared_image_format.h"
#include "components/viz/common/resources/shared_image_format_utils.h"
#include "gpu/command_buffer/common/mailbox.h"
#include "gpu/command_buffer/common/shared_image_usage.h"
#include "gpu/command_buffer/service/memory_tracking.h"
#include "gpu/command_buffer/service/shared_context_state.h"
#include "gpu/command_buffer/service/shared_image/shared_image_backing_factory.h"
#include "gpu/command_buffer/service/shared_image/shared_image_copy_manager.h"
#include "gpu/command_buffer/service/shared_image/shared_image_factory.h"
#include "gpu/command_buffer/service/shared_image/shared_image_format_service_utils.h"
#include "gpu/command_buffer/service/shared_image/shared_image_manager.h"
#include "gpu/command_buffer/service/shared_image/shared_image_representation.h"
#include "gpu/command_buffer/service/shared_image/shared_memory_image_backing.h"
#include "gpu/command_buffer/service/shared_image/shared_memory_image_backing_factory.h"
#include "gpu/command_buffer/service/shared_memory_region_wrapper.h"
#include "gpu/config/gpu_finch_features.h"
#include "third_party/skia/include/core/SkAlphaType.h"
#include "third_party/skia/include/core/SkPixmap.h"
#include "third_party/skia/include/core/SkSurface.h"
#include "third_party/skia/include/core/SkSurfaceProps.h"
#include "third_party/skia/include/gpu/ganesh/GrDirectContext.h"
#include "third_party/skia/include/gpu/ganesh/GrTypes.h"
#include "third_party/skia/include/gpu/graphite/BackendTexture.h"
#include "third_party/skia/include/private/chromium/GrPromiseImageTexture.h"
#include "ui/gfx/buffer_types.h"
#include "ui/gfx/color_space.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/gpu_memory_buffer_handle.h"
#if BUILDFLAG(IS_WIN)
#include "ui/gfx/win/d3d_shared_fence.h"
#endif
namespace gpu {
namespace {
// Allows CompoundImageBacking to allocate backings during runtime if a
// compatible backing to serve clients requested usage is not already present.
BASE_FEATURE(kUseDynamicBackingAllocations, base::FEATURE_DISABLED_BY_DEFAULT);
constexpr AccessStreamSet kMemoryStreamSet = {SharedImageAccessStream::kMemory};
// Unique GUIDs for child backings.
base::trace_event::MemoryAllocatorDumpGuid GetSubBackingGUIDForTracing(
const Mailbox& mailbox,
int backing_index) {
return base::trace_event::MemoryAllocatorDumpGuid(
base::StringPrintf("gpu-shared-image/%s/sub-backing/%d",
mailbox.ToDebugString().c_str(), backing_index));
}
#if BUILDFLAG(IS_WIN)
// Only allow shmem overlays for NV12 on Windows.
// This moves the SCANOUT flag from the GPU backing to the shmem backing in the
// CompoundImageBacking.
constexpr bool kAllowShmOverlays = true;
#else
constexpr bool kAllowShmOverlays = false;
#endif
gpu::SharedImageUsageSet GetShmSharedImageUsage(SharedImageUsageSet usage) {
gpu::SharedImageUsageSet new_usage = SHARED_IMAGE_USAGE_CPU_WRITE_ONLY;
if (usage.Has(SHARED_IMAGE_USAGE_CPU_READ)) {
new_usage |= SHARED_IMAGE_USAGE_CPU_READ;
}
if (kAllowShmOverlays && usage.Has(gpu::SHARED_IMAGE_USAGE_SCANOUT)) {
new_usage |= SHARED_IMAGE_USAGE_SCANOUT;
}
return new_usage;
}
// This might need further tweaking in order to be able to choose appropriate
// backing. Note that the backing usually doesnt know at this point if the
// access stream will be used for read or write.
SharedImageUsageSet GetUsageFromAccessStream(SharedImageAccessStream stream) {
switch (stream) {
case SharedImageAccessStream::kGL:
return SHARED_IMAGE_USAGE_GLES2_READ | SHARED_IMAGE_USAGE_GLES2_WRITE;
case SharedImageAccessStream::kSkia:
return SHARED_IMAGE_USAGE_RASTER_READ | SHARED_IMAGE_USAGE_RASTER_WRITE |
SHARED_IMAGE_USAGE_DISPLAY_READ | SHARED_IMAGE_USAGE_DISPLAY_WRITE;
case SharedImageAccessStream::kDawn:
return SHARED_IMAGE_USAGE_WEBGPU_READ | SHARED_IMAGE_USAGE_WEBGPU_WRITE;
case SharedImageAccessStream::kDawnBuffer:
return SHARED_IMAGE_USAGE_WEBGPU_READ | SHARED_IMAGE_USAGE_WEBGPU_WRITE;
case SharedImageAccessStream::kOverlay:
return SHARED_IMAGE_USAGE_SCANOUT;
case SharedImageAccessStream::kVaapi:
return SHARED_IMAGE_USAGE_VIDEO_DECODE;
case SharedImageAccessStream::kWebNNTensor:
// Note that SHARED_IMAGE_USAGE_WEBNN_SHARED_TENSOR is the main usage, we
// always need it for WebNN, the two other(*_TENSOR_READ/WRITE) are for
// additional functionality in webnn (upload/readback of the tensor).
return SHARED_IMAGE_USAGE_WEBNN_SHARED_TENSOR;
case SharedImageAccessStream::kMemory:
// Below usage set ensures that only SharedMemoryImageBacking will be able
// to support this stream.
return SHARED_IMAGE_USAGE_CPU_WRITE_ONLY | SHARED_IMAGE_USAGE_CPU_READ |
SHARED_IMAGE_USAGE_RASTER_COPY_SOURCE;
default:
NOTREACHED();
}
}
} // namespace
// Wrapped representation types are not in the anonymous namespace because they
// need to be friend classes to real representations to access protected
// virtual functions.
class WrappedGLTextureCompoundImageRepresentation
: public GLTextureImageRepresentation {
public:
WrappedGLTextureCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<GLTextureImageRepresentation> wrapped)
: GLTextureImageRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
DCHECK(wrapped_);
}
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
// GLTextureImageRepresentation implementation.
bool BeginAccess(GLenum mode) final {
AccessMode access_mode =
mode == kReadAccessMode ? AccessMode::kRead : AccessMode::kWrite;
compound_backing()->NotifyBeginAccess(wrapped_->backing(), access_mode);
access_mode_ = access_mode;
return wrapped_->BeginAccess(mode);
}
void EndAccess() override {
wrapped_->EndAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(), access_mode_);
}
gpu::TextureBase* GetTextureBase(int plane_index) final {
return wrapped_->GetTextureBase(plane_index);
}
bool SupportsMultipleConcurrentReadAccess() final {
return wrapped_->SupportsMultipleConcurrentReadAccess();
}
gles2::Texture* GetTexture(int plane_index) final {
return wrapped_->GetTexture(plane_index);
}
private:
std::unique_ptr<GLTextureImageRepresentation> wrapped_;
AccessMode access_mode_ = AccessMode::kNone;
};
class WrappedGLTexturePassthroughCompoundImageRepresentation
: public GLTexturePassthroughImageRepresentation {
public:
WrappedGLTexturePassthroughCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<GLTexturePassthroughImageRepresentation> wrapped)
: GLTexturePassthroughImageRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
DCHECK(wrapped_);
}
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
// GLTexturePassthroughImageRepresentation implementation.
bool BeginAccess(GLenum mode) override {
AccessMode access_mode =
mode == kReadAccessMode ? AccessMode::kRead : AccessMode::kWrite;
compound_backing()->NotifyBeginAccess(wrapped_->backing(), access_mode);
access_mode_ = access_mode;
return wrapped_->BeginAccess(mode);
}
void EndAccess() override {
wrapped_->EndAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(), access_mode_);
}
gpu::TextureBase* GetTextureBase(int plane_index) final {
return wrapped_->GetTextureBase(plane_index);
}
bool SupportsMultipleConcurrentReadAccess() final {
return wrapped_->SupportsMultipleConcurrentReadAccess();
}
const scoped_refptr<gles2::TexturePassthrough>& GetTexturePassthrough(
int plane_index) final {
return wrapped_->GetTexturePassthrough(plane_index);
}
private:
std::unique_ptr<GLTexturePassthroughImageRepresentation> wrapped_;
AccessMode access_mode_ = AccessMode::kNone;
};
class WrappedSkiaGaneshCompoundImageRepresentation
: public SkiaGaneshImageRepresentation {
public:
WrappedSkiaGaneshCompoundImageRepresentation(
GrDirectContext* gr_context,
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<SkiaGaneshImageRepresentation> wrapped)
: SkiaGaneshImageRepresentation(gr_context, manager, backing, tracker),
wrapped_(std::move(wrapped)) {
DCHECK(wrapped_);
}
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
// SkiaImageRepresentation implementation.
bool SupportsMultipleConcurrentReadAccess() final {
return wrapped_->SupportsMultipleConcurrentReadAccess();
}
std::vector<sk_sp<SkSurface>> BeginWriteAccess(
int final_msaa_count,
const SkSurfaceProps& surface_props,
const gfx::Rect& update_rect,
std::vector<GrBackendSemaphore>* begin_semaphores,
std::vector<GrBackendSemaphore>* end_semaphores,
std::unique_ptr<skgpu::MutableTextureState>* end_state) final {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kWrite);
return wrapped_->BeginWriteAccess(final_msaa_count, surface_props,
update_rect, begin_semaphores,
end_semaphores, end_state);
}
std::vector<sk_sp<GrPromiseImageTexture>> BeginWriteAccess(
std::vector<GrBackendSemaphore>* begin_semaphores,
std::vector<GrBackendSemaphore>* end_semaphores,
std::unique_ptr<skgpu::MutableTextureState>* end_state) final {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kWrite);
return wrapped_->BeginWriteAccess(begin_semaphores, end_semaphores,
end_state);
}
void EndWriteAccess() final {
wrapped_->EndWriteAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(),
AccessMode::kWrite);
}
std::vector<sk_sp<GrPromiseImageTexture>> BeginReadAccess(
std::vector<GrBackendSemaphore>* begin_semaphores,
std::vector<GrBackendSemaphore>* end_semaphores,
std::unique_ptr<skgpu::MutableTextureState>* end_state) final {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kRead);
return wrapped_->BeginReadAccess(begin_semaphores, end_semaphores,
end_state);
}
void EndReadAccess() final {
wrapped_->EndReadAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(), AccessMode::kRead);
}
private:
std::unique_ptr<SkiaGaneshImageRepresentation> wrapped_;
};
class WrappedSkiaGraphiteCompoundImageRepresentation
: public SkiaGraphiteImageRepresentation {
public:
WrappedSkiaGraphiteCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<SkiaGraphiteImageRepresentation> wrapped)
: SkiaGraphiteImageRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
CHECK(wrapped_);
}
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
// SkiaGraphiteImageRepresentation implementation.
bool SupportsMultipleConcurrentReadAccess() final {
return wrapped_->SupportsMultipleConcurrentReadAccess();
}
std::vector<sk_sp<SkSurface>> BeginWriteAccess(
const SkSurfaceProps& surface_props,
const gfx::Rect& update_rect) final {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kWrite);
return wrapped_->BeginWriteAccess(surface_props, update_rect);
}
std::vector<scoped_refptr<GraphiteTextureHolder>> BeginWriteAccess() final {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kWrite);
return wrapped_->BeginWriteAccess();
}
void EndWriteAccess() final {
wrapped_->EndWriteAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(),
AccessMode::kWrite);
}
std::vector<scoped_refptr<GraphiteTextureHolder>> BeginReadAccess() final {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kRead);
return wrapped_->BeginReadAccess();
}
void EndReadAccess() final {
wrapped_->EndReadAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(), AccessMode::kRead);
}
private:
std::unique_ptr<SkiaGraphiteImageRepresentation> wrapped_;
};
class WrappedDawnCompoundImageRepresentation : public DawnImageRepresentation {
public:
WrappedDawnCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<DawnImageRepresentation> wrapped)
: DawnImageRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
DCHECK(wrapped_);
}
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
// DawnImageRepresentation implementation.
wgpu::Texture BeginAccess(wgpu::TextureUsage webgpu_usage,
wgpu::TextureUsage internal_usage) override {
AccessMode access_mode =
webgpu_usage & kWriteUsage ? AccessMode::kWrite : AccessMode::kRead;
if (internal_usage & kWriteUsage) {
access_mode = AccessMode::kWrite;
}
compound_backing()->NotifyBeginAccess(wrapped_->backing(), access_mode);
access_mode_ = access_mode;
return wrapped_->BeginAccess(webgpu_usage, internal_usage);
}
void EndAccess() override {
wrapped_->EndAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(), access_mode_);
}
private:
std::unique_ptr<DawnImageRepresentation> wrapped_;
AccessMode access_mode_ = AccessMode::kNone;
};
class WrappedDawnBufferCompoundImageRepresentation
: public DawnBufferRepresentation {
public:
WrappedDawnBufferCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<DawnBufferRepresentation> wrapped)
: DawnBufferRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
DCHECK(wrapped_);
}
private:
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
wgpu::Buffer BeginAccess(wgpu::BufferUsage usage) override {
AccessMode access_mode = usage & wgpu::BufferUsage::MapWrite
? AccessMode::kWrite
: AccessMode::kRead;
compound_backing()->NotifyBeginAccess(wrapped_->backing(), access_mode);
access_mode_ = access_mode;
return wrapped_->BeginAccess(usage);
}
void EndAccess() override {
wrapped_->EndAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(), access_mode_);
}
std::unique_ptr<DawnBufferRepresentation> wrapped_;
AccessMode access_mode_ = AccessMode::kNone;
};
class WrappedOverlayCompoundImageRepresentation
: public OverlayImageRepresentation {
public:
WrappedOverlayCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<OverlayImageRepresentation> wrapped)
: OverlayImageRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
DCHECK(wrapped_);
}
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
// OverlayImageRepresentation implementation.
bool BeginReadAccess(gfx::GpuFenceHandle& acquire_fence) final {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kRead);
return wrapped_->BeginReadAccess(acquire_fence);
}
void EndReadAccess(gfx::GpuFenceHandle release_fence) final {
wrapped_->EndReadAccess(std::move(release_fence));
compound_backing()->NotifyEndAccess(wrapped_->backing(), AccessMode::kRead);
}
#if BUILDFLAG(IS_ANDROID)
AHardwareBuffer* GetAHardwareBuffer() final {
return wrapped_->GetAHardwareBuffer();
}
std::unique_ptr<base::android::ScopedHardwareBufferFenceSync>
GetAHardwareBufferFenceSync() final {
return wrapped_->GetAHardwareBufferFenceSync();
}
#elif BUILDFLAG(IS_WIN)
std::optional<gl::DCLayerOverlayImage> GetDCLayerOverlayImage() final {
return wrapped_->GetDCLayerOverlayImage();
}
#elif BUILDFLAG(IS_APPLE)
gfx::ScopedIOSurface GetIOSurface() const final {
return wrapped_->GetIOSurface();
}
bool IsInUseByWindowServer() const final {
return wrapped_->IsInUseByWindowServer();
}
#endif
private:
std::unique_ptr<OverlayImageRepresentation> wrapped_;
};
class WrappedWebNNTensorCompoundImageRepresentation
: public WebNNTensorRepresentation {
public:
WrappedWebNNTensorCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<WebNNTensorRepresentation> wrapped)
: WebNNTensorRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
DCHECK(wrapped_);
}
#if BUILDFLAG(IS_WIN)
scoped_refptr<gfx::D3DSharedFence> GetAcquireFence() const final {
return wrapped_->GetAcquireFence();
}
void SetReleaseFence(scoped_refptr<gfx::D3DSharedFence> release_fence) final {
wrapped_->SetReleaseFence(std::move(release_fence));
}
Microsoft::WRL::ComPtr<ID3D12Resource> GetD3D12Buffer() const final {
return wrapped_->GetD3D12Buffer();
}
#endif
#if BUILDFLAG(IS_APPLE)
IOSurfaceRef GetIOSurface() const final { return wrapped_->GetIOSurface(); }
#endif
private:
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
bool BeginAccess() override {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kWrite);
return wrapped_->BeginAccess();
}
void EndAccess() final {
wrapped_->EndAccess();
compound_backing()->NotifyEndAccess(wrapped_->backing(),
AccessMode::kWrite);
}
std::unique_ptr<WebNNTensorRepresentation> wrapped_;
};
class WrappedMemoryCompoundImageRepresentation
: public MemoryImageRepresentation {
public:
WrappedMemoryCompoundImageRepresentation(
SharedImageManager* manager,
SharedImageBacking* backing,
MemoryTypeTracker* tracker,
std::unique_ptr<MemoryImageRepresentation> wrapped)
: MemoryImageRepresentation(manager, backing, tracker),
wrapped_(std::move(wrapped)) {
CHECK(wrapped_);
}
CompoundImageBacking* compound_backing() {
return static_cast<CompoundImageBacking*>(backing());
}
SkPixmap BeginReadAccess() override {
compound_backing()->NotifyBeginAccess(wrapped_->backing(),
AccessMode::kRead);
return wrapped_->BeginReadAccess();
}
private:
std::unique_ptr<MemoryImageRepresentation> wrapped_;
};
// static
bool CompoundImageBacking::IsValidSharedMemoryBufferFormat(
const gfx::Size& size,
viz::SharedImageFormat format) {
if (format.PrefersExternalSampler() ||
!viz::HasEquivalentBufferFormat(format)) {
DVLOG(1) << "Not a valid format: " << format.ToString();
return false;
}
if (!IsSizeForBufferHandleValid(size, format)) {
DVLOG(1) << "Invalid image size: " << size.ToString()
<< " for format: " << format.ToString();
return false;
}
return true;
}
// static
SharedImageUsageSet CompoundImageBacking::GetGpuSharedImageUsage(
SharedImageUsageSet usage) {
// Add allow copying from the shmem backing to the gpu backing.
usage |= SHARED_IMAGE_USAGE_CPU_UPLOAD;
if (kAllowShmOverlays) {
// Remove SCANOUT usage since it was previously moved to the shmem backing.
// See: |GetShmSharedImageUsage|
usage.RemoveAll(SharedImageUsageSet(gpu::SHARED_IMAGE_USAGE_SCANOUT));
}
if (usage.Has(SHARED_IMAGE_USAGE_CPU_READ)) {
// Remove CPU_READ usage since it was previously moved to the shmem backing.
// See: |GetShmSharedImageUsage|
usage.RemoveAll(SharedImageUsageSet(gpu::SHARED_IMAGE_USAGE_CPU_READ));
}
if (usage.Has(SHARED_IMAGE_USAGE_CPU_WRITE_ONLY)) {
// Remove CPU_WRITE usage since it was previously moved to the shmem
// backing. See: |GetShmSharedImageUsage|
usage.RemoveAll(
SharedImageUsageSet(gpu::SHARED_IMAGE_USAGE_CPU_WRITE_ONLY));
}
return usage;
}
// static
std::unique_ptr<SharedImageBacking> CompoundImageBacking::Create(
SharedImageFactory* shared_image_factory,
scoped_refptr<SharedImageCopyManager> copy_manager,
const Mailbox& mailbox,
gfx::GpuMemoryBufferHandle handle,
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label) {
if (!IsValidSharedMemoryBufferFormat(size, format)) {
return nullptr;
}
auto* gpu_backing_factory = shared_image_factory->GetFactoryByUsage(
GetGpuSharedImageUsage(SharedImageUsageSet(usage)), format, size,
/*pixel_data=*/{}, gfx::EMPTY_BUFFER);
if (!gpu_backing_factory) {
return nullptr;
}
auto shm_backing = SharedMemoryImageBackingFactory().CreateSharedImage(
mailbox, format, size, color_space, surface_origin, alpha_type,
GetShmSharedImageUsage(usage), debug_label,
/*is_thread_safe=*/false, std::move(handle));
if (!shm_backing) {
return nullptr;
}
shm_backing->SetNotRefCounted();
return base::WrapUnique(new CompoundImageBacking(
mailbox, format, size, color_space, surface_origin, alpha_type, usage,
std::move(debug_label), std::move(shm_backing),
shared_image_factory->GetWeakPtr(), gpu_backing_factory->GetWeakPtr(),
std::move(copy_manager)));
}
// static
std::unique_ptr<SharedImageBacking> CompoundImageBacking::Create(
SharedImageFactory* shared_image_factory,
scoped_refptr<SharedImageCopyManager> copy_manager,
const Mailbox& mailbox,
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label,
gfx::BufferUsage buffer_usage) {
if (!IsValidSharedMemoryBufferFormat(size, format)) {
return nullptr;
}
auto* gpu_backing_factory = shared_image_factory->GetFactoryByUsage(
GetGpuSharedImageUsage(SharedImageUsageSet(usage)), format, size,
/*pixel_data=*/{}, gfx::EMPTY_BUFFER);
if (!gpu_backing_factory) {
return nullptr;
}
auto shm_backing = SharedMemoryImageBackingFactory().CreateSharedImage(
mailbox, format, kNullSurfaceHandle, size, color_space, surface_origin,
alpha_type, GetShmSharedImageUsage(usage), debug_label,
/*is_thread_safe=*/false, buffer_usage);
if (!shm_backing) {
return nullptr;
}
shm_backing->SetNotRefCounted();
return base::WrapUnique(new CompoundImageBacking(
mailbox, format, size, color_space, surface_origin, alpha_type, usage,
std::move(debug_label), std::move(shm_backing),
shared_image_factory->GetWeakPtr(), gpu_backing_factory->GetWeakPtr(),
std::move(copy_manager), std::move(buffer_usage)));
}
std::unique_ptr<SharedImageBacking> CompoundImageBacking::WrapExternalBacking(
SharedImageFactory* shared_image_factory,
scoped_refptr<SharedImageCopyManager> copy_manager,
std::unique_ptr<SharedImageBacking> backing) {
if (!backing) {
return nullptr;
}
// We don't wrap an existing CompoundImageBacking which consists of a shm and
// a gpu backing.
CHECK_NE(backing->GetType(), SharedImageBackingType::kCompound);
backing->SetNotRefCounted();
auto si_usage =
shared_image_factory->IsSharedBetweenThreads(backing->usage());
auto buffer_usage = backing->buffer_usage();
return base::WrapUnique(new CompoundImageBacking(
std::move(si_usage), std::move(buffer_usage), std::move(backing),
std::move(copy_manager), shared_image_factory->GetWeakPtr()));
}
// static
std::unique_ptr<SharedImageBacking>
CompoundImageBacking::CreateSharedMemoryForTesting(
SharedImageBackingFactory* gpu_backing_factory,
scoped_refptr<SharedImageCopyManager> copy_manager,
const Mailbox& mailbox,
gfx::GpuMemoryBufferHandle handle,
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label) {
DCHECK(IsValidSharedMemoryBufferFormat(size, format));
auto shm_backing = SharedMemoryImageBackingFactory().CreateSharedImage(
mailbox, format, size, color_space, surface_origin, alpha_type,
GetShmSharedImageUsage(usage), debug_label,
/*is_thread_safe=*/false, std::move(handle));
if (!shm_backing) {
return nullptr;
}
shm_backing->SetNotRefCounted();
return base::WrapUnique(new CompoundImageBacking(
mailbox, format, size, color_space, surface_origin, alpha_type, usage,
std::move(debug_label), std::move(shm_backing),
/*shared_image_factory=*/nullptr, gpu_backing_factory->GetWeakPtr(),
std::move(copy_manager)));
}
// static
std::unique_ptr<SharedImageBacking>
CompoundImageBacking::CreateSharedMemoryForTesting(
SharedImageBackingFactory* gpu_backing_factory,
scoped_refptr<SharedImageCopyManager> copy_manager,
const Mailbox& mailbox,
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label,
gfx::BufferUsage buffer_usage) {
DCHECK(IsValidSharedMemoryBufferFormat(size, format));
auto shm_backing = SharedMemoryImageBackingFactory().CreateSharedImage(
mailbox, format, kNullSurfaceHandle, size, color_space, surface_origin,
alpha_type, GetShmSharedImageUsage(usage), debug_label,
/*is_thread_safe=*/false, buffer_usage);
if (!shm_backing) {
return nullptr;
}
shm_backing->SetNotRefCounted();
return base::WrapUnique(new CompoundImageBacking(
mailbox, format, size, color_space, surface_origin, alpha_type, usage,
std::move(debug_label), std::move(shm_backing),
/*shared_image_factory=*/nullptr, gpu_backing_factory->GetWeakPtr(),
std::move(copy_manager), std::move(buffer_usage)));
}
CompoundImageBacking::CompoundImageBacking(
const Mailbox& mailbox,
viz::SharedImageFormat format,
const gfx::Size& size,
const gfx::ColorSpace& color_space,
GrSurfaceOrigin surface_origin,
SkAlphaType alpha_type,
SharedImageUsageSet usage,
std::string debug_label,
std::unique_ptr<SharedImageBacking> shm_backing,
base::WeakPtr<SharedImageFactory> shared_image_factory,
base::WeakPtr<SharedImageBackingFactory> gpu_backing_factory,
scoped_refptr<SharedImageCopyManager> copy_manager,
std::optional<gfx::BufferUsage> buffer_usage)
: ClearTrackingSharedImageBacking(mailbox,
format,
size,
color_space,
surface_origin,
alpha_type,
usage,
debug_label,
shm_backing->GetEstimatedSize(),
/*is_thread_safe=*/false,
std::move(buffer_usage)),
shared_image_factory_(std::move(shared_image_factory)),
copy_manager_(std::move(copy_manager)) {
DCHECK(shm_backing);
DCHECK_EQ(size, shm_backing->size());
// Create shared-memory element (stream = kMemory).
ElementHolder shm_element;
shm_element.access_streams = kMemoryStreamSet;
if (kAllowShmOverlays && usage.Has(gpu::SHARED_IMAGE_USAGE_SCANOUT)) {
shm_element.access_streams.Put(SharedImageAccessStream::kOverlay);
}
shm_element.content_id_ = latest_content_id_;
shm_element.backing = std::move(shm_backing);
has_shm_backing_ = true;
elements_.push_back(std::move(shm_element));
// Whenever CompoundImageBacking is created with a shm backing, mark it as
// fully cleared.
SetClearedRect(gfx::Rect(size));
// Create placeholder for GPU-backed element (streams = all except kMemory).
ElementHolder gpu_element;
gpu_element.access_streams =
base::Difference(AccessStreamSet::All(), kMemoryStreamSet);
// CreateBackingFromBackingFactory will be called on demand. Hence this is
// lazy backing creation.
gpu_element.create_callback =
base::BindOnce(&CompoundImageBacking::CreateBackingFromBackingFactory,
base::Unretained(this), std::move(gpu_backing_factory),
std::move(debug_label));
elements_.push_back(std::move(gpu_element));
}
CompoundImageBacking::CompoundImageBacking(
bool is_thread_safe,
std::optional<gfx::BufferUsage> buffer_usage,
std::unique_ptr<SharedImageBacking> backing,
scoped_refptr<SharedImageCopyManager> copy_manager,
base::WeakPtr<SharedImageFactory> shared_image_factory)
: ClearTrackingSharedImageBacking(backing->mailbox(),
backing->format(),
backing->size(),
backing->color_space(),
backing->surface_origin(),
backing->alpha_type(),
backing->usage(),
backing->debug_label(),
backing->GetEstimatedSize(),
is_thread_safe,
std::move(buffer_usage)),
shared_image_factory_(std::move(shared_image_factory)),
copy_manager_(std::move(copy_manager)) {
// Create the element from the backing.
ElementHolder element;
if (backing->GetType() == SharedImageBackingType::kSharedMemory) {
element.access_streams = kMemoryStreamSet;
} else {
element.access_streams =
base::Difference(AccessStreamSet::All(), kMemoryStreamSet);
}
// |backing| may have a cleared rect set (e.g. from initial pixel data).
// Propagate this to the CompoundImageBacking to keep them in sync.
ClearTrackingSharedImageBacking::SetClearedRect(backing->ClearedRect());
// The backing is already created, so this is not a lazy initialization.
element.backing = std::move(backing);
// Mark the backing as having the latest content since it's the only one
// created so far.
element.content_id_ = latest_content_id_;
elements_.push_back(std::move(element));
CHECK_EQ(elements_.size(), 1u);
}
CompoundImageBacking::~CompoundImageBacking() {
if (pending_copy_to_gmb_callback_) {
std::move(pending_copy_to_gmb_callback_).Run(/*success=*/false);
}
}
void CompoundImageBacking::NotifyBeginAccess(SharedImageBacking* backing,
RepresentationAccessMode mode) {
ElementHolder* access_element = GetElement(backing);
if (!access_element) {
LOG(ERROR) << "backing not in the element list.";
return;
}
// If this element already has the latest content, we're good for read access.
if (access_element->content_id_ == latest_content_id_) {
if (mode == RepresentationAccessMode::kWrite) {
// For write access, this backing is about to become the new latest.
++latest_content_id_;
access_element->content_id_ = latest_content_id_;
}
return;
}
// This backing is stale. We need to find the element which has the latest
// content and copy from it.
ElementHolder* latest_content_element = GetElementWithLatestContent();
bool updated_backing = false;
if (latest_content_element &&
copy_manager_->CopyImage(
/*src_backing=*/latest_content_element->GetBacking(),
/*dst_backing=*/access_element->GetBacking())) {
updated_backing = true;
// Propagate the clear rect from the source backing.
const gfx::Rect src_cleared_rect =
latest_content_element->GetBacking()->ClearedRect();
access_element->GetBacking()->SetClearedRect(src_cleared_rect);
SetClearedRect(src_cleared_rect);
} else {
LOG(ERROR)
<< "Failed to copy between backings. Backing can be using stale data";
}
// Update content IDs. In case of write, we are updating the
// |latest_content_id_| as well as marking the |access_element| as having
// latest content irrespective of above copy failures since write will likely
// overwrite all of the previous content. Although not necessarily true for
// partial writes. For read, we only mark the |access_element| as having
// latest content if the copy succeeded.
if (mode == RepresentationAccessMode::kWrite) {
++latest_content_id_;
access_element->content_id_ = latest_content_id_;
} else if (updated_backing) {
access_element->content_id_ = latest_content_id_;
}
}
void CompoundImageBacking::NotifyEndAccess(SharedImageBacking* backing,
RepresentationAccessMode mode) {
CHECK(backing);
// If the last access was a write and an underlying backing was accessed,
// propagate its cleared rect to the compound backing if it's different.
if (mode == RepresentationAccessMode::kWrite) {
auto cleared_rect = backing->ClearedRect();
if (cleared_rect != ClearedRect()) {
ClearTrackingSharedImageBacking::SetClearedRect(cleared_rect);
}
}
}
SharedImageBackingType CompoundImageBacking::GetType() const {
return SharedImageBackingType::kCompound;
}
void CompoundImageBacking::Update(std::unique_ptr<gfx::GpuFence> in_fence) {
// Update() synchronizes CPU-side writes (from Shared Memory or GMB) with the
// GPU. Hence it must target the backing which owns the CPU-mappable memory.
//
// Per this backing's design:
// 1. SharedMemoryImageBacking if present is the exclusive owner of CPU
// memory.
// 2. A SharedMemoryImageBacking or other CPU-mappable backing is always
// created only at initialization time. Hence it is guaranteed to be at
// elements_[0].
// 3. |elements_| always contains at least one element.
CHECK(!elements_.empty());
auto& element = elements_[0];
CHECK(element.backing);
element.backing->Update(std::move(in_fence));
// Incrementing the content ID marks this backing as the new "source
// of truth." Subsequent access to other backings will trigger an
// efficient copy from this element to ensure consistency.
element.content_id_ = ++latest_content_id_;
}
bool CompoundImageBacking::CopyToGpuMemoryBuffer() {
auto& shm_element = GetShmElement();
if (HasLatestContent(shm_element)) {
return true;
}
auto* gpu_backing = GetGpuBacking();
if (!gpu_backing ||
!copy_manager_->CopyImage(gpu_backing, shm_element.GetBacking())) {
DLOG(ERROR) << "Failed to copy from GPU backing to shared memory";
return false;
}
shm_element.content_id_ = latest_content_id_;
return true;
}
void CompoundImageBacking::CopyToGpuMemoryBufferAsync(
base::OnceCallback<void(bool)> callback) {
auto& shm_element = GetShmElement();
if (HasLatestContent(shm_element)) {
std::move(callback).Run(true);
return;
}
if (pending_copy_to_gmb_callback_) {
DLOG(ERROR) << "Existing CopyToGpuMemoryBuffer operation pending";
std::move(callback).Run(false);
return;
}
auto* gpu_backing = GetGpuBacking();
if (!gpu_backing) {
DLOG(ERROR) << "Failed to copy from GPU backing to shared memory";
std::move(callback).Run(false);
return;
}
pending_copy_to_gmb_callback_ = std::move(callback);
gpu_backing->ReadbackToMemoryAsync(
GetSharedMemoryPixmaps(),
base::BindOnce(&CompoundImageBacking::OnCopyToGpuMemoryBufferComplete,
base::Unretained(this)));
}
void CompoundImageBacking::OnCopyToGpuMemoryBufferComplete(bool success) {
if (success) {
auto& shm_element = GetShmElement();
shm_element.content_id_ = latest_content_id_;
}
std::move(pending_copy_to_gmb_callback_).Run(success);
}
gfx::Rect CompoundImageBacking::ClearedRect() const {
// If we have a shm_backing, we always copy on access and mark entire backing
// as cleared.
return ClearTrackingSharedImageBacking::ClearedRect();
}
void CompoundImageBacking::SetClearedRect(const gfx::Rect& cleared_rect) {
ClearTrackingSharedImageBacking::SetClearedRect(cleared_rect);
// Propagate the cleared rect to all underlying backings. This is important
// because SetClearedRect can be called on a CompoundImageBacking without a
// preceding BeginAccess call (e.g. in WebGPU's AssociateMailbox with the
// WEBGPU_MAILBOX_DISCARD flag). In such cases, it is hard to know which
// backing is currently being accessed. so we must ensure all potential
// backings are updated
for (auto& element : elements_) {
if (element.backing) {
element.backing->SetClearedRect(cleared_rect);
}
}
}
void CompoundImageBacking::MarkForDestruction() {
for (const auto& element : elements_) {
if (element.backing) {
element.backing->MarkForDestruction();
}
}
}
gfx::GpuMemoryBufferHandle CompoundImageBacking::GetGpuMemoryBufferHandle() {
// A GpuMemoryBufferHandle corresponds to the shared memory or native buffer
// (like an IOSurface, AHardwareBuffer, or DXGI Handle) that backs the image.
//
// Per this backing's design:
// 1. Any CPU-mappable backing including SharedMemoryImageBacking is always
// created only at initialization time and never allocated dynamically during
// runtime. Hence it is guaranteed to be at elements_[0].
// 2. |elements_| always contains at least one element.
CHECK(!elements_.empty());
auto& element = elements_[0];
CHECK(element.backing);
return element.backing->GetGpuMemoryBufferHandle();
}
scoped_refptr<gfx::NativePixmap> CompoundImageBacking::GetNativePixmap() {
// The purpose of this function is to get NativePixmap for overlay testing,
// so it needs be the same NativePixmap that we would later get from the
// ProduceOverlay representation. Hence using Overlay stream backing here.
for (const auto& element : elements_) {
if (element.access_streams.Has(SharedImageAccessStream::kOverlay) &&
element.backing) {
return element.backing->GetNativePixmap();
}
}
return nullptr;
}
std::unique_ptr<DawnImageRepresentation> CompoundImageBacking::ProduceDawn(
SharedImageManager* manager,
MemoryTypeTracker* tracker,
const wgpu::Device& device,
wgpu::BackendType backend_type,
std::vector<wgpu::TextureFormat> view_formats,
scoped_refptr<SharedContextState> context_state) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kDawn);
if (!backing)
return nullptr;
auto real_rep = backing->ProduceDawn(manager, tracker, device, backend_type,
std::move(view_formats), context_state);
if (!real_rep)
return nullptr;
return std::make_unique<WrappedDawnCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<DawnBufferRepresentation>
CompoundImageBacking::ProduceDawnBuffer(
SharedImageManager* manager,
MemoryTypeTracker* tracker,
const wgpu::Device& device,
wgpu::BackendType backend_type,
scoped_refptr<SharedContextState> context_state) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kDawnBuffer);
if (!backing) {
return nullptr;
}
auto real_rep = backing->ProduceDawnBuffer(manager, tracker, device,
backend_type, context_state);
if (!real_rep) {
return nullptr;
}
return std::make_unique<WrappedDawnBufferCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<GLTextureImageRepresentation>
CompoundImageBacking::ProduceGLTexture(SharedImageManager* manager,
MemoryTypeTracker* tracker) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kGL);
if (!backing)
return nullptr;
auto real_rep = backing->ProduceGLTexture(manager, tracker);
if (!real_rep)
return nullptr;
return std::make_unique<WrappedGLTextureCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<GLTexturePassthroughImageRepresentation>
CompoundImageBacking::ProduceGLTexturePassthrough(SharedImageManager* manager,
MemoryTypeTracker* tracker) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kGL);
if (!backing)
return nullptr;
auto real_rep = backing->ProduceGLTexturePassthrough(manager, tracker);
if (!real_rep)
return nullptr;
return std::make_unique<
WrappedGLTexturePassthroughCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<SkiaGaneshImageRepresentation>
CompoundImageBacking::ProduceSkiaGanesh(
SharedImageManager* manager,
MemoryTypeTracker* tracker,
scoped_refptr<SharedContextState> context_state) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kSkia);
if (!backing)
return nullptr;
auto real_rep = backing->ProduceSkiaGanesh(manager, tracker, context_state);
if (!real_rep)
return nullptr;
auto* gr_context = context_state ? context_state->gr_context() : nullptr;
return std::make_unique<WrappedSkiaGaneshCompoundImageRepresentation>(
gr_context, manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<SkiaGraphiteImageRepresentation>
CompoundImageBacking::ProduceSkiaGraphite(
SharedImageManager* manager,
MemoryTypeTracker* tracker,
scoped_refptr<SharedContextState> context_state) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kSkia);
if (!backing) {
return nullptr;
}
auto real_rep = backing->ProduceSkiaGraphite(manager, tracker, context_state);
if (!real_rep) {
return nullptr;
}
return std::make_unique<WrappedSkiaGraphiteCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<OverlayImageRepresentation>
CompoundImageBacking::ProduceOverlay(SharedImageManager* manager,
MemoryTypeTracker* tracker) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kOverlay);
if (!backing)
return nullptr;
auto real_rep = backing->ProduceOverlay(manager, tracker);
if (!real_rep)
return nullptr;
return std::make_unique<WrappedOverlayCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<WebNNTensorRepresentation>
CompoundImageBacking::ProduceWebNNTensor(SharedImageManager* manager,
MemoryTypeTracker* tracker) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kWebNNTensor);
if (!backing) {
return nullptr;
}
auto real_rep = backing->ProduceWebNNTensor(manager, tracker);
if (!real_rep) {
return nullptr;
}
return std::make_unique<WrappedWebNNTensorCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
std::unique_ptr<MemoryImageRepresentation> CompoundImageBacking::ProduceMemory(
SharedImageManager* manager,
MemoryTypeTracker* tracker) {
auto* backing = GetOrAllocateBacking(SharedImageAccessStream::kMemory);
if (!backing) {
return nullptr;
}
auto real_rep = backing->ProduceMemory(manager, tracker);
if (!real_rep) {
return nullptr;
}
return std::make_unique<WrappedMemoryCompoundImageRepresentation>(
manager, this, tracker, std::move(real_rep));
}
base::trace_event::MemoryAllocatorDump* CompoundImageBacking::OnMemoryDump(
const std::string& dump_name,
base::trace_event::MemoryAllocatorDumpGuid client_guid,
base::trace_event::ProcessMemoryDump* pmd,
uint64_t client_tracing_id) {
// Create dump but don't add scalar size. The size will be inferred from the
// sizes of the sub-backings.
base::trace_event::MemoryAllocatorDump* dump =
pmd->CreateAllocatorDump(dump_name);
dump->AddString("type", "", GetName());
dump->AddString("dimensions", "", size().ToString());
dump->AddString("format", "", format().ToString());
dump->AddString("usage", "", CreateLabelForSharedImageUsage(usage()));
// Add ownership edge to `client_guid` which expresses shared ownership with
// the client process for the top level dump.
pmd->CreateSharedGlobalAllocatorDump(client_guid);
pmd->AddOwnershipEdge(dump->guid(), client_guid,
static_cast<int>(TracingImportance::kNotOwner));
// Add dumps nested under `dump_name` for child backings owned by compound
// image. These get different shared GUIDs to add ownership edges with GPU
// texture or shared memory.
for (int i = 0; i < static_cast<int>(elements_.size()); ++i) {
auto* backing = elements_[i].backing.get();
if (!backing)
continue;
auto element_client_guid = GetSubBackingGUIDForTracing(mailbox(), i + 1);
std::string element_dump_name =
base::StringPrintf("%s/element_%d", dump_name.c_str(), i);
backing->OnMemoryDump(element_dump_name, element_client_guid, pmd,
client_tracing_id);
}
return dump;
}
const std::vector<SkPixmap>& CompoundImageBacking::GetSharedMemoryPixmaps() {
auto* shm_backing = GetShmElement().GetBacking();
DCHECK(shm_backing);
return static_cast<SharedMemoryImageBacking*>(shm_backing)->pixmaps();
}
CompoundImageBacking::ElementHolder& CompoundImageBacking::GetShmElement() {
for (auto& element : elements_) {
// There should be exactly one element where this returns true.
if (element.access_streams.Has(SharedImageAccessStream::kMemory)) {
return element;
}
}
NOTREACHED();
}
CompoundImageBacking::ElementHolder* CompoundImageBacking::GetElement(
const SharedImageBacking* backing) {
for (auto& element : elements_) {
if (element.GetBacking() == backing) {
return &element;
}
}
return nullptr;
}
CompoundImageBacking::ElementHolder*
CompoundImageBacking::GetElementWithLatestContent() {
// Note that for now iterating over all elements should be fine since we would
// likely not ever had too many backings existing concurrently. We can
// optimize this code by using better algorithm or more suitable data
// structure later if needed.
for (auto& element : elements_) {
if (element.content_id_ == latest_content_id_ && element.GetBacking()) {
return &element;
}
}
return nullptr;
}
SharedImageBacking* CompoundImageBacking::GetOrAllocateBacking(
SharedImageAccessStream stream) {
ElementHolder* best_match = nullptr;
ElementHolder* any_match = nullptr;
// Note that for now iterating over all elements should be fine since we would
// likely not ever had too many backings existing concurrently. We can
// optimize this code by using better algorithm or more suitable data
// structure later if needed.
for (auto& element : elements_) {
if (element.access_streams.Has(stream) && element.GetBacking()) {
if (element.content_id_ == latest_content_id_) {
best_match = &element;
break;
}
if (!any_match) {
any_match = &element;
}
}
}
ElementHolder* target_element = best_match ? best_match : any_match;
if (target_element) {
return target_element->GetBacking();
}
// If no backing is found, we will try to create a new one. This feature is
// disabled by default currently until SharedImageCopyManager is fully ready
// to support all the existing gpu-gpu copy usages.
if (base::FeatureList::IsEnabled(kUseDynamicBackingAllocations) &&
shared_image_factory_) {
SharedImageUsageSet usage = GetUsageFromAccessStream(stream);
auto* gpu_backing_factory = shared_image_factory_->GetFactoryByUsage(
usage, format(), size(),
/*pixel_data=*/{}, gfx::EMPTY_BUFFER);
if (gpu_backing_factory) {
ElementHolder element;
element.access_streams.Put(stream);
CreateBackingFromBackingFactory(gpu_backing_factory->GetWeakPtr(),
debug_label(), element.backing);
if (element.backing) {
elements_.push_back(std::move(element));
return elements_.back().GetBacking();
}
}
}
LOG(ERROR) << "Could not find or create a backing for stream " << stream;
return nullptr;
}
SharedImageBacking* CompoundImageBacking::GetGpuBacking() {
for (auto& element : elements_) {
if (!element.access_streams.Has(SharedImageAccessStream::kMemory)) {
return element.GetBacking();
}
}
LOG(ERROR) << "No GPU backing found.";
return nullptr;
}
void CompoundImageBacking::CreateBackingFromBackingFactory(
base::WeakPtr<SharedImageBackingFactory> factory,
std::string debug_label,
std::unique_ptr<SharedImageBacking>& backing) {
if (!factory) {
DLOG(ERROR) << "Can't allocate backing after image has been destroyed";
return;
}
backing = factory->CreateSharedImage(
mailbox(), format(), kNullSurfaceHandle, size(), color_space(),
surface_origin(), alpha_type(),
GetGpuSharedImageUsage(SharedImageUsageSet(usage())),
std::move(debug_label), /*is_thread_safe=*/false);
if (!backing) {
DLOG(ERROR) << "Failed to allocate GPU backing";
return;
}
// Since the owned GPU backing is never registered with SharedImageManager
// it's not recorded in UMA histogram there.
UMA_HISTOGRAM_ENUMERATION("GPU.SharedImage.BackingType", backing->GetType());
backing->SetNotRefCounted();
// When a CompoundImageBacking is created with a shared memory backing, it's
// considered logically cleared from the start, as the shared memory provides
// the initial content. For consistency, any newly created GPU backings also
// need to reflect this cleared state, even if their physical memory isn't
// yet initialized. The system ensures a copy from the shared memory backing
// to the GPU backing will occur on first access, synchronizing the physical
// content.
if (has_shm_backing_) {
backing->SetCleared();
}
// Update peak GPU memory tracking with the new estimated size.
size_t estimated_size = 0;
for (auto& element : elements_) {
if (element.backing)
estimated_size += element.backing->GetEstimatedSize();
}
AutoLock auto_lock(this);
UpdateEstimatedSize(estimated_size);
}
bool CompoundImageBacking::HasLatestContent(ElementHolder& element) {
return element.content_id_ == latest_content_id_;
}
void CompoundImageBacking::OnAddSecondaryReference() {
// When client adds a reference from another processes it expects this
// SharedImage can outlive original factory ref and so potentially
// SharedimageFactory. We should create all backings now as we might not have
// access to corresponding SharedImageBackingFactories later.
for (auto& element : elements_) {
element.CreateBackingIfNecessary();
}
}
CompoundImageBacking::ElementHolder::ElementHolder() = default;
CompoundImageBacking::ElementHolder::~ElementHolder() = default;
CompoundImageBacking::ElementHolder::ElementHolder(ElementHolder&& other) =
default;
CompoundImageBacking::ElementHolder&
CompoundImageBacking::ElementHolder::operator=(ElementHolder&& other) = default;
void CompoundImageBacking::ElementHolder::CreateBackingIfNecessary() {
if (create_callback) {
std::move(create_callback).Run(backing);
}
}
SharedImageBacking* CompoundImageBacking::ElementHolder::GetBacking() {
CreateBackingIfNecessary();
return backing.get();
}
GPU_GLES2_EXPORT std::ostream& operator<<(
std::ostream& os,
gpu::SharedImageAccessStream access_stream) {
switch (access_stream) {
case gpu::SharedImageAccessStream::kSkia:
os << "kSkia";
break;
case gpu::SharedImageAccessStream::kOverlay:
os << "kOverlay";
break;
case gpu::SharedImageAccessStream::kGL:
os << "kGL";
break;
case gpu::SharedImageAccessStream::kDawn:
os << "kDawn";
break;
case gpu::SharedImageAccessStream::kDawnBuffer:
os << "kDawnBuffer";
break;
case gpu::SharedImageAccessStream::kMemory:
os << "kMemory";
break;
case gpu::SharedImageAccessStream::kVaapi:
os << "kVaapi";
break;
case gpu::SharedImageAccessStream::kWebNNTensor:
os << "kWebNNTensor";
break;
}
return os;
}
} // namespace gpu
|