blob: 395bd2097832e71d73ad421c3d2250f4b643ff13 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// 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/mailbox_manager_factory.h"
#include "base/command_line.h"
#include "base/memory/ptr_util.h"
#include "gpu/command_buffer/service/gpu_preferences.h"
#include "gpu/command_buffer/service/mailbox_manager_impl.h"
#include "gpu/command_buffer/service/mailbox_manager_sync.h"
namespace gpu {
namespace gles2 {
std::unique_ptr<MailboxManager> CreateMailboxManager(
const GpuPreferences& gpu_preferences) {
if (gpu_preferences.enable_threaded_texture_mailboxes)
return std::make_unique<MailboxManagerSync>();
return std::make_unique<MailboxManagerImpl>();
}
} // namespace gles2
} // namespace gpu