Sha256: 652075131e6fb785a7f7bc4feb34c1228fb062f89633a2998328ceddbd78d17c
Contents?: true
Size: 787 Bytes
Versions: 2
Compression:
Stored size: 787 Bytes
Contents
module Mittsu class DataTexture def update_specific gl_format = GL::MITTSU_PARAMS[format] gl_type = GL::MITTSU_PARAMS[type] is_image_power_of_two = Math.power_of_two?(image.width) && Math.power_of_two?(image.height) # use manually created mipmaps if available # if there are no manual mipmaps # set 0 level mipmap and then use GL to generate other mipmap levels if !mipmaps.empty? && is_image_power_of_two mipmaps.each_with_index do |mipmap, i| GL.TexImage2D(GL::TEXTURE_2D, i, gl_format, mipmap.width, mipmap.height, 0, gl_format, gl_type, mipmap.data) end else GL.TexImage2D(GL::TEXTURE_2D, 0, gl_format, image.width, image.height, 0, gl_format, gl_type, image.data) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mittsu-opengl-0.5.1 | lib/mittsu/opengl_implementation/textures/data_texture.rb |
mittsu-opengl-0.5.0 | lib/mittsu/opengl_implementation/textures/data_texture.rb |