Click here to Skip to main content
15,887,585 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Is Edit and continue support available for X64 application in VS2010 ? Pin
Randor 5-Sep-14 10:29
professional Randor 5-Sep-14 10:29 
QuestionReturn bidimensional array Pin
_Flaviu4-Sep-14 2:07
_Flaviu4-Sep-14 2:07 
QuestionRe: Return bidimensional array Pin
David Crow4-Sep-14 3:33
David Crow4-Sep-14 3:33 
AnswerRe: Return bidimensional array Pin
_Flaviu4-Sep-14 21:31
_Flaviu4-Sep-14 21:31 
GeneralRe: Return bidimensional array Pin
Freak304-Sep-14 21:36
Freak304-Sep-14 21:36 
GeneralRe: Return bidimensional array Pin
_Flaviu4-Sep-14 22:38
_Flaviu4-Sep-14 22:38 
AnswerRe: Return bidimensional array Pin
CPallini4-Sep-14 3:35
mveCPallini4-Sep-14 3:35 
AnswerRe: Return bidimensional array Pin
nv34-Sep-14 23:55
nv34-Sep-14 23:55 
I would neither store nor return the bitmap data in that way. What you are creating here is a so-called "ragged" array, in which each row can have a different length. In a bitmap this luxury is not needed, all rows are of equal length by definition. Therefore a one-dimensional array is good enough and in some regards even superior.

a) A one-dimensional array can be allocated in one chunk (whereas your ragged array needs N allocations, N being the number of rows)

b) A one-dimensional array does not incur the overhead that comes with a ragged array, which is easily 3 x 64bits per row.

To access the members of the one-dimensional array in a 2D fashion, simply use the algorithm:
C++
index of pixel (x, y) = x + y*pixelsPerRow

As a return value for your access function I would suggest you use a simple pointer (const COLORREF*).
For the caller to know how to access that 1D array you should provide addition access functions for the number or rows and number of columns.
GeneralRe: Return bidimensional array Pin
_Flaviu5-Sep-14 0:25
_Flaviu5-Sep-14 0:25 
GeneralRe: Return bidimensional array Pin
nv35-Sep-14 1:19
nv35-Sep-14 1:19 
GeneralRe: Return bidimensional array Pin
_Flaviu5-Sep-14 2:43
_Flaviu5-Sep-14 2:43 
GeneralRe: Return bidimensional array Pin
_Flaviu9-Sep-14 1:22
_Flaviu9-Sep-14 1:22 
GeneralRe: Return bidimensional array Pin
nv39-Sep-14 20:30
nv39-Sep-14 20:30 
QuestionWhat if two executable/Dynamic libraries use another common Dynamic library at the same time? Pin
shaktikanta3-Sep-14 22:43
shaktikanta3-Sep-14 22:43 
AnswerRe: What if two executable/Dynamic libraries use another common Dynamic library at the same time? Pin
CPallini3-Sep-14 23:09
mveCPallini3-Sep-14 23:09 
GeneralRe: What if two executable/Dynamic libraries use another common Dynamic library at the same time? Pin
shaktikanta4-Sep-14 0:34
shaktikanta4-Sep-14 0:34 
GeneralRe: What if two executable/Dynamic libraries use another common Dynamic library at the same time? Pin
CPallini4-Sep-14 1:59
mveCPallini4-Sep-14 1:59 
AnswerRe: What if two executable/Dynamic libraries use another common Dynamic library at the same time? Pin
Albert Holguin4-Sep-14 3:08
professionalAlbert Holguin4-Sep-14 3:08 
AnswerRe: What if two executable/Dynamic libraries use another common Dynamic library at the same time? Pin
Albert Holguin4-Sep-14 3:05
professionalAlbert Holguin4-Sep-14 3:05 
QuestionVS2005 Build order problem Pin
narasingubhanu3-Sep-14 21:04
narasingubhanu3-Sep-14 21:04 
AnswerRe: VS2005 Build order problem Pin
Freak304-Sep-14 0:26
Freak304-Sep-14 0:26 
AnswerRe: VS2005 Build order problem Pin
Albert Holguin4-Sep-14 3:12
professionalAlbert Holguin4-Sep-14 3:12 
Questiondeterminant of matrix in c N*N dimension return error at //answer[r][s]=input[p][q]; Pin
mybm13-Sep-14 3:17
mybm13-Sep-14 3:17 
AnswerRe: determinant of matrix in c N*N dimension return error at //answer[r][s]=input[p][q]; Pin
jeron13-Sep-14 4:39
jeron13-Sep-14 4:39 
GeneralRe: determinant of matrix in c N*N dimension return error at //answer[r][s]=input[p][q]; Pin
mybm13-Sep-14 4:47
mybm13-Sep-14 4:47 

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.