Fix #include format.

This commit is contained in:
Ben Vanik
2015-01-31 22:49:47 -08:00
parent f4f401e927
commit 00e4a4fe1b
373 changed files with 1171 additions and 1171 deletions

View File

@@ -7,12 +7,12 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/circular_buffer.h>
#include "xenia/gpu/gl4/circular_buffer.h"
#include <poly/assert.h>
#include <poly/math.h>
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/assert.h"
#include "poly/math.h"
#include "xenia/gpu/gl4/gl4_gpu-private.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -10,7 +10,7 @@
#ifndef XENIA_GPU_GL4_CIRCULAR_BUFFER_H_
#define XENIA_GPU_GL4_CIRCULAR_BUFFER_H_
#include <xenia/gpu/gl4/gl_context.h>
#include "xenia/gpu/gl4/gl_context.h"
namespace xe {
namespace gpu {

View File

@@ -7,20 +7,20 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/command_processor.h>
#include "xenia/gpu/gl4/command_processor.h"
#include <algorithm>
#include <poly/logging.h>
#include <poly/math.h>
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include <xenia/gpu/gl4/gl4_graphics_system.h>
#include <xenia/gpu/gpu-private.h>
#include <xenia/gpu/sampler_info.h>
#include <xenia/gpu/texture_info.h>
#include <xenia/gpu/xenos.h>
#include "poly/logging.h"
#include "poly/math.h"
#include "xenia/gpu/gl4/gl4_gpu-private.h"
#include "xenia/gpu/gl4/gl4_graphics_system.h"
#include "xenia/gpu/gpu-private.h"
#include "xenia/gpu/sampler_info.h"
#include "xenia/gpu/texture_info.h"
#include "xenia/gpu/xenos.h"
#include <third_party/xxhash/xxhash.h>
#include "third_party/xxhash/xxhash.h"
#define XETRACECP(fmt, ...) \
if (FLAGS_trace_ring_buffer) XELOGGPU(fmt, ##__VA_ARGS__)

View File

@@ -17,14 +17,14 @@
#include <unordered_map>
#include <vector>
#include <xenia/gpu/gl4/circular_buffer.h>
#include <xenia/gpu/gl4/draw_batcher.h>
#include <xenia/gpu/gl4/gl_context.h>
#include <xenia/gpu/gl4/gl4_shader.h>
#include <xenia/gpu/gl4/texture_cache.h>
#include <xenia/gpu/register_file.h>
#include <xenia/gpu/xenos.h>
#include <xenia/memory.h>
#include "xenia/gpu/gl4/circular_buffer.h"
#include "xenia/gpu/gl4/draw_batcher.h"
#include "xenia/gpu/gl4/gl_context.h"
#include "xenia/gpu/gl4/gl4_shader.h"
#include "xenia/gpu/gl4/texture_cache.h"
#include "xenia/gpu/register_file.h"
#include "xenia/gpu/xenos.h"
#include "xenia/memory.h"
namespace xe {
namespace gpu {

View File

@@ -7,12 +7,12 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/draw_batcher.h>
#include "xenia/gpu/gl4/draw_batcher.h"
#include <poly/cxx_compat.h>
#include <poly/math.h>
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/cxx_compat.h"
#include "poly/math.h"
#include "xenia/gpu/gl4/gl4_gpu-private.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -10,12 +10,12 @@
#ifndef XENIA_GPU_GL4_GL4_STATE_DATA_BUILDER_H_
#define XENIA_GPU_GL4_GL4_STATE_DATA_BUILDER_H_
#include <xenia/common.h>
#include <xenia/gpu/gl4/circular_buffer.h>
#include <xenia/gpu/gl4/gl_context.h>
#include <xenia/gpu/gl4/gl4_shader.h>
#include <xenia/gpu/register_file.h>
#include <xenia/gpu/xenos.h>
#include "xenia/common.h"
#include "xenia/gpu/gl4/circular_buffer.h"
#include "xenia/gpu/gl4/gl_context.h"
#include "xenia/gpu/gl4/gl4_shader.h"
#include "xenia/gpu/register_file.h"
#include "xenia/gpu/xenos.h"
namespace xe {
namespace gpu {

View File

@@ -12,8 +12,8 @@
#include <gflags/gflags.h>
#include <xenia/common.h>
#include <xenia/gpu/gl4/gl4_gpu.h>
#include "xenia/common.h"
#include "xenia/gpu/gl4/gl4_gpu.h"
DECLARE_bool(thread_safe_gl);

View File

@@ -7,10 +7,10 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/gl4_gpu.h>
#include "xenia/gpu/gl4/gl4_gpu.h"
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include <xenia/gpu/gl4/gl4_graphics_system.h>
#include "xenia/gpu/gl4/gl4_gpu-private.h"
#include "xenia/gpu/gl4/gl4_graphics_system.h"
DEFINE_bool(thread_safe_gl, false,
"Only allow one GL context to be active at a time.");

View File

@@ -12,8 +12,8 @@
#include <memory>
#include <xenia/common.h>
#include <xenia/gpu/graphics_system.h>
#include "xenia/common.h"
#include "xenia/gpu/graphics_system.h"
namespace xe {
namespace gpu {

View File

@@ -7,13 +7,13 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/gl4_graphics_system.h>
#include "xenia/gpu/gl4/gl4_graphics_system.h"
#include <poly/threading.h>
#include <xenia/cpu/processor.h>
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include <xenia/gpu/gl4/gl4_profiler_display.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/threading.h"
#include "xenia/cpu/processor.h"
#include "xenia/gpu/gl4/gl4_gpu-private.h"
#include "xenia/gpu/gl4/gl4_profiler_display.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -12,11 +12,11 @@
#include <memory>
#include <xenia/common.h>
#include <xenia/gpu/gl4/command_processor.h>
#include <xenia/gpu/gl4/wgl_control.h>
#include <xenia/gpu/graphics_system.h>
#include <xenia/gpu/register_file.h>
#include "xenia/common.h"
#include "xenia/gpu/gl4/command_processor.h"
#include "xenia/gpu/gl4/wgl_control.h"
#include "xenia/gpu/graphics_system.h"
#include "xenia/gpu/register_file.h"
namespace xe {
namespace gpu {

View File

@@ -7,13 +7,13 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/gl4_profiler_display.h>
#include "xenia/gpu/gl4/gl4_profiler_display.h"
#include <third_party/microprofile/microprofileui.h>
#include "third_party/microprofile/microprofileui.h"
#include <poly/cxx_compat.h>
#include <poly/math.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/cxx_compat.h"
#include "poly/math.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -10,11 +10,11 @@
#ifndef XENIA_GPU_GL4_GL4_PROFILER_DISPLAY_H_
#define XENIA_GPU_GL4_GL4_PROFILER_DISPLAY_H_
#include <xenia/common.h>
#include <xenia/gpu/gl4/circular_buffer.h>
#include <xenia/gpu/gl4/gl_context.h>
#include <xenia/gpu/gl4/wgl_control.h>
#include <xenia/profiling.h>
#include "xenia/common.h"
#include "xenia/gpu/gl4/circular_buffer.h"
#include "xenia/gpu/gl4/gl_context.h"
#include "xenia/gpu/gl4/wgl_control.h"
#include "xenia/profiling.h"
namespace xe {
namespace gpu {

View File

@@ -7,13 +7,13 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/gl4_shader.h>
#include "xenia/gpu/gl4/gl4_shader.h"
#include <poly/cxx_compat.h>
#include <poly/math.h>
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include <xenia/gpu/gl4/gl4_shader_translator.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/cxx_compat.h"
#include "poly/math.h"
#include "xenia/gpu/gl4/gl4_gpu-private.h"
#include "xenia/gpu/gl4/gl4_shader_translator.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -12,9 +12,9 @@
#include <string>
#include <xenia/common.h>
#include <xenia/gpu/gl4/gl_context.h>
#include <xenia/gpu/shader.h>
#include "xenia/common.h"
#include "xenia/gpu/gl4/gl_context.h"
#include "xenia/gpu/shader.h"
namespace xe {
namespace gpu {

View File

@@ -7,10 +7,10 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/gl4_shader_translator.h>
#include "xenia/gpu/gl4/gl4_shader_translator.h"
#include <poly/math.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/math.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -12,12 +12,12 @@
#include <string>
#include <alloy/string_buffer.h>
#include <xenia/common.h>
#include <xenia/gpu/gl4/gl_context.h>
#include <xenia/gpu/gl4/gl4_shader.h>
#include <xenia/gpu/ucode.h>
#include <xenia/gpu/xenos.h>
#include "alloy/string_buffer.h"
#include "xenia/common.h"
#include "xenia/gpu/gl4/gl_context.h"
#include "xenia/gpu/gl4/gl4_shader.h"
#include "xenia/gpu/ucode.h"
#include "xenia/gpu/xenos.h"
namespace xe {
namespace gpu {

View File

@@ -7,15 +7,15 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/gl_context.h>
#include "xenia/gpu/gl4/gl_context.h"
#include <mutex>
#include <poly/assert.h>
#include <poly/cxx_compat.h>
#include <poly/logging.h>
#include <poly/math.h>
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include "poly/assert.h"
#include "poly/cxx_compat.h"
#include "poly/logging.h"
#include "poly/math.h"
#include "xenia/gpu/gl4/gl4_gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -12,8 +12,8 @@
#include <memory>
#include <third_party/GL/glew.h>
#include <third_party/GL/wglew.h>
#include "third_party/GL/glew.h"
#include "third_party/GL/wglew.h"
namespace xe {
namespace gpu {

View File

@@ -7,11 +7,11 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/texture_cache.h>
#include "xenia/gpu/gl4/texture_cache.h"
#include <poly/assert.h>
#include <poly/math.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/assert.h"
#include "poly/math.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -14,11 +14,11 @@
#include <unordered_map>
#include <vector>
#include <xenia/gpu/gl4/circular_buffer.h>
#include <xenia/gpu/gl4/gl_context.h>
#include <xenia/gpu/sampler_info.h>
#include <xenia/gpu/texture_info.h>
#include <xenia/memory.h>
#include "xenia/gpu/gl4/circular_buffer.h"
#include "xenia/gpu/gl4/gl_context.h"
#include "xenia/gpu/sampler_info.h"
#include "xenia/gpu/texture_info.h"
#include "xenia/memory.h"
namespace xe {
namespace gpu {

View File

@@ -7,12 +7,12 @@
******************************************************************************
*/
#include <xenia/gpu/gl4/wgl_control.h>
#include "xenia/gpu/gl4/wgl_control.h"
#include <poly/assert.h>
#include <poly/logging.h>
#include <xenia/gpu/gl4/gl4_gpu-private.h>
#include <xenia/profiling.h>
#include "poly/assert.h"
#include "poly/logging.h"
#include "xenia/gpu/gl4/gl4_gpu-private.h"
#include "xenia/profiling.h"
namespace xe {
namespace gpu {

View File

@@ -12,10 +12,10 @@
#include <functional>
#include <poly/threading.h>
#include <poly/ui/loop.h>
#include <poly/ui/win32/win32_control.h>
#include <xenia/gpu/gl4/gl_context.h>
#include "poly/threading.h"
#include "poly/ui/loop.h"
#include "poly/ui/win32/win32_control.h"
#include "xenia/gpu/gl4/gl_context.h"
namespace xe {
namespace gpu {

View File

@@ -7,11 +7,11 @@
******************************************************************************
*/
#include <xenia/gpu/gpu.h>
#include <xenia/gpu/gpu-private.h>
#include "xenia/gpu/gpu.h"
#include "xenia/gpu/gpu-private.h"
// TODO(benvanik): based on platform.
#include <xenia/gpu/gl4/gl4_gpu.h>
#include "xenia/gpu/gl4/gl4_gpu.h"
DEFINE_string(gpu, "any", "Graphics system. Use: [any, gl4]");

View File

@@ -12,7 +12,7 @@
#include <memory>
#include <xenia/gpu/graphics_system.h>
#include "xenia/gpu/graphics_system.h"
namespace xe {
class Emulator;

View File

@@ -7,12 +7,12 @@
******************************************************************************
*/
#include <xenia/gpu/graphics_system.h>
#include "xenia/gpu/graphics_system.h"
#include <poly/poly.h>
#include <xenia/emulator.h>
#include <xenia/cpu/processor.h>
#include <xenia/gpu/gpu-private.h>
#include "poly/poly.h"
#include "xenia/emulator.h"
#include "xenia/cpu/processor.h"
#include "xenia/gpu/gpu-private.h"
namespace xe {
namespace gpu {

View File

@@ -13,9 +13,9 @@
#include <atomic>
#include <thread>
#include <xenia/common.h>
#include <xenia/emulator.h>
#include <xenia/xbox.h>
#include "xenia/common.h"
#include "xenia/emulator.h"
#include "xenia/xbox.h"
namespace xe {
namespace gpu {

View File

@@ -7,7 +7,7 @@
******************************************************************************
*/
#include <xenia/gpu/register_file.h>
#include "xenia/gpu/register_file.h"
namespace xe {
namespace gpu {
@@ -19,7 +19,7 @@ const char* RegisterFile::GetRegisterName(uint32_t index) {
#define XE_GPU_REGISTER(index, type, name) \
case index: \
return #name;
#include <xenia/gpu/register_table.inc>
#include "xenia/gpu/register_table.inc"
#undef XE_GPU_REGISTER
default:
return nullptr;

View File

@@ -10,14 +10,14 @@
#ifndef XENIA_GPU_REGISTER_FILE_H_
#define XENIA_GPU_REGISTER_FILE_H_
#include <xenia/common.h>
#include "xenia/common.h"
namespace xe {
namespace gpu {
enum Register {
#define XE_GPU_REGISTER(index, type, name) XE_GPU_REG_##name = index,
#include <xenia/gpu/register_table.inc>
#include "xenia/gpu/register_table.inc"
#undef XE_GPU_REGISTER
};

View File

@@ -7,9 +7,9 @@
******************************************************************************
*/
#include <xenia/gpu/sampler_info.h>
#include "xenia/gpu/sampler_info.h"
#include <third_party/xxhash/xxhash.h>
#include "third_party/xxhash/xxhash.h"
namespace xe {
namespace gpu {

View File

@@ -10,8 +10,8 @@
#ifndef XENIA_GPU_SAMPLER_INFO_H_
#define XENIA_GPU_SAMPLER_INFO_H_
#include <xenia/gpu/ucode.h>
#include <xenia/gpu/xenos.h>
#include "xenia/gpu/ucode.h"
#include "xenia/gpu/xenos.h"
namespace xe {
namespace gpu {

View File

@@ -7,10 +7,10 @@
******************************************************************************
*/
#include <xenia/gpu/shader.h>
#include "xenia/gpu/shader.h"
#include <poly/math.h>
#include <xenia/gpu/ucode_disassembler.h>
#include "poly/math.h"
#include "xenia/gpu/ucode_disassembler.h"
namespace xe {
namespace gpu {

View File

@@ -13,8 +13,8 @@
#include <string>
#include <vector>
#include <xenia/gpu/ucode.h>
#include <xenia/gpu/xenos.h>
#include "xenia/gpu/ucode.h"
#include "xenia/gpu/xenos.h"
namespace xe {
namespace gpu {

View File

@@ -7,11 +7,11 @@
******************************************************************************
*/
#include <xenia/gpu/texture_info.h>
#include "xenia/gpu/texture_info.h"
#include <third_party/xxhash/xxhash.h>
#include "third_party/xxhash/xxhash.h"
#include <poly/math.h>
#include "poly/math.h"
namespace xe {
namespace gpu {

View File

@@ -10,8 +10,8 @@
#ifndef XENIA_GPU_TEXTURE_INFO_H_
#define XENIA_GPU_TEXTURE_INFO_H_
#include <xenia/gpu/ucode.h>
#include <xenia/gpu/xenos.h>
#include "xenia/gpu/ucode.h"
#include "xenia/gpu/xenos.h"
namespace xe {
namespace gpu {

View File

@@ -10,7 +10,7 @@
#ifndef XENIA_GPU_UCODE_H_
#define XENIA_GPU_UCODE_H_
#include <xenia/common.h>
#include "xenia/common.h"
namespace xe {
namespace gpu {

View File

@@ -30,7 +30,7 @@
* SOFTWARE.
*/
#include <xenia/gpu/ucode_disassembler.h>
#include "xenia/gpu/ucode_disassembler.h"
#include <stdio.h>
#include <stdlib.h>

View File

@@ -12,8 +12,8 @@
#include <string>
#include <xenia/gpu/ucode.h>
#include <xenia/gpu/xenos.h>
#include "xenia/gpu/ucode.h"
#include "xenia/gpu/xenos.h"
namespace xe {
namespace gpu {

View File

@@ -10,8 +10,8 @@
#ifndef XENIA_GPU_XENOS_H_
#define XENIA_GPU_XENOS_H_
#include <xenia/common.h>
#include <xenia/gpu/ucode.h>
#include "xenia/common.h"
#include "xenia/gpu/ucode.h"
namespace xe {
namespace gpu {