~ubuntu-branches/ubuntu/trusty/libavg/trusty-proposed

« back to all changes in this revision

Viewing changes to src/player/GLConfig.cpp

  • Committer: Package Import Robot
  • Author(s): OXullo Intersecans
  • Date: 2011-12-06 22:44:56 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111206224456-qc7250z3ya1vi8s9
Tags: 1.7.0-0ubuntu1
* New upstream release (LP: #899183)
* Remove patches 0002-libav-0.7.patch, 0003-fglrx-segfault-on-startup.patch
  now merged to upstream
* Remove unnecessary .la files
* Update debian/watch file
* Fix debian/copyright dep-5 compliancy
* Update standards to version 3.9.2
* Add man pages for avg_checktouch, avg_checkvsync, avg_showsvg
* Minor debian/rules enhancement
* Add librsvg2-dev, libgdk-pixbuf2.0-dev to Build-Depends
* Proper transition to dh_python2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//  libavg - Media Playback Engine. 
2
 
//  Copyright (C) 2003-2008 Ulrich von Zadow
3
 
//
4
 
//  This library is free software; you can redistribute it and/or
5
 
//  modify it under the terms of the GNU Lesser General Public
6
 
//  License as published by the Free Software Foundation; either
7
 
//  version 2 of the License, or (at your option) any later version.
8
 
//
9
 
//  This library is distributed in the hope that it will be useful,
10
 
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
//  Lesser General Public License for more details.
13
 
//
14
 
//  You should have received a copy of the GNU Lesser General Public
15
 
//  License along with this library; if not, write to the Free Software
16
 
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
//
18
 
//  Current versions can be found at www.libavg.de
19
 
//
20
 
 
21
 
#include "GLConfig.h"
22
 
 
23
 
#include "../base/Logger.h"
24
 
 
25
 
namespace avg {
26
 
 
27
 
GLConfig::GLConfig()
28
 
{
29
 
}
30
 
 
31
 
GLConfig::GLConfig(bool bUsePOTTextures, bool bUseShaders, bool bUsePixelBuffers,
32
 
            int multiSampleSamples)
33
 
    : m_bUsePOTTextures(bUsePOTTextures),
34
 
      m_bUseShaders(bUseShaders),
35
 
      m_bUsePixelBuffers(bUsePixelBuffers),
36
 
      m_MultiSampleSamples(multiSampleSamples)
37
 
{
38
 
}
39
 
 
40
 
void GLConfig::log()
41
 
{
42
 
    AVG_TRACE(Logger::CONFIG, "  Shader support: " << (m_bUseShaders?"true":"false"));
43
 
    AVG_TRACE(Logger::CONFIG, "  Pixel buffers: " << (m_bUsePixelBuffers?"true":"false"));
44
 
    AVG_TRACE(Logger::CONFIG, "  Power of 2 textures: " <<
45
 
            (m_bUsePOTTextures?"true":"false"));
46
 
    if (m_MultiSampleSamples == 1) {
47
 
        AVG_TRACE(Logger::CONFIG, "  No multisampling.");
48
 
    } else {
49
 
        AVG_TRACE(Logger::CONFIG, "  Multisampling with " << m_MultiSampleSamples 
50
 
                << " samples");
51
 
    }
52
 
}
53
 
 
54
 
}