File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ export class BufferProvider {
188
188
LocalTexture : depFile ,
189
189
Mag : Types . TextureMagFilter . Linear ,
190
190
Min : Types . TextureMinFilter . Linear ,
191
- Wrap : Types . TextureWrapMode . Clamp
191
+ Wrap : Types . TextureWrapMode . Repeat
192
192
} ) ;
193
193
}
194
194
else {
@@ -198,7 +198,7 @@ export class BufferProvider {
198
198
RemoteTexture : depFile ,
199
199
Mag : Types . TextureMagFilter . Linear ,
200
200
Min : Types . TextureMinFilter . Linear ,
201
- Wrap : Types . TextureWrapMode . Clamp
201
+ Wrap : Types . TextureWrapMode . Repeat
202
202
} ) ;
203
203
}
204
204
break ;
@@ -239,7 +239,7 @@ export class BufferProvider {
239
239
texture . MagLine = pendingSettings . MagLine ;
240
240
texture . Min = pendingSettings . Min || Types . TextureMinFilter . Linear ;
241
241
texture . MinLine = pendingSettings . MinLine ;
242
- texture . Wrap = pendingSettings . Wrap || Types . TextureWrapMode . Clamp ;
242
+ texture . Wrap = pendingSettings . Wrap || Types . TextureWrapMode . Repeat ;
243
243
texture . WrapLine = pendingSettings . WrapLine ;
244
244
texture . Type = pendingSettings . Type || Types . TextureType . Texture2D ;
245
245
texture . TypeLine = pendingSettings . TypeLine ;
You can’t perform that action at this time.
0 commit comments