tomohiro information 74 glöps

- general:
- level: user
- personal:
- demo invitation Windows 3DELAN 2011 by Joms
- I like effects like nebulas.
Fewer loops and more scenes would be nice. - rulezadded on the 2010-11-13 15:35:58
- demotool Linux Windows MacOSX PPC FreeBSD Shader Minifier by Ctrl-Alt-Test [web]
- Awesome work!
I'm using this tool for my 8k intro.
And I have some suggestions.
My program is using 'glBindAttribLocation' and 'glTransformFeedbackVaryings'.
These functions take input and output vertex attribute's names in vertex shader.
So 'in' and 'out' variables in vertex shader needs to be '#define' like uniform variables by GLSL minifier.
And my program using multiple shaders and they share same name uniform variables.
So I want GLSL minifier write #define names which have shader file name.
e.g.
glsl_minifier.exe foo_vertex_shader.vs -o foo_vertex_shader.vs.h
foo_vertex_shader.vs
in vec3 in_normal;
in vec3 in_texcoord;
out vec3 out_normal;
out vec3 out_texcoord;
uniform samplerBuffer positions;
void main()
...
foo_vertex_shader.vs.h
#ifndef FOO_VERTEX_SHADER.VS_H_
# define FOO_VERTEX_SHADER.VS_H_
# define FOO_VERTEX_SHADER_I_IN_NORMAL "n"
# define FOO_VERTEX_SHADER_I_IN_TEXCOORD "t"
# define FOO_VERTEX_SHADER_O_OUT_NORMAL "o"
# define FOO_VERTEX_SHADER_O_OUT_TEXCOORD "u"
# define FOO_VERTEX_SHADER_U_POSITIONS "p"
const char *foo_vertex_shader_vs = ""
"in vec3 n,t;"
"out vec3 o,u;"
"uniform samplerBuffer p;"
"void main()"
...
Thank you. - rulezadded on the 2010-11-06 14:08:23
- 4k Windows nuno by Tomohiro
- Sorry about awful sound.
I explain why the sound is bad.
At first, Music of Nuno was generated from a sin function and the
model data of dancer is reused as frequency.
The model data of dancer is a sorted index array of lines like
0, 1,
0, 3,
0, 10,
1, 4,
1, 8
2, 5,
...
This music was not noisy, but very simple.
So I added some code which make noisy sound.
I wrote music code of Nuno in plane and the Breakpoint hall.
They were not silent place, so I don't think I could find it was very bad sound.
I will study music and improve Nuno.
- sucksadded on the 2010-04-14 17:36:09
account created on the 2010-04-14 16:50:45