Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
256 views

Why is everyone still constructing parent-child views using the render method?

I dare call myself a backbone hacker. I know what the framework can do, and where its limitations are. I also have some experience with a few templating frameworks. I've seen many tutorials where ...
3
votes
3answers
7k views

Flex 3.5.0; Update ComboBox display list upon dataprovider change

I have two related ComboBoxes ( continents, and countries ). When the continents ComboBox changes I request a XML from a certain URL. When I receive that XML i change the DataProvider for the ...
2
votes
1answer
119 views

Anything wrong using display lists in OpenGL for a single object?

First of all, I know that displays lists were deprecated in OpenGL 3.0 and removed on 3.1. But I still have to use them on this university project for which OpenGL 2.1 is being used. Every article or ...
1
vote
1answer
264 views

OpenGL display lists: For drawing 2D sprites?

Is it a good or bad idea to use display lists for drawing textured rectangles? The display list would be re-compiled only if the texture the sprite is using changes.
1
vote
1answer
168 views

Display Lists and OpenGL states

This is strange. When I render my mesh, the fps is a stable 130 or so. When I put it into a display list, the fps DROPS to little more than 15. When I take out the few material and texturing ...
1
vote
1answer
90 views

Actionscript Receiving Mouse Events For Lower Indexed And Partially Covered Display Objects?

i have 2 sprites on stage. bottomSprite is added to the display list first, followed by topSprite. topSprite partially covers bottomSprite. i've added an event listener to bottomSprite for ...
1
vote
1answer
320 views

How do VBOs/FBOs/DisplayLists work in Haskell's OpenGl bindings?

Haskell is about computation by calculation of values. DisplayLists / FBOs / VBOs are very very stateful by nature. I.e. "give me a display list / buffer object". How do these bindings work in ...
0
votes
1answer
168 views

OpenGL VBO / DisplayList in a game environment

I am working on a little game (using OS X Lion, Xcode 4, Objective-C / C++, Cocoa, OpenGL). It's a rather simple concept. I've got some objects that move around inside a two-dimensional array. Now i ...
0
votes
0answers
67 views

OpenGL display list

Im currently programming for the Nintendo DS using devkitpro, libnds. It uses OpenGL, and displays 3d models with display lists. I was wondering if there was a way of knowing how many polygons a ...
0
votes
2answers
55 views

Actionscript without display list (update/draw loop)

I've been working with several different programming languages recently, and I've come to the conclusion that I don't really like the display list in Actionscript. I would much rather have an ...
0
votes
0answers
59 views

Flash display list paranormal activity, SimpleButton instances appearing

I have a MovieClip, with 3 layers. 1 (top) is 'actionscript' with no items, as Flash prescribes. Layer 2 has a TLF text piece. Layer 3 has some bitmaps. In the backing class file, I have hooked ...
0
votes
2answers
82 views

display lists wont run

I am trying to create a tool that will draw a shape in openGL and then modify the values of the properties of that shape in a windows form. So if my shape is a rectangle, I will create a form that ...
0
votes
1answer
45 views

listening to events down the display list in children components

I'm creating a swf, that has a parent class and a child class. The parent class has a button, that dispatches a custom event and I want the child class to list for this event, but when I dispatch the ...
0
votes
3answers
70 views

displaylist of children in parent model one-to-many

I am learning django admin, i have to models with a one-to-many relation between them. I got something like Manufacturer model where i can add different car manufacturers, and Car model for adding ...
0
votes
2answers
141 views

Passing parameters to OpenGL display lists

I was wondering if there is any way (standard or a clever trick) to pass parameters to an OpenGL display list. Let me show an example to clarify what I mean. Suppose we have the following code: ...
0
votes
1answer
67 views

Flex 4 spark - Best way to monitor change of a component's displaylist?

I'm working on a drag-drop solution, and acting when a item is dropped on the current target (let's say an "intelligent chess-board") is a breeze, as the board fires DragEvents when items are hovering ...