diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-09-17 01:15:40 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-09-17 01:15:40 +0000 |
| commit | a4905ffaa0185235cc638098dae277f8abc0a56c (patch) | |
| tree | 03f508b54719c7af768a211e3655aada65577671 /macosx/plugins/DFXVideo/macsrc/PluginConfigController.h | |
| parent | 8ddbbfe157a5ed6d52bb07dcbef2e9c5814e80e0 (diff) | |
| download | pcsxr-a4905ffaa0185235cc638098dae277f8abc0a56c.tar.gz | |
Updating projects to build on Xcode 4.4
Added OpenGL shader support to the Mac software renderer.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@79892 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/DFXVideo/macsrc/PluginConfigController.h')
| -rw-r--r-- | macosx/plugins/DFXVideo/macsrc/PluginConfigController.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/macosx/plugins/DFXVideo/macsrc/PluginConfigController.h b/macosx/plugins/DFXVideo/macsrc/PluginConfigController.h index 0e734411..ec9c0203 100644 --- a/macosx/plugins/DFXVideo/macsrc/PluginConfigController.h +++ b/macosx/plugins/DFXVideo/macsrc/PluginConfigController.h @@ -4,7 +4,7 @@ #import <Cocoa/Cocoa.h> -@interface PluginConfigController : NSWindowController +@interface NetSfPeopsSoftGPUPluginConfigController : NSWindowController { IBOutlet NSControl *autoFullScreen; IBOutlet NSPopUpButton *ditherMode; @@ -13,6 +13,15 @@ IBOutlet NSControl *hackEnable; IBOutlet NSView *hacksView; IBOutlet NSControl *vSync; + IBOutlet NSControl *shaders; + IBOutlet NSTextField *vertexShaderViewablePath; + IBOutlet NSTextField *fragmentShaderViewablePath; + IBOutlet NSControl *vertexChooser; + IBOutlet NSControl *fragmentChooser; + IBOutlet NSView *shadersView; + + NSURL *vertexPath; + NSURL *fragmentPath; NSMutableDictionary *keyValues; } @@ -20,6 +29,8 @@ - (IBAction)ok:(id)sender; - (IBAction)reset:(id)sender; - (IBAction)hackToggle:(id)sender; +- (IBAction)toggleShader:(id)sender; +- (IBAction)selectShader:(id)sender; - (void)loadValues; |
