This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> Configure project :app | |
Configuration 'androidTestCompile' in project ':app' is deprecated. Use 'androidTestImplementation' instead. | |
Configuration 'compile' in project ':app' is deprecated. Use 'implementation' instead. | |
Configuration 'testCompile' in project ':app' is deprecated. Use 'testImplementation' instead. | |
Observed package id 'ndk-bundle' in inconsistent location '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle.r15' (Expected '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle') | |
Already observed package id 'ndk-bundle' in '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle'. Skipping duplicate at '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle.r15' | |
Observed package id 'ndk-bundle' in inconsistent location '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle.r15' (Expected '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle') | |
Already observed package id 'ndk-bundle' in '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle'. Skipping duplicate at '/Users/hajimehoshi/Library/Android/sdk/ndk-bundle.r15' | |
Dow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"image/color" | |
"github.com/golang/freetype/truetype" | |
"github.com/hajimehoshi/ebiten" | |
"github.com/hajimehoshi/ebiten/text" | |
"golang.org/x/image/font" | |
"golang.org/x/image/font/gofont/goregular" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2018 The Ebiten Authors | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software | |
// distributed under the License is distributed on an "AS IS" BASIS, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dir.glob('third_party/WebKit/**/*.cpp').each do |f| | |
next if File.basename(f) == "TaskRunnerHelper.cpp" | |
next if File.basename(f) == "WorkerThread.cpp" | |
next if File.basename(f) == "AnimationWorkletGlobalScopeTest.cpp" | |
# Special | |
#next if File.basename(f) == "WorkletGlobalScope.cpp" | |
#next if File.basename(f) == "WorkerGlobalScope.cpp" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"image" | |
"image/color" | |
"image/png" | |
"os" | |
) | |
var baseColor = color.RGBA{0x65, 0x73, 0x78, 0xff} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"os" | |
"github.com/hajimehoshi/ebiten" | |
"github.com/hajimehoshi/ebiten/audio" | |
"github.com/hajimehoshi/ebiten/audio/wav" | |
"github.com/hajimehoshi/ebiten/ebitenutil" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <fcntl.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <sys/mman.h> | |
#include <sys/types.h> | |
#include <unistd.h> | |
#define PAGE_SIZE (4096) | |
static const int size = 100 * PAGE_SIZE; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package test | |
import ( | |
"testing" | |
) | |
var i = 0 | |
func begin() { | |
i++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"image" | |
"log" | |
"math" | |
"time" | |
"github.com/hajimehoshi/ebiten" | |
"github.com/peterhellberg/plasma" |