diff options
| author | 2019-08-14 14:17:54 +0000 | |
|---|---|---|
| committer | 2019-08-14 14:17:54 +0000 | |
| commit | 426ba4d5ce1ee7788f1041a55d13a3a4d73e4e9a (patch) | |
| tree | 5127851b3829863555967f41e7edc998fd6fffbe /libs/hostgraphics/Fence.cpp | |
| parent | d6d443229fa21679895c87e7115b9c67bf8ab0e2 (diff) | |
| parent | 15e58b4023dda977836dfcc89bdc657a8b2f4a64 (diff) | |
Merge "Add hostgraphics classes required for ImageReader"
Diffstat (limited to 'libs/hostgraphics/Fence.cpp')
| -rw-r--r-- | libs/hostgraphics/Fence.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libs/hostgraphics/Fence.cpp b/libs/hostgraphics/Fence.cpp new file mode 100644 index 000000000000..9e54816651c4 --- /dev/null +++ b/libs/hostgraphics/Fence.cpp @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2019 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include <ui/Fence.h> + +namespace android { + +const sp<Fence> Fence::NO_FENCE = sp<Fence>(new Fence); + +} // namespace android
\ No newline at end of file |