File: output_device_backing.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (210 lines) | stat: -rw-r--r-- 7,021 bytes parent folder | download | duplicates (6)
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
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/viz/service/display_embedder/output_device_backing.h"

#include <algorithm>
#include <utility>
#include <vector>

#include "base/containers/contains.h"
#include "base/debug/alias.h"
#include "base/logging.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "components/viz/common/resources/resource_sizes.h"

namespace viz {
namespace {

// If a window is larger than this in bytes, don't even try to create a backing
// bitmap for it.
constexpr size_t kMaxBitmapSizeBytes = 4 * (16384 * 8192);

constexpr DXGI_FORMAT kDXGISwapChainFormat = DXGI_FORMAT_B8G8R8A8_UNORM;

// Finds the size in bytes to hold |viewport_size| pixels. If |viewport_size| is
// a valid size this will return true and |out_bytes| will contain the size in
// bytes. If |viewport_size| is not a valid size then this will return false.
bool GetViewportSizeInBytes(const gfx::Size& viewport_size, size_t* out_bytes) {
  size_t bytes;
  if (!ResourceSizes::MaybeSizeInBytes(viewport_size,
                                       SinglePlaneFormat::kRGBA_8888, &bytes)) {
    return false;
  }
  if (bytes > kMaxBitmapSizeBytes)
    return false;
  *out_bytes = bytes;
  return true;
}

}  // namespace

OutputDeviceBacking::OutputDeviceBacking() = default;

OutputDeviceBacking::~OutputDeviceBacking() {
  DCHECK(clients_.empty());
}

void OutputDeviceBacking::ClientResized() {
  if (d3d11_staging_texture_) {
    D3D11_TEXTURE2D_DESC d3d11_texture_desc;
    d3d11_staging_texture_->GetDesc(&d3d11_texture_desc);
    // Check if we already have a staging texture that matches the max
    // viewport size.
    if (GetMaxViewportSize() !=
        gfx::Size(d3d11_texture_desc.Width, d3d11_texture_desc.Height)) {
      d3d11_staging_texture_.Reset();
    }
  }

  // If the max viewport size doesn't change then nothing here changes.
  if (GetMaxViewportBytes() == created_shm_bytes_)
    return;

  // Otherwise we need to allocate a new shared memory region and clients
  // should re-request it.
  for (OutputDeviceBacking::Client* client : clients_) {
    client->ReleaseCanvas();
  }

  region_ = {};
  created_shm_bytes_ = 0;
}

void OutputDeviceBacking::RegisterClient(Client* client) {
  clients_.push_back(client);
}

void OutputDeviceBacking::UnregisterClient(Client* client) {
  DCHECK(base::Contains(clients_, client));
  std::erase(clients_, client);
  ClientResized();
}

base::UnsafeSharedMemoryRegion* OutputDeviceBacking::GetSharedMemoryRegion(
    const gfx::Size& viewport_size) {
  // If |viewport_size| is empty or too big don't try to allocate SharedMemory.
  size_t viewport_bytes;
  if (!GetViewportSizeInBytes(viewport_size, &viewport_bytes))
    return nullptr;

  // Allocate a new SharedMemory segment that can fit the largest viewport.
  if (!region_.IsValid()) {
    size_t max_viewport_bytes = GetMaxViewportBytes();
    DCHECK_LE(viewport_bytes, max_viewport_bytes);

    base::debug::Alias(&max_viewport_bytes);
    region_ = base::UnsafeSharedMemoryRegion::Create(max_viewport_bytes);
    if (!region_.IsValid()) {
      LOG(ERROR) << "Shared memory region create failed on "
                 << max_viewport_bytes << " bytes";
      return nullptr;
    }
    created_shm_bytes_ = max_viewport_bytes;
  } else {
    // Clients must call Resize() for new |viewport_size|.
    DCHECK_LE(viewport_bytes, created_shm_bytes_);
  }

  return &region_;
}

size_t OutputDeviceBacking::GetMaxViewportBytes() {
  // Minimum byte size is 1 because creating a 0-byte-long SharedMemory fails.
  size_t max_bytes = 1;
  for (OutputDeviceBacking::Client* client : clients_) {
    size_t current_bytes;
    if (!GetViewportSizeInBytes(client->GetViewportPixelSize(), &current_bytes))
      continue;
    max_bytes = std::max(max_bytes, current_bytes);
  }
  return max_bytes;
}

gfx::Size OutputDeviceBacking::GetMaxViewportSize() const {
  gfx::Size size;
  for (OutputDeviceBacking::Client* client : clients_) {
    size.SetToMax(client->GetViewportPixelSize());
  }
  return size;
}

HRESULT OutputDeviceBacking::GetOrCreateDXObjects(
    Microsoft::WRL::ComPtr<ID3D11Device>* d3d11_device_out,
    Microsoft::WRL::ComPtr<IDXGIFactory2>* dxgi_factory_out,
    Microsoft::WRL::ComPtr<IDCompositionDevice>* dcomp_device_out) {
  if (!d3d11_device_) {
    DCHECK(!dxgi_factory_);

    Microsoft::WRL::ComPtr<IDXGIFactory2> dxgi_factory;
    HRESULT hr = ::CreateDXGIFactory1(IID_PPV_ARGS(&dxgi_factory));
    if (FAILED(hr)) {
      LOG(ERROR) << "CreateDXGIFactory1 failed: "
                 << logging::SystemErrorCodeToString(hr);
      return hr;
    }

    Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device;
    hr = ::D3D11CreateDevice(
        NULL, D3D_DRIVER_TYPE_WARP, nullptr, D3D11_CREATE_DEVICE_SINGLETHREADED,
        nullptr, 0, D3D11_SDK_VERSION, &d3d11_device, nullptr, nullptr);
    if (FAILED(hr)) {
      LOG(ERROR) << "D3D11CreateDevice failed: "
                 << logging::SystemErrorCodeToString(hr);
      return hr;
    }

    Microsoft::WRL::ComPtr<IDCompositionDevice> dcomp_device;
    hr = ::DCompositionCreateDevice(nullptr, IID_PPV_ARGS(&dcomp_device));
    if (FAILED(hr)) {
      LOG(ERROR) << "DCompositionCreateDevice failed: "
                 << logging::SystemErrorCodeToString(hr);
      return hr;
    }

    // Once all of the resources have been allocated into local variables
    // copy them as a group to member variables so the object is never in a half
    // baked state.
    d3d11_device_ = std::move(d3d11_device);
    dxgi_factory_ = std::move(dxgi_factory);
    dcomp_device_ = std::move(dcomp_device);
  }

  *d3d11_device_out = d3d11_device_;
  *dxgi_factory_out = dxgi_factory_;
  *dcomp_device_out = dcomp_device_;
  return S_OK;
}

Microsoft::WRL::ComPtr<ID3D11Texture2D>
OutputDeviceBacking::GetOrCreateStagingTexture() {
  if (!d3d11_staging_texture_) {
    gfx::Size texture_dimensions = GetMaxViewportSize();
    D3D11_TEXTURE2D_DESC d3d11_texture_desc = {
        .Width = static_cast<UINT>(texture_dimensions.width()),
        .Height = static_cast<UINT>(texture_dimensions.height()),
        .MipLevels = 1,
        .ArraySize = 1,
        .Format = kDXGISwapChainFormat,
        .SampleDesc = {.Count = 1, .Quality = 0},
        .Usage = D3D11_USAGE_STAGING,
        .BindFlags = 0,
        .CPUAccessFlags = D3D11_CPU_ACCESS_WRITE | D3D11_CPU_ACCESS_READ,
        .MiscFlags = 0};
    Microsoft::WRL::ComPtr<ID3D11Texture2D> d3d11_staging_texture;
    const HRESULT hr = d3d11_device_->CreateTexture2D(
        &d3d11_texture_desc, nullptr, &d3d11_staging_texture);
    if (FAILED(hr)) {
      LOG(ERROR)
          << "ID3D11Texture2D::CreateTexture2D (for staging texture) failed: "
          << logging::SystemErrorCodeToString(hr);
      return nullptr;
    }
    d3d11_staging_texture_ = std::move(d3d11_staging_texture);
  }

  return d3d11_staging_texture_;
}

}  // namespace viz