Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/engines/eevee/eevee_private.h
| Show All 14 Lines | |||||
| * | * | ||||
| * Copyright 2016, Blender Foundation. | * Copyright 2016, Blender Foundation. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup DNA | * \ingroup DNA | ||||
| */ | */ | ||||
| #ifndef __EEVEE_PRIVATE_H__ | #pragma once | ||||
| #define __EEVEE_PRIVATE_H__ | |||||
| #include "DRW_render.h" | #include "DRW_render.h" | ||||
| #include "BLI_bitmap.h" | #include "BLI_bitmap.h" | ||||
| #include "DNA_lightprobe_types.h" | #include "DNA_lightprobe_types.h" | ||||
| #include "GPU_viewport.h" | #include "GPU_viewport.h" | ||||
| ▲ Show 20 Lines • Show All 1,322 Lines • ▼ Show 20 Lines | static const float cubefacemat[6][4][4] = { | ||||
| {0.0f, 0.0f, -1.0f, 0.0f}, | {0.0f, 0.0f, -1.0f, 0.0f}, | ||||
| {0.0f, 0.0f, 0.0f, 1.0f}}, | {0.0f, 0.0f, 0.0f, 1.0f}}, | ||||
| /* Neg Z */ | /* Neg Z */ | ||||
| {{-1.0f, 0.0f, 0.0f, 0.0f}, | {{-1.0f, 0.0f, 0.0f, 0.0f}, | ||||
| {0.0f, -1.0f, 0.0f, 0.0f}, | {0.0f, -1.0f, 0.0f, 0.0f}, | ||||
| {0.0f, 0.0f, 1.0f, 0.0f}, | {0.0f, 0.0f, 1.0f, 0.0f}, | ||||
| {0.0f, 0.0f, 0.0f, 1.0f}}, | {0.0f, 0.0f, 0.0f, 1.0f}}, | ||||
| }; | }; | ||||
| #endif /* __EEVEE_PRIVATE_H__ */ | |||||