Page 4 of 4

Re: Simple Tile Mirror Plugin

Posted: Mon Jun 04, 2018 23:34
by Oaktown
Hive8, any chance to get a copy of your latest Simple Tile Mirror plugin for both Mac and PC?

Re: Simple Tile Mirror Plugin

Posted: Tue Jun 05, 2018 03:01
by hive8
Hi Yes I do have them for PC let me compile it quick for MAC as well, i can send it over before the end of the week.

Re: Simple Tile Mirror Plugin

Posted: Tue Jun 05, 2018 03:11
by Oaktown
Awesome, thank you!

Re: Simple Tile Mirror Plugin

Posted: Thu Jun 07, 2018 06:46
by hive8
Hi Joris, I am still working on this problem here, I am using the the maxCoord.s and maxCoord.t to draw the texture on the quad. But for some reason when i try to mirror or clamp or mirror_repeat the texture with

glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);

I get that pixel gap on the top and bottom of the texture, when i change the texture to a height of 1088 the gap disappears. Is there an other way to mirror the texture. I even tried it with the FFGL example AddSubstract.

I changed
gl_TexCoord[0] = gl_MultiTexCoord0;
to
gl_TexCoord[0] = gl_MultiTexCoord0 * 2.0f;


static const std::string vertexShaderCode = STRINGIFY(
void main()
{
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
gl_TexCoord[0] = gl_MultiTexCoord0 * 2.0f;
gl_FrontColor = gl_Color;
}
);

I also get that gap in the texture in the Y Axis.

Could you post by any chance the cpp for the mirror quad plugin FFGL for 64bit?

Re: Simple Tile Mirror Plugin

Posted: Tue Jun 26, 2018 14:27
by Kadete
Bump :)

I know you problably overworked Joris, when you find the time can you help him? :D

Thanks

Re: Simple Tile Mirror Plugin

Posted: Tue Jun 26, 2018 15:13
by Joris
In all the places you use texture coordinates, you need to account for the max texture values.

Now you've added a shader where you are using MutiiTexCoords, but you're not multiplying with the max texture values.

Re: Simple Tile Mirror Plugin

Posted: Fri Apr 01, 2022 21:36
by AllenEllis
Hi,

Sorry to bump such an old thread -- does anyone here have a link to a Mac version of this plugin?

Thanks!

Re: Simple Tile Mirror Plugin

Posted: Tue Apr 05, 2022 14:37
by edwin
Can you explain what the Tile Mirror does exactly or what you miss in the already present Tile effect @AllenEllis. I'm sure we can build something in Wire what suits your needs.

Re: Simple Tile Mirror Plugin

Posted: Tue May 17, 2022 11:11
by deflost
where can we find it?

thx.