Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
806 views

In a GLSL fragment shader, how to access to texel at a specific mipmap level?

I am using OpenGL to do some GPGPU computations through the combination of one vertex shader and one fragment shader. I need to do computations on a image at different scale. I would like to use ...
4
votes
3answers
289 views

Identify mip map levels by coloring different screen areas in GLSL

I don't wish to bombard this post with code. I've got a main file, fragment shader and a vertex shader file. I need to know the steps that I should take to color the screen according to mipmap ...
4
votes
3answers
1k views

Does it make sense to use own mipmap creation algorithm for OpenGL textures?

I was wondering if the quality of texture mipmaps would be better if I used my own algorithm for pre-generating them, instead of the built-in automatic one. I'd probably use a slow but pretty ...
3
votes
2answers
377 views

how to make opengl mipmaps sharper?

NOTE: long rambling introduction, then specific questions at the end I am rewriting an opengl-based gis/mapping program. Among other things, the program allows you to load raster images of nautical ...
3
votes
2answers
877 views

GPU Manual Mipmap Generation [OpenGL 2.x]

i want use a specific customized algorithm to generate mipmaps for some renderable textures (R16F & RGBA16F). All needed textures' mipmaps are pre-enabled by using glGenerateMipmapEXT(). The ...
2
votes
1answer
80 views

looking for a mipmap generator in java

I need to generate a mip map from an arbitrary image (different formats, not necessarily squared) in java. Because I don't like to reinvent the wheel I spend some time looking for a stand alone java ...
2
votes
1answer
98 views

OpenGL es, controlling VM usage when generating and rendering MIP maps

Is it possible to create a MIP map in open gl es 1.x that only loads the texture resolution it is currently rendering? So instead of loading all the textures resolutions from the largest to the ...
2
votes
4answers
232 views

OpenGL textured image is blurry

I am trying to create a mipmapped textured image that represents elevation. The image must be 940 x 618. I realize that my texture must have a width and height of a power of 2. As of now I have tried ...
2
votes
1answer
817 views

Creating and using my own mipmap of a texture atlas

I'm currently using the automatic mipmap generation (C# + OpenTK): GL.GenerateMipmap(GenerateMipmapTarget.Texture2D); The texture I'm using is tiled into blocks of 16px². So my questions would be: ...
1
vote
1answer
108 views

HLSL tex2D() - where does the gradient come from?

When I sample a texture in a pixel shader the texture unit needs to select a mipmap based on the texture gradient around the pixel being shaded. There's a function "tex2Dgrad()" which allows me to ...
1
vote
2answers
156 views

How does a GLSL sampler determine the minification, and thus the mipmap level, of a texture?

I am working with OpenGL ES (via WebGL), but I think this question is applicable to the full OpenGL profile as well. Suppose I create an OpenGL texture with full mipmap levels, and I set its ...
1
vote
0answers
171 views

JOGL shimmering / texture flickering problem

i got a problem with my textures in a JOGL program. the textures i draw onto a cube which is taken from a displaylist are flickering. here is a video which shows the problem: ...
1
vote
1answer
194 views

Is regeneration of MipMaps when using Render to Target via FBOs required?

Assuming mipmapping is desirable: I call glGenerateMipmapEXT(GL_TEXTURE_2D); when I first allocate the render target for my FBO. Do I have to call this again when I've completed rendering to it to ...
1
vote
2answers
137 views

Where is GL_TEXTURE_MIN_LOD on the iPhone?

Is there an equivalent ? Is it an iPhone limitation or an OpenGL version limitation ? I can't find the mipmap level feature anywhere.
1
vote
3answers
518 views

Using mipmaps results in garbage textures

I'm creating my own mipmaps when creating textures, and as soon as I enable mipmaps via GL_LINEAR_MIPMAP_NEAREST (or anything MIPMAP), the textures are just a very dark, blurry mess. If I switch to ...
1
vote
2answers
157 views

OpenGL: Accurate textures possible?

This is for a 2D game with OpenGL: Is it with using OpenGL possible to display a texture absolutely unfiltered, not streched or blurred? So that when I have a BMP and convert it into an OpenGL ...
1
vote
1answer
565 views

How to copy CUDA generated PBO to Texture with Mipmapping

I'm trying to copy a PBO into a Texture with automipmapping enabled, but it seems only the top level texture is generated (in other words, no mipmapping is occuring). I'm building a PBO using ...
1
vote
1answer
392 views

GL: Autogenerating some, but not all, mipmap levels?

I have a texture that I'd like to have relatively fine control over for the two or three largest mipmap levels, but at smaller sizes, I'm happy to have GL generate the mipmaps for me based on the ...
1
vote
1answer
996 views

Blurring the depth buffer in OpenGL - how to access mipmap levels in a fragment shader?

I'm trying to blur a depth texture by blurring & blending mipmap levels in a fragment shader. I have two frambuffer objects: 1) A color frambuffer with a depth renderobject attached. 2) A z ...
1
vote
4answers
475 views

How to check for mip-map availability in OpenGL?

Recently I bumped into a problem where my OpenGL program would not render textures correctly on a 2-year-old Lenovo laptop with an nVidia Quadro 140 card. It runs OpenGL 2.1.2, and GLSL 1.20, but when ...
1
vote
2answers
852 views

OpenGL Mipmapping: how does OpenGL decide on map level?

I am having trouble implementing mipmapping in OpenGL. I am using OpenFrameworks and have modified the ofTexture class to support the creation and rendering of mipmaps. The following code is the ...
1
vote
2answers
706 views

OpenGL billboard interpolation issue

I have a billboard quad with a texture mapped onto it. This is basically some text with transparency. The billboard floats forwards and backwards from the camera's perspective. As the billboard ...
0
votes
1answer
38 views

MipMap texturing in OpenGL

First I tried to read in a ppm file and use that for my texture, however I wasn't sure if that is where my problem lies (in reading files). So I hardcoded a small 4x4 image (random colors) and used ...
0
votes
1answer
57 views

OpenGL mipmap issues

I have mipmapping working properly. But for some reason, after I apply the texture, all other objects in my application take on what seems to be the average color of the texture. Even the HUD. Is ...
0
votes
1answer
105 views

How to disable mipmaps in OpenGL

I am making 2D sprite engine in OpenGL and I want to disable mipmaps, as I do not need them. When I call: glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, internal->internal_w, internal->internal_h, 0, ...
0
votes
1answer
43 views

OpenGL mipmapping: level outside the range?

I'm going deeper on OpenGL texture mipmapping. I noticed in the specification that mipmap levels less than zero and greater than log2(maxSize) + 1 are allowed. Effectively TexImage2D doesn't specify ...
0
votes
1answer
73 views

How to get a list of MipMap surfaces from a d3d10 texture2d

In D3D10 there is a method I can use for getting back a single surface from a Texture2D with one mipmap lvl. { IDXGISurface* surface; texture2D->QueryInterface(__uuidof(IDXGISurface), ...
0
votes
1answer
133 views

Mac OS X Lion + xCode 4.1 + texturetool = forced mipmaps?

After upgrading to Lion and re-building the project I noticed that Apple's texturetool started to generate mipmaps, although I don't have -m flag in my scripts. I know that mipmaps are useful ...
0
votes
1answer
71 views

Multi-Scale/Resolution C++ Container

I'm looking for a C++ array/vector-like container (template is a plus) that automatically builds an internal multi-resolution representation (mipmap) of the data preferrably using downsampling by 2 ...
0
votes
1answer
277 views

JOGL mipmaps and texture shimmering

I've a wall and a brick texture in my OpenGL 2 scene that keeps shimmering and flashing no matter what I set. When I'm zoomed in close (and can see clearly the texture), then the flashing and ...
0
votes
1answer
121 views

Summed area table vs Mipmap

Summed area table is a pre-filtering technique to avoid aliasing in texture map. I would like to know how it works and what are the advantages and disadvantages over Mipmap. Thanks
0
votes
1answer
219 views

OpenGL Mipmaps and SOIL Flag

So i got the SOIL loading my images now, but it says you can set a flag for the MipMap generation. I set the flag and as far as I know OpenGL does the rest when it comes to using the MipMaps at ...
0
votes
2answers
586 views

glGenerateMipmap- identifier not found?

I'm trying to implement glGenerateMipmap so I can go on to recolour each level of a cube I've rendered, except the program won't compile giving the error 'error C3861: 'glGenerateMipmap': identifier ...
0
votes
3answers
123 views

Blank texture when disabling mipmaping?

I do not master all the subtlety of OpenGL so sorry if my question is not precise enough On iPhone I load a texture (png image) like this glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, iTextureSize.width, ...
0
votes
2answers
59 views

Mipmapping issue with textures rendered on to a flat quad (OpenGL)

I am having what seems to be a mipmapping problem when rendering textures on to a flat quad. At some camera positions the object looks fine, but then at others it gets very fuzzy. Unfortunately I ...
0
votes
2answers
210 views

MipMapping problems in OpenGL

I'm loading 3D objects (obj or 3ds or collada files) into my openGL application. The 3 environment is quite large (a few hundred metres in all axis'). My problem is that smaller 3D objects (i.e. in ...
0
votes
1answer
145 views

D3D Failed to generate mipmap automatically on some cards!

On most of computers my program performs fine. But on one computer it failed to generate mipmap. I created a texture with D3DUSAGE_AUTOGENERATEMIPMAP, D3DCAPS2_CANAUTOGENMIPMAP says yes and ...
0
votes
2answers
237 views

Is it possible to use custom mipmap sizes?

i am currently working on some kind of virtual texture implementation. The mipmap levels are used as a level of detail controlling structure. (Every texel in the virtual texture relates to a block of ...
0
votes
1answer
238 views

OpenGL mipmaps cut out?

Is it possible to cut out the last 3 miplevels, so it wont use higher miplevels than max-3 ? I have problems with high miplevels, they look really bad no matter how much i pad my textures.
0
votes
1answer
907 views

OpenGL - Copy texture from screen smaller than that screen

I'm trying to capture the screen to a texture with a lower resolution than the screen itself (to render back onto the screen and create a blur/bloom effect), and it doesn't work quite well. I ...