Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_SHAREDRENDERCONTEXT_H__
00009 #define __SP_SHAREDRENDERCONTEXT_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014
00015 namespace sp
00016 {
00017 namespace video
00018 {
00019
00020
00022 class SP_EXPORT SharedRenderContext
00023 {
00024
00025 public:
00026
00027 SharedRenderContext()
00028 {
00029 }
00030 virtual ~SharedRenderContext()
00031 {
00032 }
00033
00034
00035
00037 virtual bool activate()
00038 {
00039 return false;
00040 }
00041
00043 virtual bool deactivate()
00044 {
00045 return false;
00046 }
00047
00048 };
00049
00050
00051 }
00052
00053 }
00054
00055
00056 #endif
00057
00058
00059
00060