Remove image functions from GrGLInterface, part two
First part is at: https://skia-review.googlesource.com/c/skia/+/106120 Change-Id: I52c79a8635dcfb9eaf4c70f3a48b11349f9540d5 Reviewed-on: https://skia-review.googlesource.com/106268 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
This commit is contained in:
parent
867f897d9d
commit
3fc79ea031
@ -23,7 +23,6 @@ typedef GrGLvoid (* GrGLBindAttribLocationProc)(GrGLuint program, GrGLuint index
|
||||
typedef GrGLvoid (* GrGLBindBufferProc)(GrGLenum target, GrGLuint buffer);
|
||||
typedef GrGLvoid (* GrGLBindFramebufferProc)(GrGLenum target, GrGLuint framebuffer);
|
||||
typedef GrGLvoid (* GrGLBindRenderbufferProc)(GrGLenum target, GrGLuint renderbuffer);
|
||||
typedef GrGLvoid (* GrGLBindImageTextureProc)(GrGLuint unit, GrGLuint texture, GrGLint level, GrGLboolean layered, GrGLint layer, GrGLenum access, GrGLenum format);
|
||||
typedef GrGLvoid (* GrGLBindTextureProc)(GrGLenum target, GrGLuint texture);
|
||||
typedef GrGLvoid (* GrGLBindFragDataLocationProc)(GrGLuint program, GrGLuint colorNumber, const GrGLchar* name);
|
||||
typedef GrGLvoid (* GrGLBindFragDataLocationIndexedProc)(GrGLuint program, GrGLuint colorNumber, GrGLuint index, const GrGLchar * name);
|
||||
@ -121,8 +120,6 @@ typedef GrGLvoid* (* GrGLMapBufferProc)(GrGLenum target, GrGLenum access);
|
||||
typedef GrGLvoid* (* GrGLMapBufferRangeProc)(GrGLenum target, GrGLintptr offset, GrGLsizeiptr length, GrGLbitfield access);
|
||||
typedef GrGLvoid* (* GrGLMapBufferSubDataProc)(GrGLuint target, GrGLintptr offset, GrGLsizeiptr size, GrGLenum access);
|
||||
typedef GrGLvoid* (* GrGLMapTexSubImage2DProc)(GrGLenum target, GrGLint level, GrGLint xoffset, GrGLint yoffset, GrGLsizei width, GrGLsizei height, GrGLenum format, GrGLenum type, GrGLenum access);
|
||||
typedef GrGLvoid* (* GrGLMemoryBarrierProc)(GrGLbitfield barriers);
|
||||
typedef GrGLvoid* (* GrGLMemoryBarrierByRegionProc)(GrGLbitfield barriers);
|
||||
typedef GrGLvoid (* GrGLPixelStoreiProc)(GrGLenum pname, GrGLint param);
|
||||
typedef GrGLvoid (* GrGLPolygonModeProc)(GrGLenum face, GrGLenum mode);
|
||||
typedef GrGLvoid (* GrGLPopGroupMarkerProc)();
|
||||
|
@ -89,7 +89,6 @@ public:
|
||||
GrGLFunction<GrGLBindFramebufferProc> fBindFramebuffer;
|
||||
GrGLFunction<GrGLBindRenderbufferProc> fBindRenderbuffer;
|
||||
GrGLFunction<GrGLBindTextureProc> fBindTexture;
|
||||
GrGLFunction<GrGLBindImageTextureProc> fBindImageTexture;
|
||||
GrGLFunction<GrGLBindVertexArrayProc> fBindVertexArray;
|
||||
GrGLFunction<GrGLBlendBarrierProc> fBlendBarrier;
|
||||
GrGLFunction<GrGLBlendColorProc> fBlendColor;
|
||||
@ -186,8 +185,6 @@ public:
|
||||
GrGLFunction<GrGLMapBufferRangeProc> fMapBufferRange;
|
||||
GrGLFunction<GrGLMapBufferSubDataProc> fMapBufferSubData;
|
||||
GrGLFunction<GrGLMapTexSubImage2DProc> fMapTexSubImage2D;
|
||||
GrGLFunction<GrGLMemoryBarrierProc> fMemoryBarrier;
|
||||
GrGLFunction<GrGLMemoryBarrierByRegionProc> fMemoryBarrierByRegion;
|
||||
GrGLFunction<GrGLMultiDrawArraysIndirectProc> fMultiDrawArraysIndirect;
|
||||
GrGLFunction<GrGLMultiDrawElementsIndirectProc> fMultiDrawElementsIndirect;
|
||||
GrGLFunction<GrGLPixelStoreiProc> fPixelStorei;
|
||||
|
Loading…
Reference in New Issue
Block a user