aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/PS3/SPU_Tasks/GameRenderer_updateLightTexture/GameRenderer_updateLightTexture.h
blob: 3dfcc3d5c5f8f33a2b5880a5030e687186ca166c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

static const int LEVEL_MAX_BRIGHTNESS = 15;
class GameRenderer_updateLightTexture_dataIn
{
public:
	class LevelData
	{
	public:
		bool m_valid;
		float m_skyDarken;
		float m_brightnessRamp[LEVEL_MAX_BRIGHTNESS + 1];
		int m_lightningBoltTime;
		int m_dimensionID;
		int* m_lightPixelsOutput;
	};

	LevelData m_levelData[3];
	float blr;
};