GrImageContext
- class GrImageContext
Methods
Safely downcast to a
GrDirectContext
.The 3D API backing this context.
Retrieve the default
GrBackendFormat
for a givenColorType
and renderability.Increment the reference count.
May return true if the caller is the only owner.
Decrement the reference count.
Methods
- GrImageContext.__init__(*args, **kwargs)
- GrImageContext.asDirectContext(self: skia.GrContext_Base) GrDirectContext
Safely downcast to a
GrDirectContext
.
- GrImageContext.backend(self: skia.GrContext_Base) skia.GrBackendApi
The 3D API backing this context.
- GrImageContext.compressedBackendFormat(self: skia.GrContext_Base, arg0: SkTextureCompressionType) skia.GrBackendFormat
- GrImageContext.defaultBackendFormat(self: skia.GrContext_Base, arg0: SkColorType, arg1: skia.GrRenderable) skia.GrBackendFormat
Retrieve the default
GrBackendFormat
for a givenColorType
and renderability. It is guaranteed that this backend format will be the one used by theGrContext
ColorType
and SurfaceCharacterization-basedcreateBackendTexture()
methods.The caller should check that the returned format is valid.
- GrImageContext.ref(self: skia.RefCntBase) None
Increment the reference count.
Must be balanced by a call to
unref()
.
- GrImageContext.threadSafeProxy(self: skia.GrContext_Base) GrContextThreadSafeProxy
- GrImageContext.unique(self: skia.RefCntBase) bool
May return true if the caller is the only owner.
Ensures that all previous owner’s actions are complete.
- GrImageContext.unref(self: skia.RefCntBase) None
Decrement the reference count.
If the reference count is 1 before the decrement, then delete the object. Note that if this is the case, then the object needs to have been allocated via new, and not on the stack.