Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:11

0001 #pragma once
0002 
0003 #include "QUDARAP_API_EXPORT.hh"
0004 template <typename T> struct QTex ; 
0005 
0006 template<typename T>
0007 struct QUDARAP_API QTexRotate
0008 {
0009     const QTex<T>* tex ; 
0010 
0011     T*           rotate_dst ; 
0012     T*           d_rotate_dst ; 
0013 
0014     QTexRotate( const QTex<T>* tex_ ) ; 
0015     virtual ~QTexRotate();  
0016 
0017     void rotate(float theta);
0018 };
0019 
0020 
0021