OSDN Git Service

Various changes regarding lights/environment/defaultshaders
authorXoppa <contact@xoppa.nl>
Fri, 27 Sep 2013 23:03:50 +0000 (01:03 +0200)
committerXoppa <contact@xoppa.nl>
Fri, 27 Sep 2013 23:03:50 +0000 (01:03 +0200)
commit79bc6c74aae7ef5df50770023bde8a1e86a69a33
treed57d1d5a00883edb93cb603000bb885e82edcd06
parente9f25f8288cd1efef3dad4397238dbe161576be0
Various changes regarding lights/environment/defaultshaders
36 files changed:
gdx/src/com/badlogic/gdx/graphics/g3d/Attribute.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/graphics/g3d/Attributes.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/graphics/g3d/Material.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/graphics/g3d/Model.java
gdx/src/com/badlogic/gdx/graphics/g3d/ModelBatch.java
gdx/src/com/badlogic/gdx/graphics/g3d/ModelInstance.java
gdx/src/com/badlogic/gdx/graphics/g3d/Renderable.java
gdx/src/com/badlogic/gdx/graphics/g3d/attributes/BlendingAttribute.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/materials/BlendingAttribute.java with 92% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/attributes/ColorAttribute.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/materials/ColorAttribute.java with 89% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/attributes/DepthTestAttribute.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/materials/DepthTestAttribute.java with 93% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/attributes/FloatAttribute.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/materials/FloatAttribute.java with 85% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/attributes/IntAttribute.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/materials/IntAttribute.java with 77% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/attributes/TextureAttribute.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/materials/TextureAttribute.java with 92% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/AmbientCubemap.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/lights/AmbientCubemap.java with 98% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/BaseLight.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/lights/BaseLight.java with 71% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/DirectionalLight.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/lights/DirectionalLight.java with 96% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/DirectionalShadowLight.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/lights/DirectionalShadowLight.java with 98% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/Environment.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/lights/Lights.java with 54% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/PointLight.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/lights/PointLight.java with 96% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/ShadowMap.java [moved from gdx/src/com/badlogic/gdx/graphics/g3d/lights/ShadowMap.java with 79% similarity]
gdx/src/com/badlogic/gdx/graphics/g3d/environment/SphericalHarmonics.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/graphics/g3d/loader/ObjLoader.java
gdx/src/com/badlogic/gdx/graphics/g3d/materials/Material.java [deleted file]
gdx/src/com/badlogic/gdx/graphics/g3d/model/Node.java
gdx/src/com/badlogic/gdx/graphics/g3d/model/NodePart.java
gdx/src/com/badlogic/gdx/graphics/g3d/shaders/BaseShader.java
gdx/src/com/badlogic/gdx/graphics/g3d/shaders/DefaultShader.java
gdx/src/com/badlogic/gdx/graphics/g3d/shaders/DepthShader.java
gdx/src/com/badlogic/gdx/graphics/g3d/shaders/GLES10Shader.java
gdx/src/com/badlogic/gdx/graphics/g3d/utils/DefaultRenderableSorter.java
gdx/src/com/badlogic/gdx/graphics/g3d/utils/DefaultShaderProvider.java
gdx/src/com/badlogic/gdx/graphics/g3d/utils/DepthShaderProvider.java
gdx/src/com/badlogic/gdx/graphics/g3d/utils/GLES10ShaderProvider.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/graphics/g3d/utils/MeshPartBuilder.java
gdx/src/com/badlogic/gdx/graphics/g3d/utils/ModelBuilder.java
gdx/src/com/badlogic/gdx/graphics/g3d/utils/ShaderProvider.java