|
|
@@ -1,125 +1,61 @@
|
|
|
-//
|
|
|
-// Copyright (c) 2008-2022 the Urho3D project.
|
|
|
-//
|
|
|
-// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
-// of this software and associated documentation files (the "Software"), to deal
|
|
|
-// in the Software without restriction, including without limitation the rights
|
|
|
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
-// copies of the Software, and to permit persons to whom the Software is
|
|
|
-// furnished to do so, subject to the following conditions:
|
|
|
-//
|
|
|
-// The above copyright notice and this permission notice shall be included in
|
|
|
-// all copies or substantial portions of the Software.
|
|
|
-//
|
|
|
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
-// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
-// THE SOFTWARE.
|
|
|
-//
|
|
|
-
|
|
|
-#include "../Precompiled.h"
|
|
|
-
|
|
|
-#include "../Graphics/GraphicsDefs.h"
|
|
|
-#include "../Math/Vector3.h"
|
|
|
-
|
|
|
-#include "../DebugNew.h"
|
|
|
-
|
|
|
-namespace Urho3D
|
|
|
-{
|
|
|
-
|
|
|
-// The extern keyword is required when building Urho3D.dll for Windows platform
|
|
|
-// The keyword is not required for other platforms but it does no harm, aside from warning from static analyzer
|
|
|
-
|
|
|
-extern URHO3D_API const StringHash VSP_AMBIENTSTARTCOLOR("AmbientStartColor");
|
|
|
-extern URHO3D_API const StringHash VSP_AMBIENTENDCOLOR("AmbientEndColor");
|
|
|
-extern URHO3D_API const StringHash VSP_BILLBOARDROT("BillboardRot");
|
|
|
-extern URHO3D_API const StringHash VSP_CAMERAPOS("CameraPos");
|
|
|
-extern URHO3D_API const StringHash VSP_CLIPPLANE("ClipPlane");
|
|
|
-extern URHO3D_API const StringHash VSP_NEARCLIP("NearClip");
|
|
|
-extern URHO3D_API const StringHash VSP_FARCLIP("FarClip");
|
|
|
-extern URHO3D_API const StringHash VSP_DEPTHMODE("DepthMode");
|
|
|
-extern URHO3D_API const StringHash VSP_DELTATIME("DeltaTime");
|
|
|
-extern URHO3D_API const StringHash VSP_ELAPSEDTIME("ElapsedTime");
|
|
|
-extern URHO3D_API const StringHash VSP_FRUSTUMSIZE("FrustumSize");
|
|
|
-extern URHO3D_API const StringHash VSP_GBUFFEROFFSETS("GBufferOffsets");
|
|
|
-extern URHO3D_API const StringHash VSP_LIGHTDIR("LightDir");
|
|
|
-extern URHO3D_API const StringHash VSP_LIGHTPOS("LightPos");
|
|
|
-extern URHO3D_API const StringHash VSP_NORMALOFFSETSCALE("NormalOffsetScale");
|
|
|
-extern URHO3D_API const StringHash VSP_MODEL("Model");
|
|
|
-extern URHO3D_API const StringHash VSP_VIEW("View");
|
|
|
-extern URHO3D_API const StringHash VSP_VIEWINV("ViewInv");
|
|
|
-extern URHO3D_API const StringHash VSP_VIEWPROJ("ViewProj");
|
|
|
-extern URHO3D_API const StringHash VSP_UOFFSET("UOffset");
|
|
|
-extern URHO3D_API const StringHash VSP_VOFFSET("VOffset");
|
|
|
-extern URHO3D_API const StringHash VSP_ZONE("Zone");
|
|
|
-extern URHO3D_API const StringHash VSP_LIGHTMATRICES("LightMatrices");
|
|
|
-extern URHO3D_API const StringHash VSP_SKINMATRICES("SkinMatrices");
|
|
|
-extern URHO3D_API const StringHash VSP_VERTEXLIGHTS("VertexLights");
|
|
|
-extern URHO3D_API const StringHash PSP_AMBIENTCOLOR("AmbientColor");
|
|
|
-extern URHO3D_API const StringHash PSP_CAMERAPOS("CameraPosPS");
|
|
|
-extern URHO3D_API const StringHash PSP_DELTATIME("DeltaTimePS");
|
|
|
-extern URHO3D_API const StringHash PSP_DEPTHRECONSTRUCT("DepthReconstruct");
|
|
|
-extern URHO3D_API const StringHash PSP_ELAPSEDTIME("ElapsedTimePS");
|
|
|
-extern URHO3D_API const StringHash PSP_FOGCOLOR("FogColor");
|
|
|
-extern URHO3D_API const StringHash PSP_FOGPARAMS("FogParams");
|
|
|
-extern URHO3D_API const StringHash PSP_GBUFFERINVSIZE("GBufferInvSize");
|
|
|
-extern URHO3D_API const StringHash PSP_LIGHTCOLOR("LightColor");
|
|
|
-extern URHO3D_API const StringHash PSP_LIGHTDIR("LightDirPS");
|
|
|
-extern URHO3D_API const StringHash PSP_LIGHTPOS("LightPosPS");
|
|
|
-extern URHO3D_API const StringHash PSP_NORMALOFFSETSCALE("NormalOffsetScalePS");
|
|
|
-extern URHO3D_API const StringHash PSP_MATDIFFCOLOR("MatDiffColor");
|
|
|
-extern URHO3D_API const StringHash PSP_MATEMISSIVECOLOR("MatEmissiveColor");
|
|
|
-extern URHO3D_API const StringHash PSP_MATENVMAPCOLOR("MatEnvMapColor");
|
|
|
-extern URHO3D_API const StringHash PSP_MATSPECCOLOR("MatSpecColor");
|
|
|
-extern URHO3D_API const StringHash PSP_NEARCLIP("NearClipPS");
|
|
|
-extern URHO3D_API const StringHash PSP_FARCLIP("FarClipPS");
|
|
|
-extern URHO3D_API const StringHash PSP_SHADOWCUBEADJUST("ShadowCubeAdjust");
|
|
|
-extern URHO3D_API const StringHash PSP_SHADOWDEPTHFADE("ShadowDepthFade");
|
|
|
-extern URHO3D_API const StringHash PSP_SHADOWINTENSITY("ShadowIntensity");
|
|
|
-extern URHO3D_API const StringHash PSP_SHADOWMAPINVSIZE("ShadowMapInvSize");
|
|
|
-extern URHO3D_API const StringHash PSP_SHADOWSPLITS("ShadowSplits");
|
|
|
-extern URHO3D_API const StringHash PSP_LIGHTMATRICES("LightMatricesPS");
|
|
|
-extern URHO3D_API const StringHash PSP_VSMSHADOWPARAMS("VSMShadowParams");
|
|
|
-extern URHO3D_API const StringHash PSP_ROUGHNESS("Roughness");
|
|
|
-extern URHO3D_API const StringHash PSP_METALLIC("Metallic");
|
|
|
-extern URHO3D_API const StringHash PSP_LIGHTRAD("LightRad");
|
|
|
-extern URHO3D_API const StringHash PSP_LIGHTLENGTH("LightLength");
|
|
|
-extern URHO3D_API const StringHash PSP_ZONEMIN("ZoneMin");
|
|
|
-extern URHO3D_API const StringHash PSP_ZONEMAX("ZoneMax");
|
|
|
-
|
|
|
-extern URHO3D_API const Vector3 DOT_SCALE(1 / 3.0f, 1 / 3.0f, 1 / 3.0f);
|
|
|
-
|
|
|
-extern URHO3D_API const VertexElement LEGACY_VERTEXELEMENTS[] =
|
|
|
-{
|
|
|
- VertexElement(TYPE_VECTOR3, SEM_POSITION, 0, false), // Position
|
|
|
- VertexElement(TYPE_VECTOR3, SEM_NORMAL, 0, false), // Normal
|
|
|
- VertexElement(TYPE_UBYTE4_NORM, SEM_COLOR, 0, false), // Color
|
|
|
- VertexElement(TYPE_VECTOR2, SEM_TEXCOORD, 0, false), // Texcoord1
|
|
|
- VertexElement(TYPE_VECTOR2, SEM_TEXCOORD, 1, false), // Texcoord2
|
|
|
- VertexElement(TYPE_VECTOR3, SEM_TEXCOORD, 0, false), // Cubetexcoord1
|
|
|
- VertexElement(TYPE_VECTOR3, SEM_TEXCOORD, 1, false), // Cubetexcoord2
|
|
|
- VertexElement(TYPE_VECTOR4, SEM_TANGENT, 0, false), // Tangent
|
|
|
- VertexElement(TYPE_VECTOR4, SEM_BLENDWEIGHTS, 0, false), // Blendweights
|
|
|
- VertexElement(TYPE_UBYTE4, SEM_BLENDINDICES, 0, false), // Blendindices
|
|
|
- VertexElement(TYPE_VECTOR4, SEM_TEXCOORD, 4, true), // Instancematrix1
|
|
|
- VertexElement(TYPE_VECTOR4, SEM_TEXCOORD, 5, true), // Instancematrix2
|
|
|
- VertexElement(TYPE_VECTOR4, SEM_TEXCOORD, 6, true), // Instancematrix3
|
|
|
- VertexElement(TYPE_INT, SEM_OBJECTINDEX, 0, false) // Objectindex
|
|
|
-};
|
|
|
-
|
|
|
-extern URHO3D_API const unsigned ELEMENT_TYPESIZES[] =
|
|
|
-{
|
|
|
- sizeof(int),
|
|
|
- sizeof(float),
|
|
|
- 2 * sizeof(float),
|
|
|
- 3 * sizeof(float),
|
|
|
- 4 * sizeof(float),
|
|
|
- sizeof(unsigned),
|
|
|
- sizeof(unsigned)
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-}
|
|
|
+//
|
|
|
+// Copyright (c) 2008-2022 the Urho3D project.
|
|
|
+//
|
|
|
+// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
+// of this software and associated documentation files (the "Software"), to deal
|
|
|
+// in the Software without restriction, including without limitation the rights
|
|
|
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
+// copies of the Software, and to permit persons to whom the Software is
|
|
|
+// furnished to do so, subject to the following conditions:
|
|
|
+//
|
|
|
+// The above copyright notice and this permission notice shall be included in
|
|
|
+// all copies or substantial portions of the Software.
|
|
|
+//
|
|
|
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
+// THE SOFTWARE.
|
|
|
+//
|
|
|
+
|
|
|
+#include "../Precompiled.h"
|
|
|
+
|
|
|
+#include "../Graphics/GraphicsDefs.h"
|
|
|
+
|
|
|
+#include "../DebugNew.h"
|
|
|
+
|
|
|
+namespace Urho3D
|
|
|
+{
|
|
|
+
|
|
|
+const VertexElement LEGACY_VERTEXELEMENTS[] =
|
|
|
+{
|
|
|
+ VertexElement(TYPE_VECTOR3, SEM_POSITION, 0, false), // Position
|
|
|
+ VertexElement(TYPE_VECTOR3, SEM_NORMAL, 0, false), // Normal
|
|
|
+ VertexElement(TYPE_UBYTE4_NORM, SEM_COLOR, 0, false), // Color
|
|
|
+ VertexElement(TYPE_VECTOR2, SEM_TEXCOORD, 0, false), // Texcoord1
|
|
|
+ VertexElement(TYPE_VECTOR2, SEM_TEXCOORD, 1, false), // Texcoord2
|
|
|
+ VertexElement(TYPE_VECTOR3, SEM_TEXCOORD, 0, false), // Cubetexcoord1
|
|
|
+ VertexElement(TYPE_VECTOR3, SEM_TEXCOORD, 1, false), // Cubetexcoord2
|
|
|
+ VertexElement(TYPE_VECTOR4, SEM_TANGENT, 0, false), // Tangent
|
|
|
+ VertexElement(TYPE_VECTOR4, SEM_BLENDWEIGHTS, 0, false), // Blendweights
|
|
|
+ VertexElement(TYPE_UBYTE4, SEM_BLENDINDICES, 0, false), // Blendindices
|
|
|
+ VertexElement(TYPE_VECTOR4, SEM_TEXCOORD, 4, true), // Instancematrix1
|
|
|
+ VertexElement(TYPE_VECTOR4, SEM_TEXCOORD, 5, true), // Instancematrix2
|
|
|
+ VertexElement(TYPE_VECTOR4, SEM_TEXCOORD, 6, true), // Instancematrix3
|
|
|
+ VertexElement(TYPE_INT, SEM_OBJECTINDEX, 0, false) // Objectindex
|
|
|
+};
|
|
|
+
|
|
|
+const u32 ELEMENT_TYPESIZES[] =
|
|
|
+{
|
|
|
+ sizeof(int),
|
|
|
+ sizeof(float),
|
|
|
+ 2 * sizeof(float),
|
|
|
+ 3 * sizeof(float),
|
|
|
+ 4 * sizeof(float),
|
|
|
+ sizeof(unsigned),
|
|
|
+ sizeof(unsigned)
|
|
|
+};
|
|
|
+
|
|
|
+} // namespace Urho3D
|