#
# glmask_funcs.py - OpenGL 2.1 functions used by the GLMask class.
#
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
"""This module provides functions which are used by the :class:`.GLMask`
class to render :class:`.Image` overlays in an OpenGL 2.1 compatible manner.
"""
import numpy as np
import fsleyes.gl.shaders as shaders
from . import glvolume_funcs
[docs]def init(self):
"""Calls the :func:`compileShaders` and :func:`updateShaderState`
functions.
"""
self.shader = None
compileShaders( self)
updateShaderState(self)
[docs]def destroy(self):
"""Destroys the shader programs. """
self.shader.destroy()
self.shader = None
[docs]def compileShaders(self):
"""Loads the vertex/fragment shader source code, and creates a
:class:`.GLSLShader` program.
"""
if self.shader is not None:
self.shader.destroy()
vertSrc = shaders.getVertexShader( 'glvolume')
fragSrc = shaders.getFragmentShader('glmask')
self.shader = shaders.GLSLShader(vertSrc, fragSrc)
[docs]def updateShaderState(self):
"""Updates all shader program variables. """
if not self.ready():
return
opts = self.opts
shader = self.shader
imageShape = np.array(self.image.shape[:3])
vvx = self.imageTexture.voxValXform
shader.load()
changed = False
changed |= shader.set('imageTexture', 0)
changed |= shader.set('voxValXform', vvx)
changed |= shader.set('imageShape', imageShape)
changed |= shader.set('useSpline', opts.interpolation == 'spline')
changed |= shader.set('threshold', self.getThreshold())
changed |= shader.set('invert', opts.invert)
changed |= shader.set('colour', self.getColour())
shader.unload()
return changed
[docs]def draw2D(self, zpos, axes, xform=None, bbox=None):
"""Draws a 2D slice at the given ``zpos``. Uses the
:func:`.gl21.glvolume_funcs.draw2D` function.
"""
self.shader.load()
glvolume_funcs.draw2D(self, zpos, axes, xform, bbox)
self.shader.unloadAtts()
self.shader.unload()
[docs]def drawAll(self, axes, zposes, xforms):
"""Draws all specified slices. Uses the
:func:`.gl21.glvolume_funcs.drawAll` function.
"""
self.shader.load()
glvolume_funcs.drawAll(self, axes, zposes, xforms)
self.shader.unloadAtts()
self.shader.unload()