mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
opengl: Implement GlslHighpSupported for iOS
This commit is contained in:
parent
dfe4db67be
commit
0b8fe25350
@ -12,6 +12,8 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
// TODO: Can we unify this into driver_openal.go?
|
||||||
|
|
||||||
// +build ios darwin,arm darwin,arm64
|
// +build ios darwin,arm darwin,arm64
|
||||||
|
|
||||||
package driver
|
package driver
|
||||||
|
@ -256,8 +256,9 @@ func (c *Context) DeleteShader(s Shader) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *Context) GlslHighpSupported() bool {
|
func (c *Context) GlslHighpSupported() bool {
|
||||||
// TODO: Fix this
|
gl := c.gl
|
||||||
return false
|
_, _, precision := gl.GetShaderPrecisionFormat(mgl.FRAGMENT_SHADER, mgl.HIGH_FLOAT)
|
||||||
|
return precision != 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Context) NewProgram(shaders []Shader) (Program, error) {
|
func (c *Context) NewProgram(shaders []Shader) (Program, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user