added osgtexture1D demo which currently is simply copy of osgtexture2D. I will be modifying it to do 1D texturing next. Fixed a bug in osg::Texture3D relating to checking of existance of texturing. Merged some fixes to the pfb loader from Ulrich Hertlein.
16 lines
265 B
Makefile
16 lines
265 B
Makefile
TOPDIR = ../../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
osgtexture1D.cpp\
|
|
|
|
LIBS += $(OSG_LIBS) $(GLUT_LIB) $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS)
|
|
|
|
INSTFILES = \
|
|
$(CXXFILES)\
|
|
Makefile.inst=Makefile
|
|
|
|
EXEC = osgtexture1D
|
|
|
|
include $(TOPDIR)/Make/makerules
|