type t
Type of a 2D texture
This module provides an abstraction of OpenGL 2D textures that can be used for 2D rendering (with sprites) or 3D rendering when passed to a GLSL program.
type t
val create : (module RenderTarget.T with type t = 'a) -> 'a -> ?mipmaps:[ `AllEmpty | `Empty of int | `AllGenerated | `Generated of int | `None] -> [< `File of string | `Image of Image.t | `Empty of OgamlMath.Vector2i.t] -> t
Texture_error
if the requested size exceeds the maximal texture size allowed by the context.val size : t -> OgamlMath.Vector2i.t
val minify : t -> MinifyFilter.t -> unit
val magnify : t -> MagnifyFilter.t -> unit
val wrap : t -> WrapFunction.t -> unit
val mipmap_levels : t -> int
val mipmap : t -> int -> Texture2DMipmap.t
Invalid_argument
if the requested level is out of bounds
val bind : t -> int -> unit
val to_color_attachment : t -> Attachment.ColorAttachment.t