Click here to Skip to main content
15,902,112 members
Home / Discussions / C#
   

C#

 
Generaldatatype check Pin
Anonymous1-Apr-04 19:01
Anonymous1-Apr-04 19:01 
GeneralRe: datatype check Pin
Andy Wieberneit1-Apr-04 20:19
Andy Wieberneit1-Apr-04 20:19 
GeneralRe: datatype check Pin
Anonymous2-Apr-04 2:21
Anonymous2-Apr-04 2:21 
GeneralOptimization of C# code!! Pin
abc8761-Apr-04 18:15
abc8761-Apr-04 18:15 
GeneralRe: Optimization of C# code!! Pin
Tristan Rhodes1-Apr-04 20:02
Tristan Rhodes1-Apr-04 20:02 
GeneralRe: Optimization of C# code!! Pin
Daniel Turini1-Apr-04 20:35
Daniel Turini1-Apr-04 20:35 
GeneralRe: Optimization of C# code!! Pin
Kastellanos Nikos1-Apr-04 23:09
Kastellanos Nikos1-Apr-04 23:09 
GeneralRe: Optimization of C# code!! Pin
Kastellanos Nikos1-Apr-04 23:24
Kastellanos Nikos1-Apr-04 23:24 
Since we now have a tight loop, a major amount
of execution goes into checking the loop command itself.
(checking x<img.width and="" brancing="" commands)
thus,="" we="" unroll="" the="" inner="" loop!

<code="">
for(int y=0;y<img.Height;y++)
{
// do chucks of 128 pixels at once
for(int x=0;x<img.Width-128;x++)
{
// 128 times
colors[image.pixel[x,y]]++;x++;
colors[image.pixel[x,y]]++;x++;
colors[image.pixel[x,y]]++;x++;
...
colors[image.pixel[x,y]]++;x++;
colors[image.pixel[x,y]]++;x++;
colors[image.pixel[x,y]]++;x++;
colors[image.pixel[x,y]]++;
}
// do the remaining pixels
for(;x<img.Width;x++)
{
colors[image.pixel[x,y]]++;
}
}

- - - - - - - - - - - - - - - - - -
Memory leaks is the price we pay \0
01234567890123456789012345678901234
GeneralA question of a Game Pin
lajiyo1-Apr-04 15:36
lajiyo1-Apr-04 15:36 
GeneralRe: A question of a Game Pin
Christian Graus1-Apr-04 15:53
protectorChristian Graus1-Apr-04 15:53 
GeneralRe: A question of a Game Pin
CWIZO2-Apr-04 2:42
CWIZO2-Apr-04 2:42 
GeneralRe: A question of a Game Pin
lajiyo2-Apr-04 23:01
lajiyo2-Apr-04 23:01 
GeneraldataSet, combobox Pin
DougW481-Apr-04 14:53
DougW481-Apr-04 14:53 
GeneralRe: dataSet, combobox Pin
Anonymous1-Apr-04 16:47
Anonymous1-Apr-04 16:47 
GeneralC# Whidbey Language Changes Pin
Eric Gunnerson (msft)1-Apr-04 13:57
Eric Gunnerson (msft)1-Apr-04 13:57 
GeneralRe: C# Whidbey Language Changes Pin
CWIZO2-Apr-04 2:46
CWIZO2-Apr-04 2:46 
Generalstruct conversion(VB-&gt;C#) problem Pin
Member 6548331-Apr-04 13:21
Member 6548331-Apr-04 13:21 
GeneralC# . Question on &quot;Microsoft Data Access Application Block&quot; Pin
abidkayani11-Apr-04 12:30
abidkayani11-Apr-04 12:30 
GeneralC# problem .. SQLParameters Pin
abidkayani11-Apr-04 12:25
abidkayani11-Apr-04 12:25 
GeneralRe: C# problem .. SQLParameters Pin
Charlie Williams1-Apr-04 13:25
Charlie Williams1-Apr-04 13:25 
GeneralChild windows opening outside the screen! Pin
Carl Mercier1-Apr-04 12:04
Carl Mercier1-Apr-04 12:04 
GeneralRe: Child windows opening outside the screen! Pin
Dave Kreskowiak1-Apr-04 13:10
mveDave Kreskowiak1-Apr-04 13:10 
GeneralRe: Child windows opening outside the screen! Pin
Carl Mercier1-Apr-04 17:03
Carl Mercier1-Apr-04 17:03 
GeneralRe: Child windows opening outside the screen! Pin
Dave Kreskowiak2-Apr-04 4:56
mveDave Kreskowiak2-Apr-04 4:56 
GeneralRe: Child windows opening outside the screen! Pin
Carl Mercier2-Apr-04 6:12
Carl Mercier2-Apr-04 6:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.