Ignore:
Timestamp:
04/30/08 10:09:52 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/OcclusionQuery.cpp

    r2663 r2669  
    7979#ifdef _WIN32 
    8080                // VH 
    81                 cout << "issuing arb query" << endl; 
     81                //cout << "issuing arb query" << endl; 
    8282                glBeginQueryARB(GL_SAMPLES_PASSED_ARB, mId); 
    8383#endif 
     
    100100#ifdef _WIN32 
    101101                // VH 
    102                 cout << "ending query" << endl; 
     102                //cout << "ending query" << endl; 
    103103                glEndQueryARB(GL_SAMPLES_PASSED_ARB); 
    104104#endif 
     
    134134        { 
    135135#ifdef _WIN32 
    136           // VH 
    137           glGetOcclusionQueryuivNV(mId, GL_PIXEL_COUNT_AVAILABLE_NV, &available); 
     136                // VH 
     137                glGetOcclusionQueryuivNV(mId, GL_PIXEL_COUNT_AVAILABLE_NV, &available); 
    138138#endif 
    139139        } 
     
    180180                        // VH 
    181181                        glGenQueriesARB(n, (unsigned int *)newQueries); 
    182                         cout << "creating " << n << " arb queries" <<  endl; 
     182                        //cout << "creating " << n << " arb queries" <<  endl; 
    183183#endif 
    184184                } 
     
    188188                        // VH              
    189189                        glGenOcclusionQueriesNV(n, (unsigned int *)newQueries); 
    190                         cout << "creating " << n << " nv queries" <<  endl; 
     190                        //cout << "creating " << n << " nv queries" <<  endl; 
    191191#endif             
    192192                } 
Note: See TracChangeset for help on using the changeset viewer.