Flutter Engine
The Flutter Engine
blit_command.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef FLUTTER_IMPELLER_RENDERER_BLIT_COMMAND_H_
6#define FLUTTER_IMPELLER_RENDERER_BLIT_COMMAND_H_
7
11
12namespace impeller {
13
15 std::string label;
16};
17
19 std::shared_ptr<Texture> source;
20 std::shared_ptr<Texture> destination;
23};
24
26 std::shared_ptr<Texture> source;
27 std::shared_ptr<DeviceBuffer> destination;
30};
31
34 std::shared_ptr<Texture> destination;
36 uint32_t slice = 0;
37};
38
40 std::shared_ptr<Texture> texture;
41};
42
43} // namespace impeller
44
45#endif // FLUTTER_IMPELLER_RENDERER_BLIT_COMMAND_H_
std::shared_ptr< Texture > destination
Definition: blit_command.h:34
std::shared_ptr< DeviceBuffer > destination
Definition: blit_command.h:27
std::shared_ptr< Texture > source
Definition: blit_command.h:26
std::shared_ptr< Texture > destination
Definition: blit_command.h:20
std::shared_ptr< Texture > source
Definition: blit_command.h:19
std::shared_ptr< Texture > texture
Definition: blit_command.h:40