User Andy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:16:46Zhttp://stackoverflow.com/feeds/user/110530http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1765351/strange-iphone-sdk-sqlite-memory-leak/1779942#17799421Answer by Andy for strange iphone sdk sqlite memory leakAndy2009-11-22T20:44:06Z2009-11-22T20:44:06Z<p>Well guys, it seems that its all from sqlcipher... so anyone who get this should know this ;)</p>
http://stackoverflow.com/questions/1765351/strange-iphone-sdk-sqlite-memory-leak0strange iphone sdk sqlite memory leakAndy2009-11-19T18:08:57Z2009-11-22T20:44:06Z
<p>Hi guys, I have a very strange memory leak problem, it seems that sqlite3_step is doing some nasty stuff :|</p>
<p>I spent almost 4 hours trying to fix this but no luck till now :(</p>
<p>Here it is the code:</p>
<pre><code>[dbList removeAllObjects];
sqlite3_stmt *statement = nil;
const char *sql = "SELECT * FROM dbs ORDER by rowOrder;";
if (sqlite3_prepare_v2(dbHandler, sql, -1, &statement, NULL) == SQLITE_OK)
{
while (sqlite3_step(statement) == SQLITE_ROW)
{
DatabaseEntry *entry = [[DatabaseEntry alloc] init];
entry.databaseID = sqlite3_column_int(statement, 0);
entry.databaseTitle = [NSString stringWithFormat:@"%s", (char *)sqlite3_column_text(statement, 1)];
entry.databaseProtected = sqlite3_column_int(statement, 3);
entry.databaseFileName = [NSString stringWithFormat:@"%s", (char *)sqlite3_column_text(statement, 2)];
entry.databaseOrder = sqlite3_column_double(statement, 4);
[dbList addObject:entry];
[entry release];
}
}
sqlite3_finalize(statement);
</code></pre>
<p>The problem seems to be with my query, if I remove the "ORDER by rowOrder" part, everything seems to be just fine, also I'm using sqlcipher, and I'm wondering if that might cause this leak ?! </p>
<p>Thanks a lot for your attention !!! </p>
http://stackoverflow.com/questions/1354162/iphone-opengl-es-gldrawelements-issue0iphone opengl es glDrawElements issueAndy2009-08-30T15:57:20Z2009-08-31T00:10:58Z
<p>Hi guys,</p>
<p>I'm quite new to opengl es so I'm wondering if it is possible to use the glDrawElements function to draw two separate squares(I actually want to draw more than two, but for learning I will create only two) ?</p>
<p>the vertex array looks like this: </p>
<p>CGFloat array[] = </p>
<p>{
0.2, 0.4,
0.2, 0.2,
0.4, 0.2,
0.4, 0.4,</p>
<p>0.8, 1.0,
0.8, 0.8,
1.0, 0.8,
1.0, 1.0,
};</p>
<p>Thanks a lot for your attention !</p>
http://stackoverflow.com/questions/1095027/opengl-star-drawing1OpenGl Star drawingAndy2009-07-07T21:40:05Z2009-07-16T22:15:15Z
<p>Hi guys,
I'm really new to OpenGL, which is a really bad thing to me :|
I need to draw a star(sort of) with openGl but I'm not really sure where I should start.</p>
<p>The results should be something like this: <a href="http://i29.tinypic.com/68zif8.gif" rel="nofollow">http://i29.tinypic.com/68zif8.gif</a>
Is there an easy way to do this ?</p>
<p>Thank you !</p>
http://stackoverflow.com/questions/1075484/vista-win7-delphi-audio-device-information3Vista/Win7 Delphi Audio device informationAndy2009-07-02T16:48:33Z2009-07-02T19:13:55Z
<p>Hi guys, is there a way to get all Audio device names with delphi(D2009) on Vista or Win 7, I managed to get the number of devices, and to get the device PropertyStore using IMMDevice, but I wasnt able to go forward :|</p>
<p>Thanks a lot !</p>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1066079#10660791Answer by Andy for Length of an MP3/wav audio fileAndy2009-06-30T21:08:35Z2009-06-30T21:08:35Z<p>Go to www.un4seen.com and download bass library you will get a lot of info from the forum section. ;)</p>
http://stackoverflow.com/questions/1354162/iphone-opengl-es-gldrawelements-issue/1354247#1354247Comment by Andy on iphone opengl es glDrawElements issueAndy2009-08-30T17:06:59Z2009-08-30T17:06:59ZFrom what I'm seeing I can only use a common verticle for two squares, which is not really what I need, grr, the problem is that I need these two square to not have a common point. Like calling the draw function for the first 4 verticles once, and another call for the last 4 verticles, so I'm going to get two squares, but I'm going to make two calls, which I'm trying to avoid, grrr, I'm not sure if this is even possible...
Tho, thanks a lot for your answer !!!http://stackoverflow.com/questions/1095027/opengl-star-drawing/1096345#1096345Comment by Andy on OpenGl Star drawingAndy2009-07-08T18:17:42Z2009-07-08T18:17:42ZI tried GLScene but I still cant find a way to avoid using mapped textures, I suppose this isnt so easy to do.http://stackoverflow.com/questions/1095027/opengl-star-drawing/1095152#1095152Comment by Andy on OpenGl Star drawingAndy2009-07-07T22:33:36Z2009-07-07T22:33:36Zthe problem is that I don't want to draw a texture mapped quad :|
All needs to be done with coding, no images needs to be used, I need this because I do need to change the light level.
Thank you for your answer !http://stackoverflow.com/questions/1075484/vista-win7-delphi-audio-device-information/1076176#1076176Comment by Andy on Vista/Win7 Delphi Audio device informationAndy2009-07-02T19:26:21Z2009-07-02T19:26:21ZI was using this key but I didn't declared it as it should :) This is the right declaration if someone find it helpfull:
PKEY_Device_FriendlyName: TPropertyKey = (fmtid: (D1:$a45c254e; D2:$df1c ; D3:$4efd; D4: ($80, $20, $67, $d1, $46, $a8, $50, $e0)); pid: 14);