mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
20 lines
573 B
C++
20 lines
573 B
C++
// Copyright (c) 2014 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.
|
|
|
|
// Defines all the command-line switches used by gpu/command_buffer/client/.
|
|
|
|
#ifndef GPU_COMMAND_BUFFER_CLIENT_GPU_SWITCHES_H_
|
|
#define GPU_COMMAND_BUFFER_CLIENT_GPU_SWITCHES_H_
|
|
|
|
#include "gpu/command_buffer/client/gles2_impl_export.h"
|
|
|
|
namespace switches {
|
|
|
|
GLES2_IMPL_EXPORT extern const char kEnableGPUClientLogging[];
|
|
|
|
} // namespace switches
|
|
|
|
#endif // GPU_COMMAND_BUFFER_CLIENT_GPU_SWITCHES_H_
|
|
|