Freestyle: Fix for references of deprecated texture stroke shaders.

Removed all references of deprecated texture shader.  Also deleted
several lines of dead code.

Since texture_shader.py no longer does what it was supposed to do,
the file itself was removed.

Patch reviewed by Tamito Kajiyama (kjym3).
This commit is contained in:
Folkert de Vries
2015-01-27 23:11:31 +01:00
committed by Tamito Kajiyama
parent a0fa3de267
commit 7d38d85340
19 changed files with 1 additions and 89 deletions

View File

@@ -37,7 +37,6 @@ from freestyle.shaders import (
SamplingShader,
SmoothingShader,
SpatialNoiseShader,
TextureAssignerShader,
)
from freestyle.types import Operators
@@ -51,6 +50,5 @@ shaders_list = [
IncreasingThicknessShader(4, 10),
SmoothingShader(400, 0.1, 0, 0.2, 0, 0, 0, 1),
IncreasingColorShader(1, 0, 0, 1, 0, 1, 0, 1),
TextureAssignerShader(4),
]
Operators.create(TrueUP1D(), shaders_list)