From 8e41a21607231b733ef0f5469be90ca4715e9afa Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 19 Feb 2009 23:53:40 +0000 Subject: 2.5: * Image painting back. 2d paint, 3d paint and projection, undo, pressure, repeating paint operations, etc should all work. Drawing cursor needs a bit of work, only gets shown when enabling texture paint mode now. * Move sculpt, image paint, and vertex/weight paint into a single sculpt_paint module. Doesn't make much difference now, but nice to have it together for better integration and consistency in the future. --- source/blender/editors/uvedit/Makefile | 1 + source/blender/editors/uvedit/SConscript | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/uvedit') diff --git a/source/blender/editors/uvedit/Makefile b/source/blender/editors/uvedit/Makefile index bd19bfdacb2..b8a8f0bc8af 100644 --- a/source/blender/editors/uvedit/Makefile +++ b/source/blender/editors/uvedit/Makefile @@ -45,6 +45,7 @@ CPPFLAGS += -I../../blenlib CPPFLAGS += -I../../makesdna CPPFLAGS += -I../../makesrna CPPFLAGS += -I../../imbuf +CPPFLAGS += -I../../gpu CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I$(NAN_OPENNL)/include diff --git a/source/blender/editors/uvedit/SConscript b/source/blender/editors/uvedit/SConscript index 29989a5b439..b472b89d23d 100644 --- a/source/blender/editors/uvedit/SConscript +++ b/source/blender/editors/uvedit/SConscript @@ -5,6 +5,6 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' ../../makesrna #/intern/opennl/extern' +incs += ' ../../makesrna #/intern/opennl/extern ../../gpu' env.BlenderLib ( 'bf_editors_uvedit', sources, Split(incs), [], libtype=['core'], priority=[45] ) -- cgit v1.2.3