Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
4k views

Is it possible to use OpenGL point sprites to simulate billboard sprites?

I was trying to set point sprites in OpenGL to change size with distance just as a billboarded sprite would, but I can't get the values in GL_POINT_DISTANCE_ATTENUATION_ARB to do anything useful. Is ...
4
votes
1answer
249 views

GLSL PointSprite for particle system

I'm using an ParticleSystem with PointSprites (inspired by the Cocos2D Source). But I wonder how to rebuild the functionality for OpenGL ES 2.0 glEnable(GL_POINT_SPRITE_OES); ...
3
votes
3answers
93 views

Resizing point sprites based on distance from the camera

I'm writing a clone of Wolfenstein 3D using only core OpenGL 3.3 for university and I've run into a bit of a problem with the sprites, namely getting them to scale correctly based on distance. From ...
3
votes
2answers
875 views

Multi-textured Point Sprites in OpenGL ES2.0 on iOS?

I am trying to make a multi-textured point sprite for an iphone application using OpenGL ES 2.0. I can't find any examples of this on web, and it doesn't seem to be working. Is there some built-in ...
1
vote
2answers
59 views

Can I use Point Sprites in Java3D?

It looks like native support for Point Sprites was planned, but never got implemented in Java3D. Point Sprite RFE Short of adding it to the source code and compiling my own version of Java3D, is ...
1
vote
1answer
279 views

OpenGL point sprites with depth testing - a blending issue?

I am rendering point sprites (using OpenGL ES 2.0 on iOS) as a user's drawing strokes. I am storing these points in vertex buffer objects such that I need to perform depth testing in order for the ...
1
vote
1answer
1k views

how to specify point sprite texture coordinates in OpenGL ES 1.1?

I'm writing a particle system that uses point sprites in OpenGL ES 1.1 on iOS. Everything works great until I try to texture the point sprites... when I render, each sprite is colored by the top left ...
0
votes
1answer
514 views

Using point sprites with direct x. what steps need to be taken?

This is still an outstanding issue. I am trying to get a point sprites system workign render a sun in my world. I noticed another user asking a similar question (with the same code, presumably ...