Fix private access to GL ID (for now)

This commit is contained in:
Joshua Granick
2017-03-17 12:07:06 -07:00
parent 0cc108858c
commit 8e0ca6cfd6
11 changed files with 21 additions and 1 deletions

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLBuffer(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLFramebuffer(GLObject) from GLObject to GLObject {

View File

@@ -3,7 +3,7 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(refs)
@:forward(id, refs)
abstract GLProgram(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLQuery(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLRenderbuffer(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLSampler(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLShader(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLSync(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLTexture(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLTransformFeedback(GLObject) from GLObject to GLObject {

View File

@@ -3,6 +3,8 @@ package lime.graphics.opengl; #if (!js || !html5 || display)
import lime.graphics.opengl.GL;
@:forward(id)
abstract GLVertexArrayObject(GLObject) from GLObject to GLObject {