|
c76593f6a2
|
Looky, OSX found an issue for me.
|
2012-10-09 23:42:40 -05:00 |
|
|
66a245dd68
|
Remove this silliness
|
2012-10-09 23:42:40 -05:00 |
|
|
9c09e1973a
|
Some shader programs don't come with Vertex shaders attached, don't try to bind a Vertex Uniform block then.
|
2012-10-09 23:42:40 -05:00 |
|
|
f8d0c28e53
|
Set Sampler values at program make time instead of every frame. Fix an issue when The user had UBO support but not Binding support.
|
2012-10-09 23:42:40 -05:00 |
|
|
ddd4360d6d
|
Only delete this buffer if we support it.
|
2012-10-09 23:42:39 -05:00 |
|
|
7aad45658e
|
Add a GUI option to use GLSL shaders. Also fix a small typo.
|
2012-10-09 23:42:39 -05:00 |
|
|
076c1a5aa7
|
Make sure not to try and bind UBO locations when it isn't supported
|
2012-10-09 23:41:49 -05:00 |
|
|
7f12daa014
|
Looks like we make use of fmod, make a GLSL function for it!
|
2012-10-09 23:41:49 -05:00 |
|
|
ba12c0b4f5
|
Instead of querying the vertex attribute location. Let's bind it to where CG expects it to be as well. Was causing problems when we were trying to activate the components below and they weren't available. This fixes cubivore with GLSL shader. Also any other game that uses 3 normal pointers.
|
2012-10-09 23:41:48 -05:00 |
|
|
d70726b035
|
glMapBuffer was slow, go back to glBufferSubData, single combined ps/vs ubo now
|
2012-10-09 23:41:48 -05:00 |
|
|
d9117ab6a1
|
try combining vs/ps ubo
|
2012-10-09 23:41:48 -05:00 |
|
|
e641ede232
|
make use of glMapBuffer to set ubo data
|
2012-10-09 23:41:48 -05:00 |
|
|
04836705b7
|
Show a bit of information when using GLSL shaders.
|
2012-10-09 23:41:48 -05:00 |
|
|
8e80771670
|
fix stupid indentation
|
2012-10-09 23:41:48 -05:00 |
|
|
73a29bf6a1
|
have separate variables/functions for VS/PS ubo stuff, array was confusing.
|
2012-10-09 23:41:48 -05:00 |
|
|
a809feae1a
|
Disable UBO buffer generation if hardware doesn't support it.
|
2012-10-09 23:41:48 -05:00 |
|
|
3bcec51334
|
More coding style fixes because I suck at sed
|
2012-10-09 23:41:48 -05:00 |
|
|
3c6d0fc710
|
8 spaces indentation -> tabs
|
2012-10-09 23:41:48 -05:00 |
|
|
a5257c1a0a
|
Actually have Dual Source blending work for people. Forgot about this change.
|
2012-10-09 23:41:06 -05:00 |
|
|
a304af75fd
|
Make this pretty
|
2012-10-09 23:41:06 -05:00 |
|
|
67687a7b6d
|
Make sure our UBO buffers are always aligned correctly.
|
2012-10-09 23:41:06 -05:00 |
|
|
5b06bbf87d
|
Use UBOs in every shader. I had missed a few. Only cache Uniform locations if we aren't using UBOs.
|
2012-10-09 23:41:06 -05:00 |
|
|
5bcbf92f43
|
Make sure to support everything even if GPU doesn't.
|
2012-10-09 23:41:06 -05:00 |
|
|
d4a80ca3ec
|
yay, UBOs work 100% now.
|
2012-10-09 23:41:05 -05:00 |
|
|
1f75ee49bf
|
UBO works for Pixel Shaders if Binding for UBO is zero, otherwise fails. Probably why Vertex shader UBO is failing. Too tired to investigate right now.
|
2012-10-09 23:41:05 -05:00 |
|
|
904adb9e3d
|
More for Billiard <3
|
2012-10-09 23:41:05 -05:00 |
|
|
ce7a54f32a
|
Firin ma lazer
|
2012-10-09 23:41:05 -05:00 |
|
|
b105d70339
|
Firin ma lazer
|
2012-10-09 23:41:05 -05:00 |
|
|
c82b92bfc2
|
Fix one error.
|
2012-10-09 23:41:05 -05:00 |
|
|
2fbca145cb
|
Remove bSupportsGLSLLocation since it won't work how I expect it.
|
2012-10-09 23:41:05 -05:00 |
|
|
4a84c6f742
|
Add in UBOs, doesn't work yet. Still debugging here.
|
2012-10-09 23:41:05 -05:00 |
|
|
5f0f26ef35
|
add ProgramShaderCache.* to visual studio project files
|
2012-10-09 23:41:05 -05:00 |
|
|
76e5766a1b
|
Put Vertex Uniforms in to the correct places to get ready for UBOs.
|
2012-10-09 23:41:04 -05:00 |
|
|
d897491f94
|
Few compiler errors that got exposed once I got Dual Source Blending working. Seems it isn't working quite 100% either. Good chance I missed something anyway.
|
2012-10-09 23:41:04 -05:00 |
|
|
d83ead5914
|
Support Dual Source Blending in OGL plugin with GLSL.
|
2012-10-09 23:39:16 -05:00 |
|
|
eff019442f
|
Playing through SSBM story made me find this.
|
2012-10-09 23:37:52 -05:00 |
|
|
b24990ca28
|
Bit of cleanup. Clean up my massive hack in the ShaderManagerFiles. Almost feature parity with Nvidia CG now I think. Just need to do Alpha test with Dual source blending now.
|
2012-10-09 23:37:52 -05:00 |
|
|
cf68cc0c61
|
Add support for GL_ARB_shading_language_420pack so we don't have to binding sampler locations. Also add support for GL_ARB_separate_shader_objects which doesn't currently work for some reason....investigating.
|
2012-10-09 23:37:52 -05:00 |
|
|
081ad949ce
|
Welp, just fixed that problem.
|
2012-10-09 23:35:45 -05:00 |
|
|
3c9c5de722
|
Missed a spot. Most games work now, Still have a problem with viewtiful joe. Destination Alpha pass doesn't work yet, going to use Dual source blending on that.
|
2012-10-09 23:35:45 -05:00 |
|
|
8058f2f32f
|
Missed one
|
2012-10-09 23:33:02 -05:00 |
|
|
9064b76deb
|
Shader Compile fixes. Played SMS for two shines.
|
2012-10-09 23:33:02 -05:00 |
|
|
3160da1289
|
This lets us see stuff with GLSL shaders. Just need to take care of some compile errors now.
|
2012-10-09 23:33:02 -05:00 |
|
|
7cec31dbf3
|
Almost there.
|
2012-10-09 23:33:02 -05:00 |
|
|
8123b137aa
|
This is the terrible bit that can't be removed until we use UBOs in the GLSL shaders.
|
2012-10-09 23:31:31 -05:00 |
|
|
0fc755c4df
|
More stuff
|
2012-10-09 23:31:31 -05:00 |
|
|
66a5334158
|
moe
|
2012-10-09 23:30:48 -05:00 |
|
|
7a4c080c70
|
mah
|
2012-10-09 23:29:30 -05:00 |
|
|
411357b54a
|
Compile
|
2012-10-09 23:29:30 -05:00 |
|
|
34c7b3fd73
|
meh
|
2012-10-09 23:29:30 -05:00 |
|