Click here to Skip to main content
15,791,050 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: OnDeviceChange dbcc_name length Pin
Member 1389917810-Jul-18 0:26
Member 1389917810-Jul-18 0:26 
GeneralRe: OnDeviceChange dbcc_name length Pin
Jochen Arndt10-Jul-18 0:42
professionalJochen Arndt10-Jul-18 0:42 
GeneralRe: OnDeviceChange dbcc_name length Pin
Member 1389917810-Jul-18 0:44
Member 1389917810-Jul-18 0:44 
QuestionChanging Display gamma [SOLVED] Pin
Valentinor9-Jul-18 1:48
Valentinor9-Jul-18 1:48 
AnswerRe: Changing Display gamma Pin
Jochen Arndt9-Jul-18 2:05
professionalJochen Arndt9-Jul-18 2:05 
GeneralRe: Changing Display gamma Pin
Valentinor9-Jul-18 3:42
Valentinor9-Jul-18 3:42 
GeneralRe: Changing Display gamma Pin
Jochen Arndt9-Jul-18 3:59
professionalJochen Arndt9-Jul-18 3:59 
GeneralRe: Changing Display gamma Pin
Valentinor9-Jul-18 11:51
Valentinor9-Jul-18 11:51 
I found the following code in a post, and this note but I didn't figured out what is the min and the max value the float factor should have. Is this the formula you were talking about?

Quote:
To change gamma, cycle into ramp buffer and change RGB color where Gamma is the float factor.

WORD ramp[256*3];
for( int i=0; i<256; i++ ) {
    ramp[i+0] = ramp[i+256] = ramp[i+512] = 
    (WORD)min(65535, max(0, pow((i+1) / 256.0, Gamma) * 65535 + 0.5));
}
SetDeviceGammaRamp(::GetDC(NULL), ramp);


I got it from this article (it does contain the source code, but the GUI code is very different from JavaFX):
Gamma correction slider[^]
GeneralRe: Changing Display gamma Pin
Jochen Arndt9-Jul-18 22:00
professionalJochen Arndt9-Jul-18 22:00 
GeneralRe: Changing Display gamma Pin
Valentinor9-Jul-18 23:36
Valentinor9-Jul-18 23:36 
GeneralRe: Changing Display gamma Pin
Valentinor10-Jul-18 0:33
Valentinor10-Jul-18 0:33 
GeneralRe: Changing Display gamma Pin
Jochen Arndt10-Jul-18 0:50
professionalJochen Arndt10-Jul-18 0:50 
GeneralRe: Changing Display gamma Pin
Valentinor10-Jul-18 2:10
Valentinor10-Jul-18 2:10 
QuestionMouse Wheel scrolling support for MFC application. Pin
Member 139038189-Jul-18 1:01
Member 139038189-Jul-18 1:01 
AnswerRe: Mouse Wheel scrolling support for MFC application. Pin
Jochen Arndt9-Jul-18 1:52
professionalJochen Arndt9-Jul-18 1:52 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Member 139038189-Jul-18 20:16
Member 139038189-Jul-18 20:16 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Victor Nijegorodov9-Jul-18 21:37
Victor Nijegorodov9-Jul-18 21:37 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Member 139038189-Jul-18 22:04
Member 139038189-Jul-18 22:04 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Jochen Arndt10-Jul-18 1:10
professionalJochen Arndt10-Jul-18 1:10 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Member 1390381810-Jul-18 23:50
Member 1390381810-Jul-18 23:50 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Jochen Arndt11-Jul-18 0:10
professionalJochen Arndt11-Jul-18 0:10 
QuestionObject pointer as method argument Pin
_Flaviu8-Jul-18 1:43
_Flaviu8-Jul-18 1:43 
AnswerRe: Object pointer as method argument Pin
Richard MacCutchan8-Jul-18 8:23
mveRichard MacCutchan8-Jul-18 8:23 
GeneralRe: Object pointer as method argument Pin
_Flaviu8-Jul-18 20:57
_Flaviu8-Jul-18 20:57 
NewsRe: Object pointer as method argument Pin
Richard MacCutchan9-Jul-18 4:01
mveRichard MacCutchan9-Jul-18 4:01 

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.