38261d0800
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines Signed-off-by: Steve Pham <spham@amazon.com>
39 lines
984 B
Plaintext
39 lines
984 B
Plaintext
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Atom/Features/SrgSemantics.azsli>
|
|
|
|
ShaderResourceGroup ObjectSrg : SRG_PerObject
|
|
{
|
|
row_major float3x4 m_modelToWorld;
|
|
|
|
float3 m_aabbPos;
|
|
float3 m_outerAabbMin;
|
|
float3 m_outerAabbMax;
|
|
float3 m_innerAabbMin;
|
|
float3 m_innerAabbMax;
|
|
bool m_useParallaxCorrection;
|
|
TextureCube m_reflectionCubeMap;
|
|
|
|
float4x4 GetWorldMatrix()
|
|
{
|
|
float4x4 modelToWorld = float4x4(
|
|
float4(1, 0, 0, 0),
|
|
float4(0, 1, 0, 0),
|
|
float4(0, 0, 1, 0),
|
|
float4(0, 0, 0, 1));
|
|
|
|
modelToWorld[0] = ObjectSrg::m_modelToWorld[0];
|
|
modelToWorld[1] = ObjectSrg::m_modelToWorld[1];
|
|
modelToWorld[2] = ObjectSrg::m_modelToWorld[2];
|
|
return modelToWorld;
|
|
}
|
|
}
|