mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
graphicsdriver/opengl: Refactoring: Improve logic to generate framebuffer
This commit is contained in:
parent
44d1b137e7
commit
de745f00fa
@ -73,11 +73,8 @@ func (d *Driver) NewScreenFramebufferImage(width, height int) (graphicsdriver.Im
|
||||
driver: d,
|
||||
width: width,
|
||||
height: height,
|
||||
screen: true,
|
||||
}
|
||||
// The (default) framebuffer size can't be converted to a power of 2.
|
||||
// On browsers, c.width and c.height are used as viewport size and
|
||||
// Edge can't treat a bigger viewport than the drawing area (#71).
|
||||
i.framebuffer = newScreenFramebuffer(&d.context, width, height)
|
||||
return i, nil
|
||||
}
|
||||
|
||||
|
@ -24,6 +24,7 @@ type Image struct {
|
||||
framebuffer *framebuffer
|
||||
width int
|
||||
height int
|
||||
screen bool
|
||||
}
|
||||
|
||||
func (i *Image) IsInvalidated() bool {
|
||||
@ -73,6 +74,15 @@ func (i *Image) ensureFramebuffer() error {
|
||||
if i.framebuffer != nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
if i.screen {
|
||||
// The (default) framebuffer size can't be converted to a power of 2.
|
||||
// On browsers, c.width and c.height are used as viewport size and
|
||||
// Edge can't treat a bigger viewport than the drawing area (#71).
|
||||
i.framebuffer = newScreenFramebuffer(&i.driver.context, i.width, i.height)
|
||||
return nil
|
||||
}
|
||||
|
||||
w, h := math.NextPowerOf2Int(i.width), math.NextPowerOf2Int(i.height)
|
||||
f, err := newFramebufferFromTexture(&i.driver.context, i.textureNative, w, h)
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user