OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 17 matching lines...) Expand all Loading... |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 | 32 |
33 // This file contains the GAPI decoder class. | 33 // This file contains the GAPI decoder class. |
34 | 34 |
35 #ifndef O3D_COMMAND_BUFFER_SERVICE_CROSS_GAPI_DECODER_H_ | 35 #ifndef O3D_COMMAND_BUFFER_SERVICE_CROSS_GAPI_DECODER_H_ |
36 #define O3D_COMMAND_BUFFER_SERVICE_CROSS_GAPI_DECODER_H_ | 36 #define O3D_COMMAND_BUFFER_SERVICE_CROSS_GAPI_DECODER_H_ |
37 | 37 |
38 #include "core/cross/types.h" | |
39 #include "command_buffer/service/cross/common_decoder.h" | 38 #include "command_buffer/service/cross/common_decoder.h" |
40 #include "command_buffer/common/cross/o3d_cmd_format.h" | 39 #include "command_buffer/common/cross/o3d_cmd_format.h" |
41 | 40 |
42 namespace o3d { | 41 namespace o3d { |
43 namespace command_buffer { | 42 namespace command_buffer { |
44 namespace o3d { | 43 namespace o3d { |
45 | 44 |
46 class GAPIInterface; | 45 class GAPIInterface; |
47 | 46 |
48 // This class implements the AsyncAPIInterface interface, decoding GAPI | 47 // This class implements the AsyncAPIInterface interface, decoding GAPI |
(...skipping 26 matching lines...) Expand all Loading... |
75 #undef O3D_COMMAND_BUFFER_CMD_OP | 74 #undef O3D_COMMAND_BUFFER_CMD_OP |
76 | 75 |
77 GAPIInterface *gapi_; | 76 GAPIInterface *gapi_; |
78 }; | 77 }; |
79 | 78 |
80 } // namespace o3d | 79 } // namespace o3d |
81 } // namespace command_buffer | 80 } // namespace command_buffer |
82 } // namespace o3d | 81 } // namespace o3d |
83 | 82 |
84 #endif // O3D_COMMAND_BUFFER_SERVICE_CROSS_GAPI_DECODER_H_ | 83 #endif // O3D_COMMAND_BUFFER_SERVICE_CROSS_GAPI_DECODER_H_ |
OLD | NEW |