summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_surfaces.h
AgeCommit message (Collapse)Author
2010-08-21auxiliary: add copyright headersLuca Barbieri
Thanks to Jose Fonseca for pointing out they were missing.
2010-08-20gallium: make all checks for PIPE_TEXTURE_2D check for PIPE_TEXTURE_RECT tooLuca Barbieri
Searched for them with: git grep -E '[!=]=.*PIPE_TEXTURE_2D|PIPE_TEXTURE_2D.*[!=]=|case.*PIPE_TEXTURE_2D' Behavior hasn't been changed.
2010-08-11u_surfaces: add util_surfaces_peekLuca Barbieri
Used to find out if a surface exists without creating one.
2010-08-11u_surfaces: use cso_hash instead of util_hash_tableLuca Barbieri
Using cso_hash directly is the right thing since util_hash_table adds useless overhead and is harder to use for this application.
2010-04-20gallium/util: remove bogus return statementBrian Paul
util_surfaces_do_detach() is a void-valued function.
2010-04-18auxiliary: add util_surfaces to track a resource's pipe_surface structsLuca Barbieri