View Full Version : GIMP Normalmap Plugin Woes
Megatog615
August 16th, 2007, 01:36 AM
On my laptop(which has a pretty old NVIDIA Geforce2 Go), I can run and use the Normalmap plugin just fine. However, there are a few issues. I cannot change anything besides the diffuse map in the 3D preview. I figure this is due to some lack of support from the video card. Is there any way I can run it in software mode(using mesa or something), so I can get all the features? It will probably run very slow, but it's just a single texture I'm viewing and it shouldn't be a problem.
fktt
August 16th, 2007, 05:30 AM
where do you have to but the normalmap plugin in the gimp, anyway, have tryed and i didnt get it even working :(
Sindwiller
August 16th, 2007, 07:27 AM
where do you have to but the normalmap plugin in the gimp, anyway, have tryed and i didnt get it even working :(
You need to compile it yourself. It's pretty easy...
tar -xjf gimp-normalmap-1.2.1.tar.bz2
cd gimp-normalmap-1.2.1
make
sudo make install
And here's a little HowTo for good normalmaps I wrote on the Nexuiz forums... http://alientrap.org/forum/viewtopic.php?p=16725&sid=626ec56e8460557618717b8ea9fc5d8c#16725
I cannot change anything besides the diffuse map in the 3D preview.
Is "Specular Lighting" ticked? Have you selected a correct specularmap?
Megatog615
August 16th, 2007, 12:45 PM
I can't. I think my video card can't support things like that, which is why I'm asking for a way to do it through mesaGL.
fktt
August 19th, 2007, 06:17 AM
You need to compile it yourself. It's pretty easy...
tar -xjf gimp-normalmap-1.2.1.tar.bz2
cd gimp-normalmap-1.2.1
make
sudo make install aha, thanks :)
fktt
September 12th, 2007, 06:44 AM
ok.. so i finally got around to checking out the nor-map-plugin's compile/make, and this is what i get:
[edit: changed the error code, got some things fixed on my own, but problems still exist, and now i really cant get my tiny head around it..]
gcc -c -O3 -Wall `pkg-config --cflags gtk+-2.0 gtkglext-1.0 gimp-2.0` normalmap.c
normalmap.c: In function ‘normalmap_dialog’:
normalmap.c:1331: warning: missing sentinel in function call
gcc -c -O3 -Wall `pkg-config --cflags gtk+-2.0 gtkglext-1.0 gimp-2.0` preview3d.c
preview3d.c:27:21: error: GL/glew.h: No such file or directory
preview3d.c:89: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘diffuse_tex’
preview3d.c:90: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘gloss_tex’
preview3d.c:91: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘normal_tex’
preview3d.c:92: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘white_tex’
preview3d.c:100: error: expected specifier-qualifier-list before ‘GLuint’
preview3d.c:103: warning: excess elements in struct initializer
preview3d.c:103: warning: (near initialization for ‘object_info[0]’)
preview3d.c:104: warning: excess elements in struct initializer
preview3d.c:104: warning: (near initialization for ‘object_info[1]’)
preview3d.c:105: warning: excess elements in struct initializer
preview3d.c:105: warning: (near initialization for ‘object_info[2]’)
preview3d.c:106: warning: excess elements in struct initializer
preview3d.c:106: warning: (near initialization for ‘object_info[3]’)
preview3d.c:107: warning: excess elements in struct initializer
preview3d.c:107: warning: (near initialization for ‘object_info[4]’)
preview3d.c:121: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘programs’
preview3d.c: In function ‘init’:
preview3d.c:592: warning: implicit declaration of function ‘glewInit’
preview3d.c:593: error: ‘GLEW_OK’ undeclared (first use in this function)
preview3d.c:593: error: (Each undeclared identifier is reported only once
preview3d.c:593: error: for each function it appears in.)
preview3d.c:595: warning: implicit declaration of function ‘glewGetErrorString’
preview3d.c:595: warning: passing argument 3 of ‘g_log’ makes pointer from integer without a cast
preview3d.c:599: warning: implicit declaration of function ‘glClearColor’
preview3d.c:600: warning: implicit declaration of function ‘glDepthFunc’
preview3d.c:600: error: ‘GL_LEQUAL’ undeclared (first use in this function)
preview3d.c:601: warning: implicit declaration of function ‘glEnable’
preview3d.c:601: error: ‘GL_DEPTH_TEST’ undeclared (first use in this function)
preview3d.c:603: warning: implicit declaration of function ‘glLineWidth’
preview3d.c:607: error: ‘GLEW_ARB_multitexture’ undeclared (first use in this function)
preview3d.c:613: error: ‘GLEW_ARB_texture_env_combine’ undeclared (first use in this function)
preview3d.c:619: error: ‘GLEW_ARB_texture_env_dot3’ undeclared (first use in this function)
preview3d.c:627: warning: implicit declaration of function ‘glGenTextures’
preview3d.c:627: error: ‘diffuse_tex’ undeclared (first use in this function)
preview3d.c:628: error: ‘gloss_tex’ undeclared (first use in this function)
preview3d.c:629: error: ‘normal_tex’ undeclared (first use in this function)
preview3d.c:630: error: ‘white_tex’ undeclared (first use in this function)
preview3d.c:632: warning: implicit declaration of function ‘glGetIntegerv’
preview3d.c:632: error: ‘GL_MAX_TEXTURE_UNITS’ undeclared (first use in this function)
preview3d.c:634: warning: implicit declaration of function ‘glActiveTexture’
preview3d.c:634: error: ‘GL_TEXTURE0’ undeclared (first use in this function)
preview3d.c:635: error: ‘GL_TEXTURE_2D’ undeclared (first use in this function)
preview3d.c:636: warning: implicit declaration of function ‘glTexEnvi’
preview3d.c:636: error: ‘GL_TEXTURE_ENV’ undeclared (first use in this function)
preview3d.c:636: error: ‘GL_TEXTURE_ENV_MODE’ undeclared (first use in this function)
preview3d.c:636: error: ‘GL_COMBINE’ undeclared (first use in this function)
preview3d.c:637: error: ‘GL_COMBINE_RGB’ undeclared (first use in this function)
preview3d.c:637: error: ‘GL_DOT3_RGB’ undeclared (first use in this function)
preview3d.c:638: error: ‘GL_SOURCE0_RGB’ undeclared (first use in this function)
preview3d.c:638: error: ‘GL_PRIMARY_COLOR’ undeclared (first use in this function)
preview3d.c:639: error: ‘GL_OPERAND0_RGB’ undeclared (first use in this function)
preview3d.c:639: error: ‘GL_SRC_COLOR’ undeclared (first use in this function)
preview3d.c:640: error: ‘GL_SOURCE1_RGB’ undeclared (first use in this function)
preview3d.c:640: error: ‘GL_TEXTURE’ undeclared (first use in this function)
preview3d.c:641: error: ‘GL_OPERAND1_RGB’ undeclared (first use in this function)
preview3d.c:643: error: ‘GL_TEXTURE1’ undeclared (first use in this function)
preview3d.c:646: error: ‘GL_MODULATE’ undeclared (first use in this function)
preview3d.c:647: error: ‘GL_PREVIOUS’ undeclared (first use in this function)
preview3d.c:652: warning: implicit declaration of function ‘glBindTexture’
preview3d.c:653: warning: implicit declaration of function ‘glTexParameteri’
preview3d.c:653: error: ‘GL_TEXTURE_WRAP_S’ undeclared (first use in this function)
preview3d.c:653: error: ‘GL_CLAMP_TO_EDGE’ undeclared (first use in this function)
preview3d.c:654: error: ‘GL_TEXTURE_WRAP_T’ undeclared (first use in this function)
preview3d.c:655: error: ‘GL_TEXTURE_MAG_FILTER’ undeclared (first use in this function)
preview3d.c:655: error: ‘GL_NEAREST’ undeclared (first use in this function)
preview3d.c:656: error: ‘GL_TEXTURE_MIN_FILTER’ undeclared (first use in this function)
preview3d.c:657: warning: implicit declaration of function ‘glTexImage2D’
preview3d.c:657: error: ‘GL_LUMINANCE’ undeclared (first use in this function)
preview3d.c:658: error: ‘GL_UNSIGNED_BYTE’ undeclared (first use in this function)
preview3d.c:662: error: ‘GL_TEXTURE2’ undeclared (first use in this function)
preview3d.c:667: error: ‘GLEW_ARB_shader_objects’ undeclared (first use in this function)
preview3d.c:667: error: ‘GLEW_ARB_vertex_shader’ undeclared (first use in this function)
preview3d.c:668: error: ‘GLEW_ARB_fragment_shader’ undeclared (first use in this function)
preview3d.c:669: error: ‘GLEW_ARB_texture_non_power_of_two’ undeclared (first use in this function)
preview3d.c:670: error: ‘GLEW_SGIS_generate_mipmap’ undeclared (first use in this function)
preview3d.c:671: error: ‘GLEW_EXT_texture_filter_anisotropic’ undeclared (first use in this function)
preview3d.c:675: error: ‘GLhandleARB’ undeclared (first use in this function)
preview3d.c:675: error: expected ‘;’ before ‘prog’
preview3d.c:685: error: ‘GLEW_ARB_fragment_program’ undeclared (first use in this function)
preview3d.c:687: warning: implicit declaration of function ‘glBindProgramARB’
preview3d.c:687: error: ‘GL_FRAGMENT_PROGRAM_ARB’ undeclared (first use in this function)
preview3d.c:688: warning: implicit declaration of function ‘glGetProgramivARB’
preview3d.c:689: error: ‘GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB’ undeclared (first use in this function)
preview3d.c:692: error: ‘GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB’ undeclared (first use in this function)
preview3d.c:697: error: ‘vert_shader’ undeclared (first use in this function)
preview3d.c:697: warning: implicit declaration of function ‘glCreateShaderObjectARB’
preview3d.c:697: error: ‘GL_VERTEX_SHADER_ARB’ undeclared (first use in this function)
preview3d.c:698: warning: implicit declaration of function ‘glShaderSourceARB’
preview3d.c:699: warning: implicit declaration of function ‘glCompileShaderARB’
preview3d.c:700: warning: implicit declaration of function ‘glGetObjectParameterivARB’
preview3d.c:700: error: ‘GL_OBJECT_COMPILE_STATUS_ARB’ undeclared (first use in this function)
preview3d.c:703: error: ‘GL_OBJECT_INFO_LOG_LENGTH_ARB’ undeclared (first use in this function)
preview3d.c:705: warning: implicit declaration of function ‘glGetInfoLogARB’
preview3d.c:710: error: ‘prog’ undeclared (first use in this function)
preview3d.c:710: warning: implicit declaration of function ‘glCreateProgramObjectARB’
preview3d.c:711: warning: implicit declaration of function ‘glAttachObjectARB’
preview3d.c:713: error: ‘frag_shader’ undeclared (first use in this function)
preview3d.c:713: error: ‘GL_FRAGMENT_SHADER_ARB’ undeclared (first use in this function)
preview3d.c:727: warning: implicit declaration of function ‘glDeleteObjectARB’
preview3d.c:734: warning: implicit declaration of function ‘glLinkProgramARB’
preview3d.c:735: error: ‘GL_OBJECT_LINK_STATUS_ARB’ undeclared (first use in this function)
preview3d.c:749: error: ‘programs’ undeclared (first use in this function)
preview3d.c:896: warning: implicit declaration of function ‘glUseProgramObjectARB’
preview3d.c:897: warning: implicit declaration of function ‘glGetUniformLocationARB’
preview3d.c:898: warning: implicit declaration of function ‘glUniform1iARB’
preview3d.c:926: warning: implicit declaration of function ‘glUniform1fARB’
preview3d.c:946: warning: implicit declaration of function ‘glGenBuffersARB’
preview3d.c:946: error: ‘struct <anonymous>’ has no member named ‘vbo’
preview3d.c:947: warning: implicit declaration of function ‘glBindBufferARB’
preview3d.c:947: error: ‘GL_ARRAY_BUFFER_ARB’ undeclared (first use in this function)
preview3d.c:947: error: ‘struct <anonymous>’ has no member named ‘vbo’
preview3d.c:948: warning: implicit declaration of function ‘glBufferDataARB’
preview3d.c:950: error: ‘GL_STATIC_DRAW_ARB’ undeclared (first use in this function)
preview3d.c: In function ‘draw_object’:
preview3d.c:996: error: ‘GL_ARRAY_BUFFER_ARB’ undeclared (first use in this function)
preview3d.c:996: error: ‘struct <anonymous>’ has no member named ‘vbo’
preview3d.c:1000: warning: implicit declaration of function ‘glVertexPointer’
preview3d.c:1000: error: ‘GL_FLOAT’ undeclared (first use in this function)
preview3d.c:1001: warning: implicit declaration of function ‘glNormalPointer’
preview3d.c:1002: warning: implicit declaration of function ‘glClientActiveTexture’
preview3d.c:1002: error: ‘GL_TEXTURE4’ undeclared (first use in this function)
preview3d.c:1003: warning: implicit declaration of function ‘glTexCoordPointer’
preview3d.c:1004: warning: implicit declaration of function ‘glEnableClientState’
preview3d.c:1004: error: ‘GL_TEXTURE_COORD_ARRAY’ undeclared (first use in this function)
preview3d.c:1005: error: ‘GL_TEXTURE3’ undeclared (first use in this function)
preview3d.c:1008: error: ‘GL_TEXTURE0’ undeclared (first use in this function)
preview3d.c:1011: error: ‘GL_VERTEX_ARRAY’ undeclared (first use in this function)
preview3d.c:1012: error: ‘GL_NORMAL_ARRAY’ undeclared (first use in this function)
preview3d.c:1016: warning: implicit declaration of function ‘glDrawElements’
preview3d.c:1016: error: ‘GL_TRIANGLES’ undeclared (first use in this function)
preview3d.c:1017: error: ‘GL_UNSIGNED_SHORT’ undeclared (first use in this function)
preview3d.c:1019: warning: implicit declaration of function ‘glDisableClientState’
preview3d.c:1035: warning: implicit declaration of function ‘glBegin’
preview3d.c:1055: warning: implicit declaration of function ‘glColor3fv’
preview3d.c:1056: warning: implicit declaration of function ‘glNormal3fv’
preview3d.c:1057: warning: implicit declaration of function ‘glMultiTexCoord2fv’
preview3d.c:1058: error: ‘GL_TEXTURE1’ undeclared (first use in this function)
preview3d.c:1060: error: ‘GL_TEXTURE2’ undeclared (first use in this function)
preview3d.c:1061: warning: implicit declaration of function ‘glVertex3fv’
preview3d.c:1063: warning: implicit declaration of function ‘glEnd’
preview3d.c: In function ‘expose’:
preview3d.c:1075: error: ‘GLhandleARB’ undeclared (first use in this function)
preview3d.c:1075: error: expected ‘;’ before ‘prog’
preview3d.c:1082: warning: implicit declaration of function ‘glClear’
preview3d.c:1082: error: ‘GL_COLOR_BUFFER_BIT’ undeclared (first use in this function)
preview3d.c:1082: error: ‘GL_DEPTH_BUFFER_BIT’ undeclared (first use in this function)
preview3d.c:1091: warning: implicit declaration of function ‘glMatrixMode’
preview3d.c:1091: error: ‘GL_MODELVIEW’ undeclared (first use in this function)
preview3d.c:1092: warning: implicit declaration of function ‘glLoadIdentity’
preview3d.c:1093: warning: implicit declaration of function ‘glRotatef’
preview3d.c:1096: warning: implicit declaration of function ‘glTranslatef’
preview3d.c:1101: warning: implicit declaration of function ‘glGetFloatv’
preview3d.c:1101: error: ‘GL_MODELVIEW_MATRIX’ undeclared (first use in this function)
preview3d.c:1118: error: ‘prog’ undeclared (first use in this function)
preview3d.c:1118: error: ‘programs’ undeclared (first use in this function)
preview3d.c:1123: warning: implicit declaration of function ‘glUniform3fvARB’
preview3d.c:1133: warning: implicit declaration of function ‘glUniform2fvARB’
preview3d.c: In function ‘configure’:
preview3d.c:1164: warning: implicit declaration of function ‘glViewport’
preview3d.c:1166: error: ‘GL_PROJECTION’ undeclared (first use in this function)
preview3d.c:1168: warning: implicit declaration of function ‘gluPerspective’
preview3d.c:1170: error: ‘GL_MODELVIEW’ undeclared (first use in this function)
preview3d.c: In function ‘diffusemap_callback’:
preview3d.c:1302: error: ‘GLenum’ undeclared (first use in this function)
preview3d.c:1302: error: expected ‘;’ before ‘type’
preview3d.c:1308: error: ‘white_tex’ undeclared (first use in this function)
preview3d.c:1310: error: ‘GL_TEXTURE1’ undeclared (first use in this function)
preview3d.c:1311: error: ‘GL_TEXTURE_2D’ undeclared (first use in this function)
preview3d.c:1325: error: ‘type’ undeclared (first use in this function)
preview3d.c:1325: error: ‘GL_LUMINANCE’ undeclared (first use in this function)
preview3d.c:1326: error: ‘GL_LUMINANCE_ALPHA’ undeclared (first use in this function)
preview3d.c:1327: error: ‘GL_RGB’ undeclared (first use in this function)
preview3d.c:1328: error: ‘GL_RGBA’ undeclared (first use in this function)
preview3d.c:1337: warning: pointer targets in passing argument 3 of ‘get_nearest_pot’ differ in signedness
preview3d.c:1337: warning: pointer targets in passing argument 4 of ‘get_nearest_pot’ differ in signedness
preview3d.c:1347: error: ‘diffuse_tex’ undeclared (first use in this function)
preview3d.c:1348: error: ‘GL_TEXTURE_WRAP_S’ undeclared (first use in this function)
preview3d.c:1348: error: ‘GL_REPEAT’ undeclared (first use in this function)
preview3d.c:1349: error: ‘GL_TEXTURE_WRAP_T’ undeclared (first use in this function)
preview3d.c:1350: error: ‘GL_TEXTURE_MAG_FILTER’ undeclared (first use in this function)
preview3d.c:1350: error: ‘GL_LINEAR’ undeclared (first use in this function)
preview3d.c:1351: error: ‘GL_TEXTURE_MIN_FILTER’ undeclared (first use in this function)
preview3d.c:1351: error: ‘GL_LINEAR_MIPMAP_LINEAR’ undeclared (first use in this function)
preview3d.c:1353: warning: implicit declaration of function ‘glTexParameterfv’
preview3d.c:1353: error: ‘GL_TEXTURE_MAX_ANISOTROPY_EXT’ undeclared (first use in this function)
preview3d.c:1355: error: ‘GL_GENERATE_MIPMAP_SGIS’ undeclared (first use in this function)
preview3d.c:1355: error: ‘GL_TRUE’ undeclared (first use in this function)
preview3d.c:1357: error: ‘GL_UNSIGNED_BYTE’ undeclared (first use in this function)
preview3d.c: In function ‘glossmap_callback’:
preview3d.c:1392: error: ‘GLenum’ undeclared (first use in this function)
preview3d.c:1392: error: expected ‘;’ before ‘type’
preview3d.c:1399: error: ‘white_tex’ undeclared (first use in this function)
preview3d.c:1401: error: ‘GL_TEXTURE2’ undeclared (first use in this function)
preview3d.c:1402: error: ‘GL_TEXTURE_2D’ undeclared (first use in this function)
preview3d.c:1416: error: ‘type’ undeclared (first use in this function)
preview3d.c:1416: error: ‘GL_LUMINANCE’ undeclared (first use in this function)
preview3d.c:1417: error: ‘GL_LUMINANCE_ALPHA’ undeclared (first use in this function)
preview3d.c:1418: error: ‘GL_RGB’ undeclared (first use in this function)
preview3d.c:1419: error: ‘GL_RGBA’ undeclared (first use in this function)
preview3d.c:1428: warning: pointer targets in passing argument 3 of ‘get_nearest_pot’ differ in signedness
preview3d.c:1428: warning: pointer targets in passing argument 4 of ‘get_nearest_pot’ differ in signedness
preview3d.c:1438: error: ‘gloss_tex’ undeclared (first use in this function)
preview3d.c:1439: error: ‘GL_TEXTURE_WRAP_S’ undeclared (first use in this function)
preview3d.c:1439: error: ‘GL_REPEAT’ undeclared (first use in this function)
preview3d.c:1440: error: ‘GL_TEXTURE_WRAP_T’ undeclared (first use in this function)
preview3d.c:1441: error: ‘GL_TEXTURE_MAG_FILTER’ undeclared (first use in this function)
preview3d.c:1441: error: ‘GL_LINEAR’ undeclared (first use in this function)
preview3d.c:1442: error: ‘GL_TEXTURE_MIN_FILTER’ undeclared (first use in this function)
preview3d.c:1442: error: ‘GL_LINEAR_MIPMAP_LINEAR’ undeclared (first use in this function)
preview3d.c:1444: error: ‘GL_TEXTURE_MAX_ANISOTROPY_EXT’ undeclared (first use in this function)
preview3d.c:1446: error: ‘GL_GENERATE_MIPMAP_SGIS’ undeclared (first use in this function)
preview3d.c:1446: error: ‘GL_TRUE’ undeclared (first use in this function)
preview3d.c:1448: error: ‘GL_UNSIGNED_BYTE’ undeclared (first use in this function)
preview3d.c: In function ‘update_3D_preview’:
preview3d.c:1949: error: ‘GL_TEXTURE0’ undeclared (first use in this function)
preview3d.c:1950: error: ‘GL_TEXTURE_2D’ undeclared (first use in this function)
preview3d.c:1950: error: ‘normal_tex’ undeclared (first use in this function)
preview3d.c:1951: error: ‘GL_TEXTURE_WRAP_S’ undeclared (first use in this function)
preview3d.c:1951: error: ‘GL_REPEAT’ undeclared (first use in this function)
preview3d.c:1952: error: ‘GL_TEXTURE_WRAP_T’ undeclared (first use in this function)
preview3d.c:1953: error: ‘GL_TEXTURE_MAG_FILTER’ undeclared (first use in this function)
preview3d.c:1953: error: ‘GL_LINEAR’ undeclared (first use in this function)
preview3d.c:1954: error: ‘GL_TEXTURE_MIN_FILTER’ undeclared (first use in this function)
preview3d.c:1954: error: ‘GL_LINEAR_MIPMAP_LINEAR’ undeclared (first use in this function)
preview3d.c:1956: error: ‘GL_TEXTURE_MAX_ANISOTROPY_EXT’ undeclared (first use in this function)
preview3d.c:1958: error: ‘GL_GENERATE_MIPMAP_SGIS’ undeclared (first use in this function)
preview3d.c:1958: error: ‘GL_TRUE’ undeclared (first use in this function)
preview3d.c:1960: error: ‘GL_RGBA’ undeclared (first use in this function)
preview3d.c:1960: error: ‘GL_RGB’ undeclared (first use in this function)
preview3d.c:1960: error: ‘GL_UNSIGNED_BYTE’ undeclared (first use in this function)
make: *** [preview3d.o] Error 1
:(
[edit2: i think i got it worked out all i need to figure out now is how can i get it to work.. :(]
Megatog615
September 14th, 2007, 01:59 PM
Install the dev packages for GIMP and GLEW.
amixroed
September 14th, 2007, 10:40 PM
have you tried installing Gimp 2.4 RC2 ? might work..
sammu
September 19th, 2007, 08:41 AM
Problems with installing plugin here also. after typing make it tells me this:
Package gtkglext-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtkglext-1.0.pc'
to the PKG_CONFIG_PATH environment variable
checked and it really was not there although i installed and reinstalled libgtkglext1 with synaptic.
So i tried to install gtkglext 1.2 source and ./configure ends up saying:
checking for X... no
configure: error: X development libraries not found
Megatog615
September 21st, 2007, 11:56 PM
Get the -dev packages for those.
fktt
September 26th, 2007, 04:55 AM
i got it compiling, and it seemed to move the compiled plugin to the right folder too, but for some reason gimp just doesnt accept/cant find it for some reason.. :(
Megatog615
September 26th, 2007, 11:16 PM
It's under Filters -> Map.
fktt
September 27th, 2007, 04:38 AM
It's under Filters -> Map. nope, dont have it! :( weird..
Megatog615
September 27th, 2007, 12:45 PM
Did you run make install?
fktt
September 29th, 2007, 02:35 AM
yes i did! well, doesnt matter, i guess.. havent had real extreem need for normal maps thus long and i can allways make em out of colormaps 'by hand' too, if i really need them.. :)
vBulletin® v3.8.1, Copyright ©2000-2009, Jelsoft Enterprises Ltd.