C++程序  |  37行  |  1.11 KB

/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "device_info/device_info.h"

#include <iostream>

int main(){
  std::cout << "*Proto debug begin:" << std::endl;

  androidgamesdk_deviceinfo::InfoWithErrors proto;
  androidgamesdk_deviceinfo::createProto(proto);

  std::cout << "cpu present:" << std::endl;
  std::cout << proto.info().cpu_present() << std::endl;

  std::cout << "compressed texture formats:" << std::endl;
  std::cout << std::hex;
  for(auto i : proto.info().gl().gl_compressed_texture_formats()){
    std::cout << i << std::endl;
  }

  std::cout << "*Proto debug end." << std::endl;
  return 0;
}