internal/uidriver/glfw: Bug fix: Compile error

This commit is contained in:
Hajime Hoshi 2021-10-24 15:23:25 +09:00
parent 99bfdef416
commit dde53df6ae
2 changed files with 7 additions and 4 deletions

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//go:build !ebitengl
// +build !ebitengl
//go:build !ebitengl && !ios
// +build !ebitengl,!ios
package glfw

View File

@ -12,8 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//go:build !android && !js && !ios
// +build !android,!js,!ios
//go:build !android && (!darwin || ebitengl) && !ios && !js
// +build !android
// +build !darwin ebitengl
// +build !ios
// +build !js
package glfw