From cf2f7009aa8b23878ebe5e8859d433501d73039f Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 4 Aug 2020 00:58:12 +0900 Subject: [PATCH] graphicscommand: Allow shader tests on browsers Updates #1166 --- internal/graphicscommand/command.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/graphicscommand/command.go b/internal/graphicscommand/command.go index f3d89b7cb..dc0e471b6 100644 --- a/internal/graphicscommand/command.go +++ b/internal/graphicscommand/command.go @@ -46,9 +46,6 @@ func IsShaderAvailable() bool { if !theGraphicsDriver.IsGL() { return false } - if web.IsBrowser() { - return false - } return true }