CSPspEmu.Core.Gpu.Impl.Opengl.Modules.RenderbufferManager.GetDrawBufferTexture C# (CSharp) Method

GetDrawBufferTexture() public method

public GetDrawBufferTexture ( DrawBufferKey Key ) : DrawBufferValue
Key DrawBufferKey
return DrawBufferValue
        public DrawBufferValue GetDrawBufferTexture(DrawBufferKey Key)
        {
            var Value = DrawBufferTextures.GetOrDefault(Key, null);
            if (Value != null) Value.WaitUnlocked();
            return Value;
        }