User DavidG - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:40:57Zhttp://stackoverflow.com/feeds/user/25893http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1550657/android-image-viewer-from-app2Android Image Viewer from AppDavidG2009-10-11T13:12:00Z2009-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#2227462Answer by DavidG for C++ IDE for Linux?DavidG2008-10-21T17:38:20Z2009-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#8928940Answer by DavidG for What is the minimum I have to do to create an RPM file?DavidG2009-05-21T13:20:54Z2009-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-subtexturing0openGL SubTexturingDavidG2008-10-15T16:56:32Z2009-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, &m_name);
glGetIntegerv(GL_TEXTURE_BINDING_2D, &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-buffers1openGL glDrawElements with interleaved buffersDavidG2009-03-06T13:20:31Z2009-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-template2STL iterator with custom templateDavidG2009-02-27T12:17:07Z2009-02-27T12:53:43Z
<p>Hi,</p>
<p>i have the following template method,</p>
<pre><code>template <class T>
void Class::setData( vector<T> data )
{
vector<T>::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#4876072Answer by DavidG for is there a command in terminal can build and install the iphone app in simulator without launching from xcodeDavidG2009-01-28T13:26:32Z2009-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-opengl1Lighting issues in OpenGLDavidG2008-11-07T14:07:36Z2009-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->GetRed(), cur->GetGreen(), cur->GetBlue(), cur->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-image0Xorg loading an imageDavidG2008-12-06T14:30:00Z2008-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#2773810Answer by DavidG for Lighting issues in OpenGLDavidG2008-11-10T08:54:14Z2008-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-macros1Xcode Preprocessor MacrosDavidG2008-10-28T10:35:24Z2008-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-license9What power do I have over my licenseDavidG2008-10-25T08:39:30Z2008-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#2350130Answer by DavidG for Variable Naming Conventions in C++DavidG2008-10-24T19:44:11Z2008-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#2273275Answer by DavidG for What's the best open source game ever?DavidG2008-10-22T20:01:23Z2008-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-2Answer by DavidG for Convert Word doc to HTML programmatically in JavaDavidG2008-10-22T19:48:46Z2008-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&rls=en&q=doc2html+conv&sourceid=opera&ie=utf-8&oe=utf-8" rel="nofollow">google doc2html</a></p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222739#2227391Answer by DavidG for Setting up a Programming Environment in LinuxDavidG2008-10-21T17:36:25Z2008-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-1Answer by DavidG for What use are const pointers (as opposed to pointers to const objects)?DavidG2008-10-20T21:30:49Z2008-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#2199934Answer by DavidG for Intro to GPU programmingDavidG2008-10-20T21:23:03Z2008-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#2189051Answer by DavidG for Good reasons to prohibit inheritance in Java?DavidG2008-10-20T15:51:01Z2008-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-work8How does Mono workDavidG2008-10-19T19:33:12Z2008-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#2168562Answer by DavidG for How does a debugger work?DavidG2008-10-19T19:42:48Z2008-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#2168150Answer by DavidG for Pros and cons of using nested C++ classes and enumerations?DavidG2008-10-19T19:13:34Z2008-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#2153141Answer by DavidG for Resources for 2d game physicsDavidG2008-10-18T17:33:36Z2008-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-blending1glBlendFunc and alpha blendingDavidG2008-10-09T12:36:02Z2008-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#1958030Answer by DavidG for glBlendFunc and alpha blendingDavidG2008-10-12T18:12:41Z2008-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->GetTexBuffer() );
glVertexPointer( 3, GL_FLOAT, 0, sprite->GetVertexBuffer() );
glColorPointer( 4, GL_FLOAT, 0, sprite->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-culling2Optimize Frustum CullingDavidG2008-10-07T17:57:30Z2008-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-gl1Texture Sampling in Open GLDavidG2008-10-08T07:50:43Z2008-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#1796991Answer by DavidG for Does Google Chrome display pages the same as Safari?DavidG2008-10-07T18:14:39Z2008-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#1551671Comment by DavidG on Android Image Viewer from AppDavidG2009-10-24T16:24:37Z2009-10-24T16:24:37ZNote: Overriding getType() required me to set the mime type, eg:
@Override
public String getType(Uri uri)
{
return "image/png";
}http://stackoverflow.com/questions/1550657/android-image-viewer-from-app/1551671#1551671Comment by DavidG on Android Image Viewer from AppDavidG2009-10-12T09:02:32Z2009-10-12T09:02:32ZThanks, 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#1550687Comment by DavidG on Android Image Viewer from AppDavidG2009-10-11T15:42:08Z2009-10-11T15:42:08ZPart 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#892894Comment by DavidG on What is the minimum I have to do to create an RPM file?DavidG2009-05-24T16:36:37Z2009-05-24T16:36:37Zomf. making a simple .deb is sooo easy. dpkg -b <directory> ... 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#227280Comment by DavidG on Convert Word doc to HTML programmatically in JavaDavidG2009-04-09T09:26:02Z2009-04-09T09:26:02Zi 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#618869Comment by DavidG on openGL glDrawElements with interleaved buffersDavidG2009-03-06T13:53:02Z2009-03-06T13:53:02ZJust 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 & texture coordshttp://stackoverflow.com/questions/594521/stl-iterator-with-custom-templateComment by DavidG on STL iterator with custom templateDavidG2009-03-02T11:26:24Z2009-03-02T11:26:24ZOf course, it was just an example :)http://stackoverflow.com/questions/594521/stl-iterator-with-custom-template/594630#594630Comment by DavidG on STL iterator with custom templateDavidG2009-02-27T13:07:28Z2009-02-27T13:07:28Zwow thanks, awesome link.http://stackoverflow.com/questions/594521/stl-iterator-with-custom-template/594560#594560Comment by DavidG on STL iterator with custom templateDavidG2009-02-27T12:57:25Z2009-02-27T12:57:25Zno, my namespaces and includes are in a pre-compiled headerhttp://stackoverflow.com/questions/278429/what-could-cause-a-dynamiccast-to-crash/280031#280031Comment by DavidG on What could cause a dynamic_cast to crash ?DavidG2009-02-03T14:12:50Z2009-02-03T14:12:50ZA really awesome answer.http://stackoverflow.com/questions/272157/lighting-issues-in-opengl/277381#277381Comment by DavidG on Lighting issues in OpenGLDavidG2008-11-10T09:52:03Z2008-11-10T09:52:03Zi'm disabling back face culling here just to testhttp://stackoverflow.com/questions/272157/lighting-issues-in-opengl/277421#277421Comment by DavidG on Lighting issues in OpenGLDavidG2008-11-10T09:48:47Z2008-11-10T09:48:47Zi've gone now to the lengths of disabling the transparency. still getting no lighting. :Shttp://stackoverflow.com/questions/272157/lighting-issues-in-opengl/272171#272171Comment by DavidG on Lighting issues in OpenGLDavidG2008-11-07T15:18:32Z2008-11-07T15:18:32Zbut 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#272258Comment by DavidG on Lighting issues in OpenGLDavidG2008-11-07T14:41:50Z2008-11-07T14:41:50Zit'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 :Shttp://stackoverflow.com/questions/219914/what-use-are-const-pointers-as-opposed-to-pointers-to-const-objects/220144#220144Comment by DavidG on What use are const pointers (as opposed to pointers to const objects)?DavidG2008-10-21T17:45:08Z2008-10-21T17:45:08Zyeah, and that type is basically an int.