| 856 | } |
| 857 | |
| 858 | static rdcstr DimensionString(int dimensions, GLint width, GLint height, GLint depth) |
| 859 | { |
| 860 | if(dimensions == 1) |
| 861 | return StringFormat::Fmt("%d", width); |
| 862 | else if(dimensions == 2) |
| 863 | return StringFormat::Fmt("%dx%d", width, height); |
| 864 | else |
| 865 | return StringFormat::Fmt("%dx%dx%d", width, depth); |
| 866 | } |
| 867 | |
| 868 | rdcstr GetTextureCompleteStatus(GLenum target, GLuint tex, GLuint sampler) |
| 869 | { |
no test coverage detected