From a96ba176322566d9d15b51c714984affcdfc6355 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Mon, 10 Nov 2014 20:22:50 +0000 Subject: OS X: make all ivars either be in the implementation block, or converted to Objective C 2.0 properties. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92227 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/plugins/DFXVideo/macsrc/PluginGLView.h | 36 +-------------------------- 1 file changed, 1 insertion(+), 35 deletions(-) (limited to 'macosx/plugins/DFXVideo/macsrc/PluginGLView.h') diff --git a/macosx/plugins/DFXVideo/macsrc/PluginGLView.h b/macosx/plugins/DFXVideo/macsrc/PluginGLView.h index a8667b11..d75f7ee3 100755 --- a/macosx/plugins/DFXVideo/macsrc/PluginGLView.h +++ b/macosx/plugins/DFXVideo/macsrc/PluginGLView.h @@ -34,41 +34,7 @@ static inline void RunOnMainThreadSync(dispatch_block_t block) } @interface PluginGLView : NSOpenGLView -{ - GLubyte *image_base; - GLubyte *image[IMAGE_COUNT]; - - GLboolean useShader; - float shaderQuality; - GLint buffers; - GLuint vertexShader; - GLuint fragmentShader; - GLuint program; - //GLint frame_rate; - - GLenum texture_hint; - GLboolean rect_texture; - GLboolean client_storage; - GLboolean texture_range; - - struct timeval cycle_time; - - NSLock *glLock; - BOOL noDisplay; - BOOL drawBG; - - int image_width; - int image_height; - int image_width2; - int image_height2; - int image_depth; - int image_type; - float image_tx; - float image_ty; - int whichImage; - BOOL isFullscreen; - NSOpenGLPixelFormatAttribute oglProfile; -} + @property (readonly, strong) NSLock *glLock; - (void)renderScreen; -- cgit v1.2.3