Python bgl.GL_LINEAR Examples
The following are 4
code examples of bgl.GL_LINEAR().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
bgl
, or try the search function
.
Example #1
Source File: viewport.py From BlendLuxCore with GNU General Public License v3.0 | 6 votes |
def _update_texture(self, scene): if self._transparent: gl_format = bgl.GL_RGBA internal_format = bgl.GL_RGBA32F else: gl_format = bgl.GL_RGB internal_format = bgl.GL_RGB32F bgl.glActiveTexture(bgl.GL_TEXTURE0) bgl.glBindTexture(bgl.GL_TEXTURE_2D, self.texture_id) bgl.glTexImage2D(bgl.GL_TEXTURE_2D, 0, internal_format, self._width, self._height, 0, gl_format, bgl.GL_FLOAT, self.buffer) bgl.glTexParameteri(bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_WRAP_S, bgl.GL_CLAMP_TO_EDGE) bgl.glTexParameteri(bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_WRAP_T, bgl.GL_CLAMP_TO_EDGE) bgl.glTexParameteri(bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_MIN_FILTER, bgl.GL_NEAREST) mag_filter = bgl.GL_NEAREST if scene.luxcore.viewport.mag_filter == "NEAREST" else bgl.GL_LINEAR bgl.glTexParameteri(bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_MAG_FILTER, mag_filter) bgl.glBindTexture(bgl.GL_TEXTURE_2D, NULL)
Example #2
Source File: muv_texproj_ops.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def draw_texture(self, context): sc = context.scene # no textures are selected if sc.muv_texproj_tex_image == "None": return # setup rendering region rect = get_canvas(context, sc.muv_texproj_tex_magnitude) positions = [ [rect.x0, rect.y0], [rect.x0, rect.y1], [rect.x1, rect.y1], [rect.x1, rect.y0] ] tex_coords = [[0.0, 0.0], [0.0, 1.0], [1.0, 1.0], [1.0, 0.0]] # get texture to be renderred img = bpy.data.images[sc.muv_texproj_tex_image] # OpenGL configuration bgl.glEnable(bgl.GL_BLEND) bgl.glEnable(bgl.GL_TEXTURE_2D) if img.bindcode: bind = img.bindcode bgl.glBindTexture(bgl.GL_TEXTURE_2D, bind) bgl.glTexParameteri( bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_MIN_FILTER, bgl.GL_LINEAR) bgl.glTexParameteri( bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_MAG_FILTER, bgl.GL_LINEAR) bgl.glTexEnvi( bgl.GL_TEXTURE_ENV, bgl.GL_TEXTURE_ENV_MODE, bgl.GL_MODULATE) # render texture bgl.glBegin(bgl.GL_QUADS) bgl.glColor4f(1.0, 1.0, 1.0, sc.muv_texproj_tex_transparency) for (v1, v2), (u, v) in zip(positions, tex_coords): bgl.glTexCoord2f(u, v) bgl.glVertex2f(v1, v2) bgl.glEnd()
Example #3
Source File: ui.py From addon_common with GNU General Public License v3.0 | 5 votes |
def buffer_image(self): if not self.loaded: return if self.buffered: return if self.deleted: return bgl.glBindTexture(bgl.GL_TEXTURE_2D, self.texture_id) bgl.glTexEnvf(bgl.GL_TEXTURE_ENV, bgl.GL_TEXTURE_ENV_MODE, bgl.GL_MODULATE) bgl.glTexParameterf(bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_MAG_FILTER, bgl.GL_NEAREST) bgl.glTexParameterf(bgl.GL_TEXTURE_2D, bgl.GL_TEXTURE_MIN_FILTER, bgl.GL_LINEAR) # texbuffer = bgl.Buffer(bgl.GL_BYTE, [self.width,self.height,self.depth], image_data) image_size = self.image_width*self.image_height*self.image_depth texbuffer = bgl.Buffer(bgl.GL_BYTE, [image_size], self.image_flat) bgl.glTexImage2D(bgl.GL_TEXTURE_2D, 0, bgl.GL_RGBA, self.image_width, self.image_height, 0, bgl.GL_RGBA, bgl.GL_UNSIGNED_BYTE, texbuffer) del texbuffer bgl.glBindTexture(bgl.GL_TEXTURE_2D, 0) self.buffered = True
Example #4
Source File: io.py From phobos with BSD 3-Clause "New" or "Revised" License | 5 votes |
def execute(self, context): """ Args: context: Returns: """ loadModelsAndPoses() modelsPosesColl = bUtils.getPhobosPreferences().models_poses for model_pose in modelsPosesColl: if model_pose.name not in bpy.data.images.keys(): if model_pose.type == 'robot_name': bpy.data.images.new(model_pose.name, 0, 0) elif 'robot_pose': if model_pose.preview != '': if os.path.split(model_pose.preview)[-1] in bpy.data.images.keys(): bpy.data.images[os.path.split(model_pose.preview)[-1]].reload() im = bpy.data.images.load(model_pose.preview) model_pose.name = im.name # im.name = model_pose.name im.gl_load(0, bgl.GL_LINEAR, bgl.GL_LINEAR) else: bpy.data.images.new(model_pose.name, 0, 0) else: bpy.data.images[model_pose.name].reload() bpy.data.images[model_pose.name].gl_load(0, bgl.GL_LINEAR, bgl.GL_LINEAR) return {'FINISHED'}