User DavidG - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:40:57Z http://stackoverflow.com/feeds/user/25893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1550657/android-image-viewer-from-app 2 Android Image Viewer from App DavidG 2009-10-11T13:12:00Z 2009-10-12T09:52:11Z <p>I'm trying to launch an image which is written to my application directory with the builtin Android image viewer. This image has been written in a different part of the app to the app directory. When getting the following file:</p> <p><code>super.getFilesDir() + "/current.png"</code></p> <p>File.exists() returns true.</p> <p>How can i launch the builtin Android image viewer to view this file? Currently i'm doing:</p> <pre><code>File f = new File(super.getFilesDir()+"/current.png"); uri = Uri.parse("file://"+super.getFilesDir()+"/current.png"); startActivity(new Intent(Intent.ACTION_VIEW, uri)); </code></pre> <p>And it keeps churning out:</p> <blockquote> <p>10-11 13:09:24.367: INFO/ActivityManager(564): Starting activity: Intent { act=android.intent.action.VIEW dat=file:///data/data/com.davidgoemans.myapp/files/current.png } 10-11 13:09:24.367: ERROR/myapp(2166): Exception occuredandroid.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=file:///data/data/com.davidgoemans.myapp/files/current.png }</p> </blockquote> <p>irrespective of what i change the uri schema to ( eg, content://, file://, media://, image:// ).</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/222746#222746 2 Answer by DavidG for C++ IDE for Linux? DavidG 2008-10-21T17:38:20Z 2009-10-07T12:03:55Z <p>I really suggest <a href="http://www.codeblocks.org" rel="nofollow">codeblocks</a>. It's not as heavy as Eclipse and it's got Visual Studio project support.</p> http://stackoverflow.com/questions/880227/what-is-the-minimum-i-have-to-do-to-create-an-rpm-file/892894#892894 0 Answer by DavidG for What is the minimum I have to do to create an RPM file? DavidG 2009-05-21T13:20:54Z 2009-05-21T13:20:54Z <p>This can't be the only way? I'm also looking to do exactly this, i've built a completely cross platform app without using a makefile, but it has some system dependencies, surely i must be able to make an RPM or a DEB file that just makes sure the dep's are installed and copies my app to /usr/bin or something i specify?</p> http://stackoverflow.com/questions/205522/opengl-subtexturing 0 openGL SubTexturing DavidG 2008-10-15T16:56:32Z 2009-04-28T01:43:24Z <p>I have image data and i want to get a sub image of that to use as an opengl texture. </p> <pre><code>glGenTextures(1, &amp;m_name); glGetIntegerv(GL_TEXTURE_BINDING_2D, &amp;oldName); glBindTexture(GL_TEXTURE_2D, m_name); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, m_width, m_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, m_data); </code></pre> <p>How can i get a sub image of that image loaded as a texture. I think it has something to do with using glTexSubImage2D, but i have no clue how to use it to create a new texture that i can load. Calling: </p> <pre><code>glTexSubImage2D(GL_TEXTURE_2D, 0, xOffset, yOffset, xWidth, yHeight, GL_RGBA, GL_UNSIGNED_BYTE, m_data); </code></pre> <p>doe nothing that i can see, and calling glCopyTexSubImage2D just takes part of my framebuffer. Thanks</p> http://stackoverflow.com/questions/618829/opengl-gldrawelements-with-interleaved-buffers 1 openGL glDrawElements with interleaved buffers DavidG 2009-03-06T13:20:31Z 2009-03-06T13:34:03Z <p>Thus far i have only used glDrawArrays and would like to move over to using an index buffer and indexed triangles. I am drawing a somewhat complicated object with texture coords, normals and vertex coords. All this data is gathered into a single interleaved vertex buffer and drawn using calls similar to ( Assuming all the serup is done correctly ):</p> <pre><code>glVertexPointer( 3, GL_FLOAT, 22, (char*)m_vertexData ); glNormalPointer( GL_SHORT, 22, (char*)m_vertexData+(12) ); glTexCoordPointer( 2, GL_SHORT, 22, (char*)m_vertexData+(18) ); glDrawElements(GL_TRIANGLES, m_numTriangles, GL_UNSIGNED_SHORT, m_indexData ); </code></pre> <p>Does this allow for m_indexData to also be interleaved with the indices of my normals and texture coords as well as the standard position index array? Or does it assume a single linear list of inidices that apply to the entire vertex format ( POS, NOR, TEX )? If the latter is true, how is it possible to render the same vertex with different texture coords or normals?</p> <p>I guess this question could also be rephrased into: if i had 3 seperate indexed lists ( POS, NOR, TEX ) where the latter 2 cannot be rearranged to share the same index list as the first, what is the best way to render that.</p> http://stackoverflow.com/questions/594521/stl-iterator-with-custom-template 2 STL iterator with custom template DavidG 2009-02-27T12:17:07Z 2009-02-27T12:53:43Z <p>Hi,</p> <p>i have the following template method,</p> <pre><code>template &lt;class T&gt; void Class::setData( vector&lt;T&gt; data ) { vector&lt;T&gt;::iterator it; } </code></pre> <p>and i'm getting the following compilation error ( XCode/gcc )</p> <blockquote> <p>error: expected `;' before 'it'</p> </blockquote> <p>i found someone else with a similar problem <a href="http://www.codeguru.com/forum/archive/index.php/t-221670.html" rel="nofollow">here (read down to see it's the same even though it starts out with a different issue)</a> but they seem to have resolved by updating Visual Studio. This makes me guess that it is a compiler issue and that it should compile, is that correct? Iteration via indexing from 0 to size works, however it is not the way i would prefer to implement this function. Is there another way around this? Thanks</p> http://stackoverflow.com/questions/434286/is-there-a-command-in-terminal-can-build-and-install-the-iphone-app-in-simulator/487607#487607 2 Answer by DavidG for is there a command in terminal can build and install the iphone app in simulator without launching from xcode DavidG 2009-01-28T13:26:32Z 2009-01-28T13:26:32Z <p>Hey, i found out that you can do it with:</p> <pre><code>xcodebuild -configuration Release -sdk iphonesimulator2.2 </code></pre> <p>This makes a simulator build with version 2.2 ( you can use <code>xcodebuild -showsdks</code> to list what u have avail ). I'm stuck with a problem of trying to get it to launch on the phone. xcodebuild -install doesn't seem to do anything for me :S Any assistance?</p> http://stackoverflow.com/questions/272157/lighting-issues-in-opengl 1 Lighting issues in OpenGL DavidG 2008-11-07T14:07:36Z 2009-01-27T15:02:56Z <p>I have a triangle mesh that has no texture, but a set color ( sort of blue ) and alpha ( 0.7f ). This mesh is run time generated and the normals are correct. I find that with lighting on, the color of my object changes as it moves around the level. Also, the lighting doesn't look right. When i draw this object, this is the code:</p> <pre><code>glEnable( GL_COLOR_MATERIAL ); float matColor[] = { cur-&gt;GetRed(), cur-&gt;GetGreen(), cur-&gt;GetBlue(), cur-&gt;GetAlpha() }; float white[] = { 0.3f, 0.3f, 0.3f, 1.0f }; glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, matColor); glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, white); </code></pre> <p>Another odd thing i noticed is that the lighting fails when i disable GL_FRONT_AND_BACK and use just GL_FRONT or GL_BACK. Here is my lighting set up ( done once at beginning of renderer ):</p> <pre><code>m_lightAmbient[] = { 0.2f, 0.2f, 0.2f, 1.0f }; m_lightSpecular[] = { 1.0f, 1.0f, 1.0f, 1.0f }; m_lightPosition[] = { 0.0f, 1200.0f, 0.0f, 1.0f }; glLightfv(GL_LIGHT0, GL_AMBIENT, m_lightAmbient); glLightfv(GL_LIGHT0, GL_SPECULAR, m_lightSpecular); glLightfv(GL_LIGHT0, GL_POSITION, m_lightPosition); </code></pre> <p>EDIT: I've done a lot to make the normals "more" correct ( since i'm generating the surface myself ), but the objects color still changes depending where it is. Why is this? Does openGL have some special environment blending i don't know about? EDIT: Turns out the color changing was because a previous texture was on the texture stack, and even though it wasn't being drawn, glMaterialfv was blending with it.</p> http://stackoverflow.com/questions/346323/xorg-loading-an-image 0 Xorg loading an image DavidG 2008-12-06T14:30:00Z 2008-12-06T16:14:17Z <p>I'm starting to code up my own window manager, and was wondering how to use the xorg api to get from raw image data ( such as the data given by libpng ), into an Xorg Pixmap or something drawable by Xorg?</p> http://stackoverflow.com/questions/272157/lighting-issues-in-opengl/277381#277381 0 Answer by DavidG for Lighting issues in OpenGL DavidG 2008-11-10T08:54:14Z 2008-11-10T08:54:14Z <p>@sebastion: multiple draw calls, each object gets a glDrawArrays. some are textured, some colored, all with normals. gl init code is: glMatrixMode(GL_MODELVIEW);</p> <pre><code>// Vertices! glEnableClientState(GL_VERTEX_ARRAY); // Depth func glEnable(GL_DEPTH_TEST); glDepthFunc( GL_LESS ); // Enable alpha blending glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // Lighting glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); glLightfv(GL_LIGHT0, GL_AMBIENT, m_lightAmbient); glLightfv(GL_LIGHT0, GL_SPECULAR, m_lightSpecular); glLightfv(GL_LIGHT0, GL_POSITION, m_lightPosition); // Culling glDisable( GL_CULL_FACE ); // Smooth Shading glShadeModel(GL_SMOOTH); m_glSetupDone = true; </code></pre> <p>after this i have some camera set up, but thats completely standard, projection mode, frustum, modelview, look at, translate.</p> http://stackoverflow.com/questions/242817/xcode-preprocessor-macros 1 Xcode Preprocessor Macros DavidG 2008-10-28T10:35:24Z 2008-10-28T23:43:40Z <p>In Xcode, I can edit my preprocessor macros in the project settings. I want to create a macro that refers to an environment variable. Basically, I want to be able to refer to $SRC_ROOT in my code. What I currently have in my macros is:</p> <pre><code>SRC_ROOT=${SRC_ROOT} </code></pre> <p>but it isn't working.</p> http://stackoverflow.com/questions/236113/what-power-do-i-have-over-my-license 9 What power do I have over my license DavidG 2008-10-25T08:39:30Z 2008-10-25T16:34:28Z <p>Say for example, I've written some code under GPL 3. My company wants to use that code for a commercial product. Am I allowed to then say to them that they can use it under LGPL/MIT or any other license? If so, would I then have to change the included header at the top of each file? If so, what is stopping someone else from changing the license on my code?</p> http://stackoverflow.com/questions/234866/variable-naming-conventions-in-c/235013#235013 0 Answer by DavidG for Variable Naming Conventions in C++ DavidG 2008-10-24T19:44:11Z 2008-10-24T19:44:11Z <p>Its all down to personal preference. I've worked for 2 companies both with similar schemes, where member vars are named as m_varName. I've never seen Hungarian notation in use at work, and really don't like it, but again down to preference. My general feel is that IDE's should take care of telling u what type it is, so as long as the name is descriptive enough of what it does ( m_color, m_shouldBeRenamed ), then thats ok. The other thing i do like is a difference between member variable, local var and constant naming, so its easy to see what is happening in a function and where the vars come from. Member: m_varName Const: c_varName local: varName</p> http://stackoverflow.com/questions/226970/whats-the-best-open-source-game-ever/227327#227327 5 Answer by DavidG for What's the best open source game ever? DavidG 2008-10-22T20:01:23Z 2008-10-22T20:01:23Z <p><a href="http://wormux.org/wiki/en/index.php" rel="nofollow">Wormux</a> really has a fantastic architechture. i'm a professional game developer and i think that these guys really might be too. the quality of the work smells of years of game dev experience.</p> http://stackoverflow.com/questions/227236/convert-word-doc-to-html-programmatically-in-java/227280#227280 -2 Answer by DavidG for Convert Word doc to HTML programmatically in Java DavidG 2008-10-22T19:48:46Z 2008-10-22T19:48:46Z <p>You'd have to find the MS word doc specification ( since it is basically a binary dump of whatever is in word at that point in time ), and slowly go through it element by element converting ms word "objects/states" to the html equiv. you might be able to find a script to do it for u since this really isn't fun work and i'd advise against it ( converting file formats or even reading from commercial files on your own is always hard and often incomplete ). PS: just <a href="http://www.google.com/search?client=opera&amp;rls=en&amp;q=doc2html+conv&amp;sourceid=opera&amp;ie=utf-8&amp;oe=utf-8" rel="nofollow">google doc2html</a></p> http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222739#222739 1 Answer by DavidG for Setting up a Programming Environment in Linux DavidG 2008-10-21T17:36:25Z 2008-10-21T17:36:25Z <p>If you want something very easy to use, with ability to import visual studio projects, and a feel much like VS, give <a href="http://www.codeblocks.org" rel="nofollow">Codeblocks</a> a try. Its quick ( since its not Java based ) and in general works well.</p> http://stackoverflow.com/questions/219914/what-use-are-const-pointers-as-opposed-to-pointers-to-const-objects/220025#220025 -1 Answer by DavidG for What use are const pointers (as opposed to pointers to const objects)? DavidG 2008-10-20T21:30:49Z 2008-10-20T21:30:49Z <p>always think of a pointer as an int. this means that</p> <pre><code>object* var; </code></pre> <p>actually can be thought of as</p> <pre><code>int var; </code></pre> <p>so, a const pointer simply means that:</p> <pre><code>const object* var; </code></pre> <p>becomes</p> <pre><code>const int var; </code></pre> <p>and hence u can't change the address that the pointer points too, and thats all. To prevent data change, u must make it a pointer to a const object.</p> http://stackoverflow.com/questions/219928/intro-to-gpu-programming/219993#219993 4 Answer by DavidG for Intro to GPU programming DavidG 2008-10-20T21:23:03Z 2008-10-20T21:23:03Z <p>i'm not sure of the exact question, but this is what i know. </p> <ol> <li>You get programmable vertex and pixel shaders that allow execution of code directly on the GPU to manipulate the buffers that are to be drawn. these langauages ( openGL's GL Shader Lang and High Level Shader Lang - direct x equiv ), are C style syntax, and really easy to use. Some examples of HLSL can be found <a href="http://www.riemers.net/" rel="nofollow">here</a> for XNA game studio and Direct X. I don't have any decent GLSL references, but i'm sure there are a lot around. These shader langauges give an immense amount of power being able to manipulate what gets drawn at a per vertex or per pixel level directly on the graphics card, making things like shadows, lighting and bloom really easy to implement. </li> <li>The second thing that comes to mind is using <a href="http://en.wikipedia.org/wiki/OpenCL" rel="nofollow">openCL</a> to code for the new lines of general purpose GPU's. I'm not sure how to use this, but my understanding is that openCL gives you the beginnings of being able to access processors on both the graphics card and normal cpu. This is not mainstream technology yet, and seems to be driven by apple.</li> <li><a href="http://www.nvidia.com/object/cuda_home.html" rel="nofollow">CUDA</a> seems to be a hot topic. CUDA is nvidia's way of accessing the GPU power. <a href="http://www.gpgpu.org/asplos2008/" rel="nofollow">Here</a> are some intros</li> </ol> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218905#218905 1 Answer by DavidG for Good reasons to prohibit inheritance in Java? DavidG 2008-10-20T15:51:01Z 2008-10-20T15:51:01Z <p>Also, if you are writing a commercial closed source class, you might not want people to be able to change the functionality down the line, especially if u need to give support for it and people have overridden your method and are complaining that calling it gives unexpected results.</p> http://stackoverflow.com/questions/216841/how-does-mono-work 8 How does Mono work DavidG 2008-10-19T19:33:12Z 2008-10-19T23:20:19Z <p>I am a developer who has used C# in Visual Studio with .net, and i have played around a little with Mono on openSUSE Linux, but i don't really understand how it works. If i write an app in Windows on .net, how does this relate to Mono? I can't just execute an a Windows .exe file on Linux without Wine, so it doesn't help me execute apps developed in Windows. Is the purpose purely to have a .net library equivalent on Linux ( and others ) to make cross platform development easier? For example, if i was a business and wanted to reach Linux customers, but really wanted to use .net, then mono should be my choice? Or is there something more that i'm missing?</p> http://stackoverflow.com/questions/216819/how-does-a-debugger-work/216856#216856 2 Answer by DavidG for How does a debugger work? DavidG 2008-10-19T19:42:48Z 2008-10-19T19:42:48Z <p>My understanding is that when you compile an app or dll, whatever it compiles to contains symbols representing the functions and the variables. When you have a Debug build, these symbols are far more detailed than when its a Release build, thus allowing the debugger to give you more information. When you attach the debugger to a process, it looks at which functions are currently being accessed and resolves all the available debugging symbols from here ( since it knows what the internals of the compiled file looks like, it can acertain what might be in the memory, with contents of ints, floats, strings, etc ). Like the first poster said, this information and how these symbols work greatly depends on the environment and the language.</p> http://stackoverflow.com/questions/216748/pros-and-cons-of-using-nested-c-classes-and-enumerations/216815#216815 0 Answer by DavidG for Pros and cons of using nested C++ classes and enumerations? DavidG 2008-10-19T19:13:34Z 2008-10-19T19:13:34Z <p>For me a big con to having it outside is that it becomes part of the global namespace. If the enum or related class only really applies to the class that it's in, then it makes sense. So in the printer case, everything that includes the printer will know about having full access to the enum PRINTER_TYPE, where it doesn't really need to know about it. I can't say i've ever used an internal class, but for an enum, this seems more logical to keep it inside. As another poster has pointed out, it's also a good idea to to use namespaces to group similar items, since clogging the global namespace can really be a bad thing. I have previously worked on projects which are massive and just bringing up an auto complete list on the global namespace takes 20 minutes. In my opinion nested enums and namespaced classes/structs are probably the cleanest approach.</p> http://stackoverflow.com/questions/165404/resources-for-2d-game-physics/215314#215314 1 Answer by DavidG for Resources for 2d game physics DavidG 2008-10-18T17:33:36Z 2008-10-18T17:33:36Z <p><a href="http://gafferongames.wordpress.com/game-physics/spring-physics/" rel="nofollow">This is a great resource</a> for writing your first engine. It's in 3D but it's very easy to convert down to 2D. I know at least one big company that followed this tutorial for their internal engine, and i personally have followed his steps for my own engine. He explains all the basic physics concepts in spring/impulse based physics, and shows you how to write your own intergrater.</p> http://stackoverflow.com/questions/187057/glblendfunc-and-alpha-blending 1 glBlendFunc and alpha blending DavidG 2008-10-09T12:36:02Z 2008-10-12T18:42:22Z <p>I want to know how the glBlendFunc works. For example, i have 2 gl textures, where the alpha is on tex1, i want to have alpha in my final image. Where the color is on tex1, i want the color from tex2 to be.</p> http://stackoverflow.com/questions/187057/glblendfunc-and-alpha-blending/195803#195803 0 Answer by DavidG for glBlendFunc and alpha blending DavidG 2008-10-12T18:12:41Z 2008-10-12T18:12:41Z <p>Sadly, this is for openGL ES on the iPhone, so no shaders, but point taken. My problem was a very simplified version of the questions, i needed to apply a simple color ( incl alpha ), to a part of a defined texture. As Lee pointed out, texture blending is to allow alpha to show up on the framebuffer. The solution was to insist that the artist makes the "action bit" of the texture white, and then assigning a color to the vertices that i render. Something like this.</p> <pre><code>glTexCoordPointer( 2, GL_FLOAT, 0, sprite-&gt;GetTexBuffer() ); glVertexPointer( 3, GL_FLOAT, 0, sprite-&gt;GetVertexBuffer() ); glColorPointer( 4, GL_FLOAT, 0, sprite-&gt;GetColorBuffer() ); glDrawArrays( GL_TRIANGLES, 0, 6 ); // Draw 2 triangles </code></pre> <p>Where even tho it has a texture, having the color means it adds to the texture's color, so where it's an alpha, it remains alpha, and where it is white ( as i had to make it ), it becomes the color of the color pointer at the point.</p> http://stackoverflow.com/questions/179643/optimize-frustum-culling 2 Optimize Frustum Culling DavidG 2008-10-07T17:57:30Z 2008-10-10T22:34:02Z <p>i am writing a game in C++ and have a level consisting of many seperate meshes, each with their own vertex buffer. i am using vmmlib ( brilliant free gl compat. vector/matrix library ) to create my frustum culler and testing it against the bounding sphere of every mesh in the level. sadly my level can consist of up to 800 meshes and iterating through all of them each frame is slow. what is the best way of optimizing the code so that i don't have to look at all of the meshes on every iteration? Bounding volumes inside the frustum?</p> http://stackoverflow.com/questions/181731/texture-sampling-in-open-gl 1 Texture Sampling in Open GL DavidG 2008-10-08T07:50:43Z 2008-10-08T12:42:08Z <p>i need to get the color at a particular coordinate from a texture. There are 2 ways i can do this, by getting and looking at the raw png data, or by sampling my generated opengl texture. Is it possible to sample an opengl texture to get the color (RGBA) at a given UV or XY coord? If so, how?</p> http://stackoverflow.com/questions/179512/does-google-chrome-display-pages-the-same-as-safari/179699#179699 1 Answer by DavidG for Does Google Chrome display pages the same as Safari? DavidG 2008-10-07T18:14:39Z 2008-10-07T18:14:39Z <p>No. This would be a similar question to "Does Chrome Render the same as Konqueror", and altho the Webkit ( HTML Renderer ) versions may be different, the Java script engines are very different between Chrome, Safari and Konqueror. This will affect a lot of Google apps since they are written using javascript heavy stuff (AJAX). This also seems to affect a lot of modern sites, especially ones with complex menu's and editors ( such as this ). In the end it depends how much of the site you are viewing is written with javascript features.</p> http://stackoverflow.com/questions/1550657/android-image-viewer-from-app/1551671#1551671 Comment by DavidG on Android Image Viewer from App DavidG 2009-10-24T16:24:37Z 2009-10-24T16:24:37Z Note: Overriding getType() required me to set the mime type, eg: @Override public String getType(Uri uri) { return &quot;image/png&quot;; } http://stackoverflow.com/questions/1550657/android-image-viewer-from-app/1551671#1551671 Comment by DavidG on Android Image Viewer from App DavidG 2009-10-12T09:02:32Z 2009-10-12T09:02:32Z Thanks, will try this out tonight. I pretty much had that implemented, it just seems like such overkill to execute an application. Great design/architecture, but over complex for basic usage. http://stackoverflow.com/questions/1550657/android-image-viewer-from-app/1550687#1550687 Comment by DavidG on Android Image Viewer from App DavidG 2009-10-11T15:42:08Z 2009-10-11T15:42:08Z Part of the problem is that i'm stuggling to find firm examples of how to server up my app's private file area with a Content Provider or how to use a custom dir on the SD Card to server my files. The Android documentation very vaguely describes the Content Provider procedure, and copy/pasting their XML doesn't build. http://stackoverflow.com/questions/880227/what-is-the-minimum-i-have-to-do-to-create-an-rpm-file/892894#892894 Comment by DavidG on What is the minimum I have to do to create an RPM file? DavidG 2009-05-24T16:36:37Z 2009-05-24T16:36:37Z omf. making a simple .deb is sooo easy. dpkg -b &lt;directory&gt; ... as long as u have a really simple control file. RPMs need to work like that. http://stackoverflow.com/questions/227236/convert-word-doc-to-html-programmatically-in-java/227280#227280 Comment by DavidG on Convert Word doc to HTML programmatically in Java DavidG 2009-04-09T09:26:02Z 2009-04-09T09:26:02Z i did say it was hard and specifications were often incomplete, and advised against it. http://stackoverflow.com/questions/618829/opengl-gldrawelements-with-interleaved-buffers/618869#618869 Comment by DavidG on openGL glDrawElements with interleaved buffers DavidG 2009-03-06T13:53:02Z 2009-03-06T13:53:02Z Just to confirm, the indices used in glDrawElements apply to your entire vertex format, every time a vertex occurs on that mesh it must have the same normal and texture coords? i ask because certain 3D apps export models where a given vertex position might have different normal &amp; texture coords http://stackoverflow.com/questions/594521/stl-iterator-with-custom-template Comment by DavidG on STL iterator with custom template DavidG 2009-03-02T11:26:24Z 2009-03-02T11:26:24Z Of course, it was just an example :) http://stackoverflow.com/questions/594521/stl-iterator-with-custom-template/594630#594630 Comment by DavidG on STL iterator with custom template DavidG 2009-02-27T13:07:28Z 2009-02-27T13:07:28Z wow thanks, awesome link. http://stackoverflow.com/questions/594521/stl-iterator-with-custom-template/594560#594560 Comment by DavidG on STL iterator with custom template DavidG 2009-02-27T12:57:25Z 2009-02-27T12:57:25Z no, my namespaces and includes are in a pre-compiled header http://stackoverflow.com/questions/278429/what-could-cause-a-dynamiccast-to-crash/280031#280031 Comment by DavidG on What could cause a dynamic_cast to crash ? DavidG 2009-02-03T14:12:50Z 2009-02-03T14:12:50Z A really awesome answer. http://stackoverflow.com/questions/272157/lighting-issues-in-opengl/277381#277381 Comment by DavidG on Lighting issues in OpenGL DavidG 2008-11-10T09:52:03Z 2008-11-10T09:52:03Z i'm disabling back face culling here just to test http://stackoverflow.com/questions/272157/lighting-issues-in-opengl/277421#277421 Comment by DavidG on Lighting issues in OpenGL DavidG 2008-11-10T09:48:47Z 2008-11-10T09:48:47Z i've gone now to the lengths of disabling the transparency. still getting no lighting. :S http://stackoverflow.com/questions/272157/lighting-issues-in-opengl/272171#272171 Comment by DavidG on Lighting issues in OpenGL DavidG 2008-11-07T15:18:32Z 2008-11-07T15:18:32Z but surely then it would work with just 1 of GL_FRONT or GL_BACK... which it doesnt. http://stackoverflow.com/questions/272157/lighting-issues-in-opengl/272258#272258 Comment by DavidG on Lighting issues in OpenGL DavidG 2008-11-07T14:41:50Z 2008-11-07T14:41:50Z it's 1 draw call for that object and z testing is on... works perfectly for the other meshes in the game ( semi-transparent textured balls ), but this particular mesh doesn't work properly. there are many differences between this and the others, been thru all options :S http://stackoverflow.com/questions/219914/what-use-are-const-pointers-as-opposed-to-pointers-to-const-objects/220144#220144 Comment by DavidG on What use are const pointers (as opposed to pointers to const objects)? DavidG 2008-10-21T17:45:08Z 2008-10-21T17:45:08Z yeah, and that type is basically an int.