Home | History | Annotate | Download | only in cpp

Lines Matching refs:attrib_list

32   /// @param[in] attrib_list The list of attributes (name=value pairs) for the
34 /// <code>PP_GRAPHICS3DATTRIB_NONE</code>. The <code>attrib_list</code> may
37 /// in <code>attrib_list</code>, then the default value is used.
66 const int32_t attrib_list[]);
84 /// @param[in] attrib_list The list of attributes for the context. See the
90 const int32_t attrib_list[]);
96 /// <code>attrib_list</code>. The list has the same structure as described
100 /// @param[in,out] attrib_list The list of attributes (name=value pairs) for
107 /// PP_ERROR_BADARGUMENT if <code>attrib_list</code> is NULL or any attribute
108 /// in the <code>attrib_list</code> is not a valid attribute.
113 /// int attrib_list[] = {PP_GRAPHICS3DATTRIB_RED_SIZE, 0,
117 /// GetAttribs(context, attrib_list);
118 /// int red_bits = attrib_list[1];
119 /// int green_bits = attrib_list[3];
120 /// int blue_bits = attrib_list[5];
124 int32_t GetAttribs(int32_t attrib_list[]) const;
127 /// <code>attrib_list</code>. The list has the same structure as the list
135 /// - PP_ERROR_BADARGUMENT if attrib_list is NULL or any attribute in the
136 /// attrib_list is not a valid attribute.
137 int32_t SetAttribs(const int32_t attrib_list[]);