diff --git a/src/dlangui/platforms/sdl/sdlapp.d b/src/dlangui/platforms/sdl/sdlapp.d index baa7e85b..ad210401 100644 --- a/src/dlangui/platforms/sdl/sdlapp.d +++ b/src/dlangui/platforms/sdl/sdlapp.d @@ -231,6 +231,7 @@ class SDLWindow : Window { Log.i("Trying to create OpenGL ", versionMajor, ".", versionMinor, " context"); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, versionMajor); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, versionMinor); + // SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, _platform.instance.getMultisamples()); SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); _context = SDL_GL_CreateContext(_win); // Create the actual context and make it current if (!_context) diff --git a/views/res/shaders/colored.frag b/views/res/shaders/colored.frag index fab42865..a77a9336 100644 --- a/views/res/shaders/colored.frag +++ b/views/res/shaders/colored.frag @@ -130,7 +130,7 @@ void main() #endif #if defined(LIGHTMAP) - vec4 lightColor = texture2D(u_lightmapTexture, v_texCoord1); + vec4 lightColor = texture(u_lightmapTexture, v_texCoord1); _fragColor.rgb *= lightColor.rgb; #endif diff --git a/views/res/shaders/lighting.frag b/views/res/shaders/lighting.frag index aa07bb01..1b0aecf3 100644 --- a/views/res/shaders/lighting.frag +++ b/views/res/shaders/lighting.frag @@ -30,7 +30,7 @@ vec3 getLitPixel() { #if defined(BUMPED) - vec3 normalVector = normalize(texture2D(u_normalmapTexture, v_texCoord).rgb * 2.0 - 1.0); + vec3 normalVector = normalize(texture(u_normalmapTexture, v_texCoord).rgb * 2.0 - 1.0); #else diff --git a/views/res/shaders/textured.frag b/views/res/shaders/textured.frag index 97da2c83..701b97ea 100644 --- a/views/res/shaders/textured.frag +++ b/views/res/shaders/textured.frag @@ -133,7 +133,7 @@ void main() if(v_clipDistance < 0.0) discard; #endif - _baseColor = texture2D(u_diffuseTexture, v_texCoord); + _baseColor = texture(u_diffuseTexture, v_texCoord); #if defined(FOG) float dist = 0.0; @@ -161,7 +161,7 @@ void main() #endif #if defined(LIGHTMAP) - vec4 lightColor = texture2D(u_lightmapTexture, v_texCoord1); + vec4 lightColor = texture(u_lightmapTexture, v_texCoord1); _fragColor.rgb *= lightColor.rgb; #endif