2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-07-19 22:41:17 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
#ifndef BACKEND_D3D12_SWAPCHAIND3D12_H_
|
|
|
|
#define BACKEND_D3D12_SWAPCHAIND3D12_H_
|
|
|
|
|
|
|
|
#include "backend/SwapChain.h"
|
|
|
|
|
2017-11-24 19:04:22 +00:00
|
|
|
namespace backend { namespace d3d12 {
|
2017-07-19 22:41:17 +00:00
|
|
|
|
|
|
|
class SwapChain : public SwapChainBase {
|
2017-11-24 19:04:22 +00:00
|
|
|
public:
|
|
|
|
SwapChain(SwapChainBuilder* builder);
|
|
|
|
~SwapChain();
|
2017-07-19 22:41:17 +00:00
|
|
|
|
2017-11-24 19:04:22 +00:00
|
|
|
protected:
|
|
|
|
TextureBase* GetNextTextureImpl(TextureBuilder* builder) override;
|
2018-07-10 16:03:22 +00:00
|
|
|
void OnBeforePresent(TextureBase* texture) override;
|
2018-07-11 15:43:53 +00:00
|
|
|
|
|
|
|
nxt::TextureUsageBit mTextureUsage;
|
2017-07-19 22:41:17 +00:00
|
|
|
};
|
|
|
|
|
2017-11-24 19:04:22 +00:00
|
|
|
}} // namespace backend::d3d12
|
2017-07-19 22:41:17 +00:00
|
|
|
|
2017-11-24 19:04:22 +00:00
|
|
|
#endif // BACKEND_D3D12_SWAPCHAIN_D3D12_H_
|